diff --git a/.github/actions/setup-and-validate/action.yml b/.github/actions/setup-and-validate/action.yml new file mode 100644 index 0000000000..431cdc8643 --- /dev/null +++ b/.github/actions/setup-and-validate/action.yml @@ -0,0 +1,21 @@ +name: "Theme Validation" +description: "Validate the themes" +runs: + using: "composite" + steps: + - name: Set up Node.js + uses: actions/setup-node@v1.4.6 + with: + node-version: '16' + + - name: install deps + run: npm ci + shell: bash + + - name: create generated dir + run: mkdir ./assets/generated + shell: bash + + - name: Prepare deploy + run: npm run prepare-deploy + shell: bash diff --git a/.github/workflows/deploy_pietervdvn.yml b/.github/workflows/deploy_pietervdvn.yml index 9a2cf8c7c2..c4b796ff62 100644 --- a/.github/workflows/deploy_pietervdvn.yml +++ b/.github/workflows/deploy_pietervdvn.yml @@ -8,24 +8,8 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Node.js - uses: actions/setup-node@v1.2.0 - with: - node-version: '16' - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' - - - name: install deps - run: npm ci - - - name: create generated dir - run: mkdir ./assets/generated - - - name: create stub themes - run: "echo '{\"layers\": [], \"themes\": []}' > ./assets/generated/known_layers_and_themes.json" - - - name: Prepare deploy - run: npm run prepare-deploy + - name: Setup and validate themes + uses: ./.github/actions/setup-and-validate - name: Clone deployment repo env: diff --git a/.github/workflows/theme_validation_and_deploy.yml b/.github/workflows/theme_validation_and_deploy.yml index 76ccd81598..56c3902971 100644 --- a/.github/workflows/theme_validation_and_deploy.yml +++ b/.github/workflows/theme_validation_and_deploy.yml @@ -10,21 +10,8 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Node.js - uses: actions/setup-node@v1.2.0 - with: - node-version: '16' - env: - ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true' - - - name: install deps - run: npm ci - - - name: create generated dir - run: mkdir ./assets/generated - - - name: Prepare deploy - run: npm run prepare-deploy + - name: Setup and validate themes + uses: ./.github/actions/setup-and-validate - name: Clone deployment repo env: diff --git a/.github/workflows/validate-pr.yml b/.github/workflows/validate-pr.yml new file mode 100644 index 0000000000..c1bbcbcf52 --- /dev/null +++ b/.github/workflows/validate-pr.yml @@ -0,0 +1,12 @@ +name: Build and validate PR +on: + pull_request: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Setup and validate themes + uses: ./.github/actions/setup-and-validate diff --git a/.gitignore b/.gitignore index b2ad34580d..0ae99c0e06 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ missing_translations.txt Svg.ts data/ Folder.DotSettings.user +index_*.ts \ No newline at end of file diff --git a/404.html b/404.html new file mode 100644 index 0000000000..fa1f722f3a --- /dev/null +++ b/404.html @@ -0,0 +1,56 @@ + + + + + + + + + + + MapComplete - page not found + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ +
+ Not found... +
+ + + + + + diff --git a/Docs/ContributorRights.md b/CONTRIBUTING.md similarity index 60% rename from Docs/ContributorRights.md rename to CONTRIBUTING.md index c9257350de..783dfbe5ea 100644 --- a/Docs/ContributorRights.md +++ b/CONTRIBUTING.md @@ -1,9 +1,20 @@ +Contributing to MapComplete +=========================== + +Hi! Thanks for checking out how to contribute to MapComplete! + +There are multiple ways to contribute: + +- Translating MapComplete to your own language can be done on [this website](https://hosted.weblate.org/projects/mapcomplete/) +- If you encounter a bug, the [issue tracker](https://github.com/pietervdvn/MapComplete/issues) is the place to be +- If you want to improve a theme, create a new theme, spot a typo in the repo... the best way is to open a pull request. + +People who stick around and contribute in a meaningful way, _might_ be granted write access to the repository. This is done on a purely subjective basis, e.g. after a few pull requests and if you are a member of the OSM community. + Rights of contributors -====================== +----------------------- -If a contributor is quite active within MapComplete, this contributor might be granted access to the main repository. - -If you have access to the repository, you can make a fork of an already existing branch and push this new branch to +If you have write access to the repository, you can make a fork of an already existing branch and push this new branch to github. This means that this branch will be _automatically built_ and be **deployed** to `https://pietervdvn.github.io/mc/`. You can see the deploy process on [Github Actions](https://github.com/pietervdvn/MapComplete/actions). Don't worry about pushing too much. These @@ -19,8 +30,8 @@ As a non-admin contributor, you can _not_ make changes to the `master` nor to th soon as master is changed, this is built and deployed on `mapcomplete.osm.be`, which a lot of people use. An error there will cause a lot of grieve. -A push on `develop` is automatically deployed to [pietervdvn.github.io/mc/develop] and is used by quite some people to. -People using this version should know that this is a testing ground for new features and might contain a bug every now +A push on `develop` is automatically deployed to [pietervdvn.github.io/mc/develop] which is used by quite some contributors. +However, people using this version should know that this is a testing ground for new features and might contain a bug every now and then. In other words, to get your theme deployed on the main instances, you'll still have to create a pull request. The @@ -39,4 +50,4 @@ To do this: push to your fork. Alternatively, if you don't have any unmerged changes, you can remove your local copy and clone `pietervdvn/MapComplete` -again to start fresh. \ No newline at end of file +again to start fresh. diff --git a/Customizations/AllKnownLayers.ts b/Customizations/AllKnownLayers.ts deleted file mode 100644 index 0f32405e1a..0000000000 --- a/Customizations/AllKnownLayers.ts +++ /dev/null @@ -1,131 +0,0 @@ -import * as known_layers from "../assets/generated/known_layers_and_themes.json" -import {Utils} from "../Utils"; -import LayerConfig from "../Models/ThemeConfig/LayerConfig"; -import {TagRenderingConfigJson} from "../Models/ThemeConfig/Json/TagRenderingConfigJson"; -import SharedTagRenderings from "./SharedTagRenderings"; -import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; -import WithContextLoader from "../Models/ThemeConfig/WithContextLoader"; - -export default class AllKnownLayers { - - public static inited = (_ => { - WithContextLoader.getKnownTagRenderings = (id => AllKnownLayers.getTagRendering(id)) - return true - })() - - public static runningGenerateScript = false; - - // Must be below the list... - public static sharedLayers: Map = AllKnownLayers.getSharedLayers(); - public static sharedLayersJson: Map = AllKnownLayers.getSharedLayersJson(); - - - public static added_by_default: string[] = ["gps_location", "gps_location_history", "home_location", "gps_track"] - public static no_include: string[] = ["conflation", "left_right_style", "split_point","current_view","matchpoint"] - /** - * Layer IDs of layers which have special properties through built-in hooks - */ - public static priviliged_layers: string[] = [...AllKnownLayers.added_by_default, "type_node", ...AllKnownLayers.no_include] - - /** - * Gets the appropriate tagRenderingJSON - * Allows to steal them from other layers. - * This will add the tags of the layer to the configuration though! - * @param renderingId - */ - static getTagRendering(renderingId: string): TagRenderingConfigJson[] { - if (renderingId.indexOf(".") < 0) { - const found = SharedTagRenderings.SharedTagRenderingJson.get(renderingId) - if(found === undefined){ - return [] - } - return [found] - } - - const [layerId, id] = renderingId.split(".") - const layer = AllKnownLayers.getSharedLayersJson().get(layerId) - if (layer === undefined) { - if (AllKnownLayers.runningGenerateScript) { - // Probably generating the layer overview - return [{ - id: "dummy" - }] - } - throw "Builtin layer " + layerId + " not found" - } - - const renderings = layer?.tagRenderings ?? [] - if (id === "*") { - return JSON.parse(JSON.stringify(renderings)) - } - - const selectByGroup = id.startsWith("*") - const expectedGroupName = id.substring(1) - - const allValidValues = [] - for (const rendering of renderings) { - if ((!selectByGroup && rendering["id"] === id) || (selectByGroup && rendering["group"] === expectedGroupName)) { - const found = JSON.parse(JSON.stringify(rendering)) - if (found.condition === undefined) { - found.condition = layer.source.osmTags - } else { - found.condition = {and: [found.condition, layer.source.osmTags]} - } - allValidValues.push(found) - } - } - if(allValidValues.length === 0){ - - throw `The rendering with id ${id} was not found in the builtin layer ${layerId}. Try one of ${Utils.NoNull(renderings.map(r => r["id"])).join(", ")}` - } - return allValidValues - } - - private static getSharedLayers(): Map { - const sharedLayers = new Map(); - for (const layer of known_layers.layers) { - try { - // @ts-ignore - const parsed = new LayerConfig(layer, "shared_layers") - sharedLayers.set(layer.id, parsed); - } catch (e) { - if (!Utils.runningFromConsole) { - console.error("CRITICAL: Could not parse a layer configuration!", layer.id, " due to", e) - } - } - } - - for (const layout of known_layers.themes) { - for (const layer of layout.layers) { - if (typeof layer === "string") { - continue; - } - if (layer.builtin !== undefined) { - // This is a builtin layer of which stuff is overridden - skip - continue; - } - try { - const parsed = new LayerConfig(layer, "shared_layer_in_theme") - sharedLayers.set(layer.id, parsed); - sharedLayers[layer.id] = parsed; - } catch (e) { - if (!Utils.runningFromConsole) { - console.error("Could not parse a layer in theme ", layout.id, "due to", e) - } - } - } - } - - return sharedLayers; - } - - private static getSharedLayersJson(): Map { - const sharedLayers = new Map(); - for (const layer of known_layers.layers) { - sharedLayers.set(layer.id, layer); - sharedLayers[layer.id] = layer; - } - return sharedLayers; - } - -} diff --git a/Customizations/AllKnownLayouts.ts b/Customizations/AllKnownLayouts.ts index 22964023cc..4303c6309f 100644 --- a/Customizations/AllKnownLayouts.ts +++ b/Customizations/AllKnownLayouts.ts @@ -1,4 +1,3 @@ -import AllKnownLayers from "./AllKnownLayers"; import * as known_themes from "../assets/generated/known_layers_and_themes.json" import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; import LayerConfig from "../Models/ThemeConfig/LayerConfig"; @@ -7,9 +6,31 @@ import Combine from "../UI/Base/Combine"; import Title from "../UI/Base/Title"; import List from "../UI/Base/List"; import DependencyCalculator from "../Models/ThemeConfig/DependencyCalculator"; +import Constants from "../Models/Constants"; +import {Utils} from "../Utils"; +import Link from "../UI/Base/Link"; +import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson"; export class AllKnownLayouts { + // Must be below the list... + private static sharedLayers: Map = AllKnownLayouts.getSharedLayers(); + private static getSharedLayers(): Map { + const sharedLayers = new Map(); + for (const layer of known_themes.layers) { + try { + // @ts-ignore + const parsed = new LayerConfig(layer, "shared_layers") + sharedLayers.set(layer.id, parsed); + } catch (e) { + if (!Utils.runningFromConsole) { + console.error("CRITICAL: Could not parse a layer configuration!", layer.id, " due to", e) + } + } + } + + return sharedLayers; + } public static allKnownLayouts: Map = AllKnownLayouts.AllLayouts(); public static layoutsList: LayoutConfig[] = AllKnownLayouts.GenerateOrderedList(AllKnownLayouts.allKnownLayouts); @@ -33,16 +54,11 @@ export class AllKnownLayouts { } return allLayers } - - public static GenLayerOverviewText(): BaseUIElement { - for (const id of AllKnownLayers.priviliged_layers) { - if (!AllKnownLayers.sharedLayers.has(id)) { - throw "Priviliged layer definition not found: " + id - } - } - - const allLayers: LayerConfig[] = Array.from(AllKnownLayers.sharedLayers.values()) - .filter(layer => AllKnownLayers.priviliged_layers.indexOf(layer.id) < 0) + + + public static GenOverviewsForSingleLayer(callback: (layer: LayerConfig, element: BaseUIElement) => void): void { + const allLayers: LayerConfig[] = Array.from(AllKnownLayouts.sharedLayers.values()) + .filter(layer => Constants.priviliged_layers.indexOf(layer.id) < 0) const builtinLayerIds: Set = new Set() allLayers.forEach(l => builtinLayerIds.add(l.id)) @@ -65,10 +81,54 @@ export class AllKnownLayouts { } - let popularLayerCutoff = 2; - const popuparLayers = allLayers.filter(layer => themesPerLayer.get(layer.id)?.length >= 2) + // Determine the cross-dependencies + const layerIsNeededBy : Map = new Map() + + for (const layer of allLayers) { + for (const dep of DependencyCalculator.getLayerDependencies(layer)) { + const dependency = dep.neededLayer + if(!layerIsNeededBy.has(dependency)){ + layerIsNeededBy.set(dependency, []) + } + layerIsNeededBy.get(dependency).push(layer.id) + } + + + } + + allLayers.forEach((layer) => { + const element = layer.GenerateDocumentation(themesPerLayer.get(layer.id),layerIsNeededBy,DependencyCalculator.getLayerDependencies(layer)) + callback(layer, element) + }) + } + + public static GenLayerOverviewText(): BaseUIElement { + for (const id of Constants.priviliged_layers) { + if (!AllKnownLayouts.sharedLayers.has(id)) { + throw "Priviliged layer definition not found: " + id + } + } + + const allLayers: LayerConfig[] = Array.from(AllKnownLayouts.sharedLayers.values()) + .filter(layer => Constants.priviliged_layers.indexOf(layer.id) < 0) + + const builtinLayerIds: Set = new Set() + allLayers.forEach(l => builtinLayerIds.add(l.id)) + + const themesPerLayer = new Map() + + for (const layout of Array.from(AllKnownLayouts.allKnownLayouts.values())) { + for (const layer of layout.layers) { + if (!builtinLayerIds.has(layer.id)) { + continue + } + if (!themesPerLayer.has(layer.id)) { + themesPerLayer.set(layer.id, []) + } + themesPerLayer.get(layer.id).push(layout.id) + } + } - const unpopularLayers = allLayers.filter(layer => themesPerLayer.get(layer.id)?.length < 2) // Determine the cross-dependencies const layerIsNeededBy : Map = new Map() @@ -85,81 +145,49 @@ export class AllKnownLayouts { } + + return new Combine([ new Title("Special and other useful layers", 1), "MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here.", new Title("Priviliged layers", 1), - new List(AllKnownLayers.priviliged_layers.map(id => "[" + id + "](#" + id + ")")), - ...AllKnownLayers.priviliged_layers - .map(id => AllKnownLayers.sharedLayers.get(id)) - .map((l) => l.GenerateDocumentation(themesPerLayer.get(l.id), layerIsNeededBy, DependencyCalculator.getLayerDependencies(l),AllKnownLayers.added_by_default.indexOf(l.id) >= 0, AllKnownLayers.no_include.indexOf(l.id) < 0)), + new List(Constants.priviliged_layers.map(id => "[" + id + "](#" + id + ")")), + ...Constants.priviliged_layers + .map(id => AllKnownLayouts.sharedLayers.get(id)) + .map((l) => l.GenerateDocumentation(themesPerLayer.get(l.id), layerIsNeededBy, DependencyCalculator.getLayerDependencies(l),Constants.added_by_default.indexOf(l.id) >= 0, Constants.no_include.indexOf(l.id) < 0)), new Title("Normal layers", 1), - "The following layers are included in MapComplete", - new Title("Frequently reused layers", 2), - "The following layers are used by at least " + popularLayerCutoff + " mapcomplete themes and might be interesting for your custom theme too", - new List(popuparLayers.map(layer => "[" + layer.id + "](#" + layer.id + ")")), - ...popuparLayers.map((layer) => layer.GenerateDocumentation(themesPerLayer.get(layer.id),layerIsNeededBy,DependencyCalculator.getLayerDependencies(layer))), - new List(unpopularLayers.map(layer => "[" + layer.id + "](#" + layer.id + ")")), - ...unpopularLayers.map(layer => layer.GenerateDocumentation(themesPerLayer.get(layer.id),layerIsNeededBy,DependencyCalculator.getLayerDependencies(layer)) - ) + "The following layers are included in MapComplete:", + new List(Array.from(AllKnownLayouts.sharedLayers.keys()).map(id => new Link(id, "./Layers/"+id+".md"))) ]) } private static GenerateOrderedList(allKnownLayouts: Map): LayoutConfig[] { - const keys = ["personal", "cyclofix", "hailhydrant", "bookcases", "toilets", "aed"] const list = [] - for (const key of keys) { - list.push(allKnownLayouts.get(key)) - } - allKnownLayouts.forEach((layout, key) => { - if (keys.indexOf(key) < 0) { - list.push(layout) - } + allKnownLayouts.forEach((layout) => { + list.push(layout) }) return list; } - private static AddGhostBikes(layout: LayoutConfig): LayoutConfig { - const now = new Date(); - const m = now.getMonth() + 1; - const day = new Date().getDate() + 1; - const date = day + "/" + m; - if (date === "31/10" || date === "1/11" || date === "2/11") { - console.log("The current date is ", date, ", which means we remember our dead") - // Around Halloween/Fiesta de muerte/Allerzielen, we remember the dead - layout.layers.push( - AllKnownLayers.sharedLayers.get("ghost_bike") - ); - - } - return layout; - - } - private static AllLayouts(): Map { const dict: Map = new Map(); for (const layoutConfigJson of known_themes.themes) { - // @ts-ignore - const layout = new LayoutConfig(layoutConfigJson, true) - - if (layout.id === "cyclofix") { - AllKnownLayouts.AddGhostBikes(layout) - } - dict.set(layout.id, layout) - - for (let i = 0; i < layout.layers.length; i++) { - let layer = layout.layers[i]; - if (typeof (layer) === "string") { - layer = layout.layers[i] = AllKnownLayers.sharedLayers.get(layer); - if (layer === undefined) { - console.log("Defined layers are ", AllKnownLayers.sharedLayers.keys()) - throw `Layer ${layer} was not found or defined - probably a type was made` - } - } - - } + const layout = new LayoutConfig( layoutConfigJson, true) + dict.set(layout.id, layout) + for (let i = 0; i < layout.layers.length; i++) { + let layer = layout.layers[i]; + if (typeof (layer) === "string") { + layer = AllKnownLayouts.sharedLayers.get(layer); + layout.layers[i] = layer + if (layer === undefined) { + console.log("Defined layers are ", AllKnownLayouts.sharedLayers.keys()) + throw `Layer ${layer} was not found or defined - probably a type was made` + } + } + + } } return dict; } diff --git a/Customizations/SharedTagRenderings.ts b/Customizations/SharedTagRenderings.ts index 4344b6e893..ad0aa83e2a 100644 --- a/Customizations/SharedTagRenderings.ts +++ b/Customizations/SharedTagRenderings.ts @@ -37,8 +37,10 @@ export default class SharedTagRenderings { for (const key in icons) { dict.set(key, icons[key]) } - - dict.forEach((value, key) => value.id = key) + + dict.forEach((value, key) => { + value.id = value.id ?? key; + }) return dict; } diff --git a/Docs/BuiltinLayers.md b/Docs/BuiltinLayers.md index 7e61e352d0..4ba48b9464 100644 --- a/Docs/BuiltinLayers.md +++ b/Docs/BuiltinLayers.md @@ -3,188 +3,139 @@ Special and other useful layers ================================= - ## Table of contents + + +## Table of contents 1. [Special and other useful layers](#special-and-other-useful-layers) 1. [Priviliged layers](#priviliged-layers) - + [gps_location](#gps_location) - + [gps_location_history](#gps_location_history) - + [home_location](#home_location) - + [gps_track](#gps_track) - + [type_node](#type_node) - + [conflation](#conflation) - + [left_right_style](#left_right_style) - + [split_point](#split_point) - + [current_view](#current_view) - + [matchpoint](#matchpoint) +1. [gps_location](#gps_location) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) +1. [gps_location_history](#gps_location_history) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) +1. [home_location](#home_location) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) +1. [gps_track](#gps_track) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [Privacy notice](#privacy-notice) + + [export_as_gpx](#export_as_gpx) + + [minimap](#minimap) + + [delete](#delete) +1. [type_node](#type_node) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) +1. [note](#note) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [conversation](#conversation) + + [add_image](#add_image) + + [comment](#comment) + + [report-contributor](#report-contributor) + + [report-note](#report-note) +1. [conflation](#conflation) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) +1. [left_right_style](#left_right_style) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) +1. [split_point](#split_point) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) +1. [current_view](#current_view) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) +1. [matchpoint](#matchpoint) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) 1. [Normal layers](#normal-layers) - - [Frequently reused layers](#frequently-reused-layers) - + [bicycle_library](#bicycle_library) - * [Themes using this layer](#themes-using-this-layer) - + [drinking_water](#drinking_water) - * [Themes using this layer](#themes-using-this-layer) - + [food](#food) - * [Themes using this layer](#themes-using-this-layer) - + [map](#map) - * [Themes using this layer](#themes-using-this-layer) - + [walls_and_buildings](#walls_and_buildings) - * [Themes using this layer](#themes-using-this-layer) - + [all_streets](#all_streets) - * [Themes using this layer](#themes-using-this-layer) - + [ambulancestation](#ambulancestation) - * [Themes using this layer](#themes-using-this-layer) - + [artwork](#artwork) - * [Themes using this layer](#themes-using-this-layer) - + [barrier](#barrier) - * [Themes using this layer](#themes-using-this-layer) - + [bench](#bench) - * [Themes using this layer](#themes-using-this-layer) - + [bench_at_pt](#bench_at_pt) - * [Themes using this layer](#themes-using-this-layer) - + [bicycle_tube_vending_machine](#bicycle_tube_vending_machine) - * [Themes using this layer](#themes-using-this-layer) - + [bike_cafe](#bike_cafe) - * [Themes using this layer](#themes-using-this-layer) - + [bike_cleaning](#bike_cleaning) - * [Themes using this layer](#themes-using-this-layer) - + [bike_parking](#bike_parking) - * [Themes using this layer](#themes-using-this-layer) - + [bike_repair_station](#bike_repair_station) - * [Themes using this layer](#themes-using-this-layer) - + [bike_shop](#bike_shop) - * [Themes using this layer](#themes-using-this-layer) - + [bike_themed_object](#bike_themed_object) - * [Themes using this layer](#themes-using-this-layer) - + [binocular](#binocular) - * [Themes using this layer](#themes-using-this-layer) - + [birdhide](#birdhide) - * [Themes using this layer](#themes-using-this-layer) - + [cafe_pub](#cafe_pub) - * [Themes using this layer](#themes-using-this-layer) - + [charging_station](#charging_station) - * [Themes using this layer](#themes-using-this-layer) - + [crossings](#crossings) - * [Themes using this layer](#themes-using-this-layer) - + [cycleways_and_roads](#cycleways_and_roads) - * [Themes using this layer](#themes-using-this-layer) - + [defibrillator](#defibrillator) - * [Themes using this layer](#themes-using-this-layer) - + [direction](#direction) - * [Themes using this layer](#themes-using-this-layer) - + [entrance](#entrance) - * [Themes using this layer](#themes-using-this-layer) - + [etymology](#etymology) - * [Themes using this layer](#themes-using-this-layer) - + [extinguisher](#extinguisher) - * [Themes using this layer](#themes-using-this-layer) - + [fire_station](#fire_station) - * [Themes using this layer](#themes-using-this-layer) - + [ghost_bike](#ghost_bike) - * [Themes using this layer](#themes-using-this-layer) - + [hydrant](#hydrant) - * [Themes using this layer](#themes-using-this-layer) - + [information_board](#information_board) - * [Themes using this layer](#themes-using-this-layer) - + [nature_reserve](#nature_reserve) - * [Themes using this layer](#themes-using-this-layer) - + [observation_tower](#observation_tower) - * [Themes using this layer](#themes-using-this-layer) - + [parking](#parking) - * [Themes using this layer](#themes-using-this-layer) - + [pedestrian_path](#pedestrian_path) - * [Themes using this layer](#themes-using-this-layer) - + [picnic_table](#picnic_table) - * [Themes using this layer](#themes-using-this-layer) - + [playground](#playground) - * [Themes using this layer](#themes-using-this-layer) - + [public_bookcase](#public_bookcase) - * [Themes using this layer](#themes-using-this-layer) - + [shops](#shops) - * [Themes using this layer](#themes-using-this-layer) - + [sport_pitch](#sport_pitch) - * [Themes using this layer](#themes-using-this-layer) - + [street_lamps](#street_lamps) - * [Themes using this layer](#themes-using-this-layer) - + [surveillance_camera](#surveillance_camera) - * [Themes using this layer](#themes-using-this-layer) - + [toilet](#toilet) - * [Themes using this layer](#themes-using-this-layer) - + [tree_node](#tree_node) - * [Themes using this layer](#themes-using-this-layer) - + [waste_basket](#waste_basket) - * [Themes using this layer](#themes-using-this-layer) - + [caravansites](#caravansites) - * [Themes using this layer](#themes-using-this-layer) - + [dumpstations](#dumpstations) - * [Themes using this layer](#themes-using-this-layer) - + [climbing_club](#climbing_club) - * [Themes using this layer](#themes-using-this-layer) - + [climbing_gym](#climbing_gym) - * [Themes using this layer](#themes-using-this-layer) - + [climbing_route](#climbing_route) - * [Themes using this layer](#themes-using-this-layer) - + [climbing](#climbing) - * [Themes using this layer](#themes-using-this-layer) - + [maybe_climbing](#maybe_climbing) - * [Themes using this layer](#themes-using-this-layer) - + [fietsstraat](#fietsstraat) - * [Themes using this layer](#themes-using-this-layer) - + [toekomstige_fietsstraat](#toekomstige_fietsstraat) - * [Themes using this layer](#themes-using-this-layer) - + [facadegardens](#facadegardens) - * [Themes using this layer](#themes-using-this-layer) - + [hackerspaces](#hackerspaces) - * [Themes using this layer](#themes-using-this-layer) - + [windturbine](#windturbine) - * [Themes using this layer](#themes-using-this-layer) - + [postboxes](#postboxes) - * [Themes using this layer](#themes-using-this-layer) - + [postoffices](#postoffices) - * [Themes using this layer](#themes-using-this-layer) - + [lit_streets](#lit_streets) - * [Themes using this layer](#themes-using-this-layer) - MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here. + + +MapComplete has a few data layers available in the theme which have special properties through builtin-hooks. Furthermore, there are some normal layers (which are built from normal Theme-config files) but are so general that they get a mention here. + + Priviliged layers =================== - + + + - [gps_location](#gps_location) - [gps_location_history](#gps_location_history) - [home_location](#home_location) - [gps_track](#gps_track) - [type_node](#type_node) + - [note](#note) - [conflation](#conflation) - [left_right_style](#left_right_style) - [split_point](#split_point) - [current_view](#current_view) - [matchpoint](#matchpoint) - -### gps_location + + + + gps_location +============== + + Meta layer showing the current location of the user. Add this to your theme and override the icon to change the appearance of the current location. The object will always have `id=gps` and will have _all_ the properties included in the [`Coordinates`-object](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates) returned by the browser. -[Go to the source code](../assets/layers/gps_location/gps_location.json) + + - **This layer is included automatically in every theme. This layer might contain no points** - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - -### gps_location_history + +[Go to the source code](../assets/layers/gps_location/gps_location.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id=gps + + + + + Supported attributes +---------------------- + + + + + + gps_location_history +====================== + + Meta layer which contains the previous locations of the user as single points. This is mainly for technical reasons, e.g. to keep match the distance to the modified object -[Go to the source code](../assets/layers/gps_location_history/gps_location_history.json) + + @@ -192,92 +143,425 @@ Meta layer which contains the previous locations of the user as single points. T - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - - -### home_location +[Go to the source code](../assets/layers/gps_location_history/gps_location_history.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - user:location=yes + + + + + Supported attributes +---------------------- + + + + + + home_location +=============== + + + + Meta layer showing the home location of the user. The home location can be set in the [profile settings](https://www.openstreetmap.org/profile/edit) of OpenStreetMap. -[Go to the source code](../assets/layers/home_location/home_location.json) + + - **This layer is included automatically in every theme. This layer might contain no points** - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - -### gps_track + +[Go to the source code](../assets/layers/home_location/home_location.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - user:home=yes + + + + + Supported attributes +---------------------- + + + + + + gps_track +=========== + + Meta layer showing the previous locations of the user as single line. Add this to your theme and override the icon to change the appearance of the current location. -[Go to the source code](../assets/layers/gps_track/gps_track.json) + + - **This layer is included automatically in every theme. This layer might contain no points** - This layer is not visible by default and must be enabled in the filter by the user. - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - -### type_node + +[Go to the source code](../assets/layers/gps_track/gps_track.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id=location_track + + + + + Supported attributes +---------------------- + + + + + +### Privacy notice + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### export_as_gpx + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### delete + + + +_This tagrendering has no question and is thus read-only_ + + + + + + type_node +=========== + + This is a priviliged meta_layer which exports _every_ point in OSM. This only works if zoomed below the point that the full tile is loaded (and not loaded via Overpass). Note that this point will also contain a property `parent_ways` which contains all the ways this node is part of as a list. This is mainly used for extremely specialized themes, which do advanced conflations. Expert use only. -[Go to the source code](../assets/layers/type_node/type_node.json) + + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - - This layer is needed as dependency for layer [GRB](#GRB) - -### conflation + +[Go to the source code](../assets/layers/type_node/type_node.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id~^node\/.*$ + + + + + Supported attributes +---------------------- + + + + + + note +====== + + + + + +This layer shows notes on OpenStreetMap. Having this layer in your theme will trigger the 'add new note' functionality in the 'addNewPoint'-popup (or if your theme has no presets, it'll enable adding notes) + + + + + + + - This layer is loaded from an external source, namely `https://api.openstreetmap.org/api/0.6/notes.json?closed=7&bbox={x_min},{y_min},{x_max},{y_max}` + + +[Go to the source code](../assets/layers/note/note.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id~^..*$ + + + + + Supported attributes +---------------------- + + + + + +### conversation + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### add_image + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### comment + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### report-contributor + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### report-note + + + +_This tagrendering has no question and is thus read-only_ + + + + + + conflation +============ + + If the import-button moves OSM points, the imported way points or conflates, a preview is shown. This layer defines how this preview is rendered. This layer cannot be included in a theme. -[Go to the source code](../assets/layers/conflation/conflation.json) + + - This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data. - -### left_right_style + +[Go to the source code](../assets/layers/conflation/conflation.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - move=yes|newpoint=yes + + + + + Supported attributes +---------------------- + + + + + + left_right_style +================== + + Special meta-style which will show one single line, either on the left or on the right depending on the id. This is used in the small popups with left_right roads. Cannot be included in a theme -[Go to the source code](../assets/layers/left_right_style/left_right_style.json) + + - This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data. - - -### split_point +[Go to the source code](../assets/layers/left_right_style/left_right_style.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id=left|id=right + + + + + Supported attributes +---------------------- + + + + + + split_point +============= + + + + Layer rendering the little scissors for the minimap in the 'splitRoadWizard' + + + + + + - This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data. + + [Go to the source code](../assets/layers/split_point/split_point.json) - - This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data. - + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - _split_point=yes + + + + + Supported attributes +---------------------- + + + + + + current_view +============== + -### current_view @@ -285,1601 +569,160 @@ A meta-layer which contains one single feature, namely the BBOX of the current m The icon on the button is the default icon of the layer, but can be customized by detecting 'button=yes'. -[Go to the source code](../assets/layers/current_view/current_view.json) + + - This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data. - - -### matchpoint +[Go to the source code](../assets/layers/current_view/current_view.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - current_view=yes + + + + + Supported attributes +---------------------- + + + + + + matchpoint +============ + + + + The default rendering for a locationInput which snaps onto another object + + + + + + - This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data. + + [Go to the source code](../assets/layers/matchpoint/matchpoint.json) - - This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data. - + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + + + + + + Supported attributes +---------------------- + + + + Normal layers =============== - The following layers are included in MapComplete - Frequently reused layers --------------------------- - The following layers are used by at least 2 mapcomplete themes and might be interesting for your custom theme too - - - [bicycle_library](#bicycle_library) - - [drinking_water](#drinking_water) - - [food](#food) - - [map](#map) - - [walls_and_buildings](#walls_and_buildings) - - [all_streets](#all_streets) - - -### bicycle_library - - - -A facility where bicycles can be lent for longer period of times - -[Go to the source code](../assets/layers/bicycle_library/bicycle_library.json) - - - - - - - - -#### Themes using this layer - - - - - - - [bicyclelib](https://mapcomplete.osm.be/bicyclelib) - - [cyclofix](https://mapcomplete.osm.be/cyclofix) - - -### drinking_water - - - -A layer showing drinking water fountains - -[Go to the source code](../assets/layers/drinking_water/drinking_water.json) - - - - - This layer will automatically load [drinking_water](#drinking_water) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_other_drinking_water) - - This layer is needed as dependency for layer [drinking_water](#drinking_water) - - - - -#### Themes using this layer - - - - - - - [cyclofix](https://mapcomplete.osm.be/cyclofix) - - [drinking_water](https://mapcomplete.osm.be/drinking_water) - - [nature](https://mapcomplete.osm.be/nature) - - -### food - - - -A layer showing restaurants and fast-food amenities (with a special rendering for friteries) - -[Go to the source code](../assets/layers/food/food.json) - - - - - - - - -#### Themes using this layer - - - - - - - [food](https://mapcomplete.osm.be/food) - - [fritures](https://mapcomplete.osm.be/fritures) - - -### map - - - -A map, meant for tourists which is permanently installed in the public space - -[Go to the source code](../assets/layers/map/map.json) - - - - - - - - -#### Themes using this layer - - - - - - - [maps](https://mapcomplete.osm.be/maps) - - [nature](https://mapcomplete.osm.be/nature) - - -### walls_and_buildings - - - -Special builtin layer providing all walls and buildings. This layer is useful in presets for objects which can be placed against walls (e.g. AEDs, postboxes, entrances, addresses, surveillance cameras, ...). This layer is invisible by default and not toggleable by the user. - -[Go to the source code](../assets/layers/walls_and_buildings/walls_and_buildings.json) - - - - - This layer is not visible by default and must be enabled in the filter by the user. - - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - - This layer is needed as dependency for layer [defibrillator](#defibrillator) - - This layer is needed as dependency for layer [entrance](#entrance) - - This layer is needed as dependency for layer [surveillance_camera](#surveillance_camera) - - - - -#### Themes using this layer - - - - - - - [aed](https://mapcomplete.osm.be/aed) - - [entrances](https://mapcomplete.osm.be/entrances) - - [surveillance](https://mapcomplete.osm.be/surveillance) - - -### all_streets - - - -[Go to the source code](../assets/layers/all_streets/all_streets.json) - - - - - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - - - - -#### Themes using this layer - - - - - - - [cyclestreets](https://mapcomplete.osm.be/cyclestreets) - - [street_lighting](https://mapcomplete.osm.be/street_lighting) - - - - [ambulancestation](#ambulancestation) - - [artwork](#artwork) - - [barrier](#barrier) - - [bench](#bench) - - [bench_at_pt](#bench_at_pt) - - [bicycle_tube_vending_machine](#bicycle_tube_vending_machine) - - [bike_cafe](#bike_cafe) - - [bike_cleaning](#bike_cleaning) - - [bike_parking](#bike_parking) - - [bike_repair_station](#bike_repair_station) - - [bike_shop](#bike_shop) - - [bike_themed_object](#bike_themed_object) - - [binocular](#binocular) - - [birdhide](#birdhide) - - [cafe_pub](#cafe_pub) - - [charging_station](#charging_station) - - [crossings](#crossings) - - [cycleways_and_roads](#cycleways_and_roads) - - [defibrillator](#defibrillator) - - [direction](#direction) - - [entrance](#entrance) - - [etymology](#etymology) - - [extinguisher](#extinguisher) - - [fire_station](#fire_station) - - [ghost_bike](#ghost_bike) - - [hydrant](#hydrant) - - [information_board](#information_board) - - [nature_reserve](#nature_reserve) - - [observation_tower](#observation_tower) - - [parking](#parking) - - [pedestrian_path](#pedestrian_path) - - [picnic_table](#picnic_table) - - [playground](#playground) - - [public_bookcase](#public_bookcase) - - [shops](#shops) - - [sport_pitch](#sport_pitch) - - [street_lamps](#street_lamps) - - [surveillance_camera](#surveillance_camera) - - [toilet](#toilet) - - [tree_node](#tree_node) - - [waste_basket](#waste_basket) - - [caravansites](#caravansites) - - [dumpstations](#dumpstations) - - [climbing_club](#climbing_club) - - [climbing_gym](#climbing_gym) - - [climbing_route](#climbing_route) - - [climbing](#climbing) - - [maybe_climbing](#maybe_climbing) - - [fietsstraat](#fietsstraat) - - [toekomstige_fietsstraat](#toekomstige_fietsstraat) - - [facadegardens](#facadegardens) - - [hackerspaces](#hackerspaces) - - [windturbine](#windturbine) - - [postboxes](#postboxes) - - [postoffices](#postoffices) - - [lit_streets](#lit_streets) - - -### ambulancestation - - - -An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies. - -[Go to the source code](../assets/layers/ambulancestation/ambulancestation.json) - - - - - - - - -#### Themes using this layer - - - - - - - [hailhydrant](https://mapcomplete.osm.be/hailhydrant) - - -### artwork - - - -Diverse pieces of artwork - -[Go to the source code](../assets/layers/artwork/artwork.json) - - - - - - - - -#### Themes using this layer - - - - - - - [artwork](https://mapcomplete.osm.be/artwork) - - -### barrier - - - -Obstacles while cycling, such as bollards and cycle barriers - -[Go to the source code](../assets/layers/barrier/barrier.json) - - - - - This layer will automatically load [cycleways_and_roads](#cycleways_and_roads) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - This layer will automatically load [cycleways_and_roads](#cycleways_and_roads) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - - - -#### Themes using this layer - - - - - - - [cycle_infra](https://mapcomplete.osm.be/cycle_infra) - - -### bench - - - -A bench is a wooden, metal, stone, ... surface where a human can sit. This layers visualises them and asks a few questions about them. - -[Go to the source code](../assets/layers/bench/bench.json) - - - - - - - - -#### Themes using this layer - - - - - - - [benches](https://mapcomplete.osm.be/benches) - - -### bench_at_pt - - - -A layer showing all public-transport-stops which do have a bench - -[Go to the source code](../assets/layers/bench_at_pt/bench_at_pt.json) - - - - - - - - -#### Themes using this layer - - - - - - - [benches](https://mapcomplete.osm.be/benches) - - -### bicycle_tube_vending_machine - - - -A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, ...) - -[Go to the source code](../assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json) - - - - - - - - -#### Themes using this layer - - - - - - - [cyclofix](https://mapcomplete.osm.be/cyclofix) - - -### bike_cafe - - - -A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, ... - -[Go to the source code](../assets/layers/bike_cafe/bike_cafe.json) - - - - - - - - -#### Themes using this layer - - - - - - - [cyclofix](https://mapcomplete.osm.be/cyclofix) - - -### bike_cleaning - - - -A layer showing facilities where one can clean their bike - -[Go to the source code](../assets/layers/bike_cleaning/bike_cleaning.json) - - - - - - - - -#### Themes using this layer - - - - - - - [cyclofix](https://mapcomplete.osm.be/cyclofix) - - -### bike_parking - - - -A layer showing where you can park your bike - -[Go to the source code](../assets/layers/bike_parking/bike_parking.json) - - - - - - - - -#### Themes using this layer - - - - - - - [cyclofix](https://mapcomplete.osm.be/cyclofix) - - -### bike_repair_station - - - -A layer showing bicycle pumps and bicycle repair tool stands - -[Go to the source code](../assets/layers/bike_repair_station/bike_repair_station.json) - - - - - - - - -#### Themes using this layer - - - - - - - [cyclofix](https://mapcomplete.osm.be/cyclofix) - - -### bike_shop - - - -A shop specifically selling bicycles or related items - -[Go to the source code](../assets/layers/bike_shop/bike_shop.json) - - - - - - - - -#### Themes using this layer - - - - - - - [cyclofix](https://mapcomplete.osm.be/cyclofix) - - -### bike_themed_object - - - -A layer with bike-themed objects but who don't match any other layer - -[Go to the source code](../assets/layers/bike_themed_object/bike_themed_object.json) - - - - - - - - -#### Themes using this layer - - - - - - - [cyclofix](https://mapcomplete.osm.be/cyclofix) - - -### binocular - - - -Binoculas - -[Go to the source code](../assets/layers/binocular/binocular.json) - - - - - - - - -#### Themes using this layer - - - - - - - [binoculars](https://mapcomplete.osm.be/binoculars) - - -### birdhide - - - -Een vogelkijkhut - -[Go to the source code](../assets/layers/birdhide/birdhide.json) - - - - - - - - -#### Themes using this layer - - - - - - - [nature](https://mapcomplete.osm.be/nature) - - -### cafe_pub - - - -A layer showing cafés and pubs where one can gather around a drink. The layer asks for some relevant questions - -[Go to the source code](../assets/layers/cafe_pub/cafe_pub.json) - - - - - - - - -#### Themes using this layer - - - - - - - [cafes_and_pubs](https://mapcomplete.osm.be/cafes_and_pubs) - - -### charging_station - - - -A charging station - -[Go to the source code](../assets/layers/charging_station/charging_station.json) - - - - - - - - -#### Themes using this layer - - - - - - - [charging_stations](https://mapcomplete.osm.be/charging_stations) - - -### crossings - - - -Crossings for pedestrians and cyclists - -[Go to the source code](../assets/layers/crossings/crossings.json) - - - - - This layer will automatically load [cycleways_and_roads](#cycleways_and_roads) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - This layer will automatically load [cycleways_and_roads](#cycleways_and_roads) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - - - -#### Themes using this layer - - - - - - - [cycle_infra](https://mapcomplete.osm.be/cycle_infra) - - -### cycleways_and_roads - - - -All infrastructure that someone can cycle over, accompanied with questions about this infrastructure" - -[Go to the source code](../assets/layers/cycleways_and_roads/cycleways_and_roads.json) - - - - - This layer is needed as dependency for layer [barrier](#barrier) - - 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 [crossings](#crossings) - - - - -#### Themes using this layer - - - - - - - [cycle_infra](https://mapcomplete.osm.be/cycle_infra) - - -### defibrillator - - - -A layer showing defibrillators which can be used in case of emergency. This contains public defibrillators, but also defibrillators which might need staff to fetch the actual device - -[Go to the source code](../assets/layers/defibrillator/defibrillator.json) - - - - - This layer will automatically load [walls_and_buildings](#walls_and_buildings) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - This layer is needed as dependency for layer [Brugge](#Brugge) - - - - -#### Themes using this layer - - - - - - - [aed](https://mapcomplete.osm.be/aed) - - -### direction - - - -This layer visualizes directions - -[Go to the source code](../assets/layers/direction/direction.json) - - - - - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. - - - - -#### Themes using this layer - - - - - - - [surveillance](https://mapcomplete.osm.be/surveillance) - - -### entrance - - - -A layer showing entrances and offering capabilities to survey some advanced data which is important for e.g. wheelchair users (but also bicycle users, people who want to deliver, ...) - -[Go to the source code](../assets/layers/entrance/entrance.json) - - - - - This layer will automatically load [walls_and_buildings](#walls_and_buildings) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - This layer will automatically load [pedestrian_path](#pedestrian_path) into the layout as it depends on it: a preset snaps to this layer (presets[0]) - - - - -#### Themes using this layer - - - - - - - [entrances](https://mapcomplete.osm.be/entrances) - - -### etymology - - - -All objects which have an etymology known - -[Go to the source code](../assets/layers/etymology/etymology.json) - - - - - - - - -#### Themes using this layer - - - - - - - [etymology](https://mapcomplete.osm.be/etymology) - - -### extinguisher - - - -Map layer to show fire hydrants. - -[Go to the source code](../assets/layers/extinguisher/extinguisher.json) - - - - - - - - -#### Themes using this layer - - - - - - - [hailhydrant](https://mapcomplete.osm.be/hailhydrant) - - -### fire_station - - - -Map layer to show fire stations. - -[Go to the source code](../assets/layers/fire_station/fire_station.json) - - - - - - - - -#### Themes using this layer - - - - - - - [hailhydrant](https://mapcomplete.osm.be/hailhydrant) - - -### ghost_bike - - - -A layer showing memorials for cyclists, killed in road accidents - -[Go to the source code](../assets/layers/ghost_bike/ghost_bike.json) - - - - - - - - -#### Themes using this layer - - - - - - - [ghostbikes](https://mapcomplete.osm.be/ghostbikes) - - -### hydrant - - - -Map layer to show fire hydrants. - -[Go to the source code](../assets/layers/hydrant/hydrant.json) - - - - - - - - -#### Themes using this layer - - - - - - - [hailhydrant](https://mapcomplete.osm.be/hailhydrant) - - -### information_board - - - -A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, ...) - -[Go to the source code](../assets/layers/information_board/information_board.json) - - - - - - - - -#### Themes using this layer - - - - - - - [nature](https://mapcomplete.osm.be/nature) - - -### nature_reserve - - - -Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid. - -[Go to the source code](../assets/layers/nature_reserve/nature_reserve.json) - - - - - - - - -#### Themes using this layer - - - - - - - [nature](https://mapcomplete.osm.be/nature) - - -### observation_tower - - - -Towers with a panoramic view - -[Go to the source code](../assets/layers/observation_tower/observation_tower.json) - - - - - - - - -#### Themes using this layer - - - - - - - [observation_towers](https://mapcomplete.osm.be/observation_towers) - - -### parking - - - -A layer showing car parkings - -[Go to the source code](../assets/layers/parking/parking.json) - - - - - - - - -#### Themes using this layer - - - - - - - [parkings](https://mapcomplete.osm.be/parkings) - - -### pedestrian_path - - - -Pedestrian footpaths, especially used for indoor navigation and snapping entrances to this layer - -[Go to the source code](../assets/layers/pedestrian_path/pedestrian_path.json) - - - - - This layer is needed as dependency for layer [entrance](#entrance) - - - - -#### Themes using this layer - - - - - - - [entrances](https://mapcomplete.osm.be/entrances) - - -### picnic_table - - - -The layer showing picnic tables - -[Go to the source code](../assets/layers/picnic_table/picnic_table.json) - - - - - - - - -#### Themes using this layer - - - - - - - [benches](https://mapcomplete.osm.be/benches) - - -### playground - - - -Playgrounds - -[Go to the source code](../assets/layers/playground/playground.json) - - - - - - - - -#### Themes using this layer - - - - - - - [playgrounds](https://mapcomplete.osm.be/playgrounds) - - -### public_bookcase - - - -A streetside cabinet with books, accessible to anyone - -[Go to the source code](../assets/layers/public_bookcase/public_bookcase.json) - - - - - - - - -#### Themes using this layer - - - - - - - [bookcases](https://mapcomplete.osm.be/bookcases) - - -### shops - - - -A shop - -[Go to the source code](../assets/layers/shops/shops.json) - - - - - - - - -#### Themes using this layer - - - - - - - [shops](https://mapcomplete.osm.be/shops) - - -### sport_pitch - - - -A sport pitch - -[Go to the source code](../assets/layers/sport_pitch/sport_pitch.json) - - - - - - - - -#### Themes using this layer - - - - - - - [sport_pitches](https://mapcomplete.osm.be/sport_pitches) - - -### street_lamps - - - -A layer showing street lights - -[Go to the source code](../assets/layers/street_lamps/street_lamps.json) - - - - - This layer is needed as dependency for layer [Assen](#Assen) - - - - -#### Themes using this layer - - - - - - - [street_lighting](https://mapcomplete.osm.be/street_lighting) - - -### surveillance_camera - - - -This layer shows surveillance cameras and allows a contributor to update information and add new cameras - -[Go to the source code](../assets/layers/surveillance_camera/surveillance_camera.json) - - - - - This layer will automatically load [walls_and_buildings](#walls_and_buildings) into the layout as it depends on it: a preset snaps to this layer (presets[1]) - - - - -#### Themes using this layer - - - - - - - [surveillance](https://mapcomplete.osm.be/surveillance) - - -### toilet - - - -A layer showing (public) toilets - -[Go to the source code](../assets/layers/toilet/toilet.json) - - - - - - - - -#### Themes using this layer - - - - - - - [toilets](https://mapcomplete.osm.be/toilets) - - -### tree_node - - - -A layer showing trees - -[Go to the source code](../assets/layers/tree_node/tree_node.json) - - - - - - - - -#### Themes using this layer - - - - - - - [trees](https://mapcomplete.osm.be/trees) - - -### waste_basket - - - -This is a public waste basket, thrash can, where you can throw away your thrash. - -[Go to the source code](../assets/layers/waste_basket/waste_basket.json) - - - - - - - - -#### Themes using this layer - - - - - - - [waste_basket](https://mapcomplete.osm.be/waste_basket) - - -### caravansites - - - -camper sites - -[Go to the source code](../assets/layers/caravansites/caravansites.json) - - - - - - - - -#### Themes using this layer - - - - - - - [campersite](https://mapcomplete.osm.be/campersite) - - -### dumpstations - - - -Sanitary dump stations - -[Go to the source code](../assets/layers/dumpstations/dumpstations.json) - - - - - - - - -#### Themes using this layer - - - - - - - [campersite](https://mapcomplete.osm.be/campersite) - - -### climbing_club - - - -A climbing club or organisations - -[Go to the source code](../assets/layers/climbing_club/climbing_club.json) - - - - - - - - -#### Themes using this layer - - - - - - - [climbing](https://mapcomplete.osm.be/climbing) - - -### climbing_gym - - - -A climbing gym - -[Go to the source code](../assets/layers/climbing_gym/climbing_gym.json) - - - - - - - - -#### Themes using this layer - - - - - - - [climbing](https://mapcomplete.osm.be/climbing) - - -### climbing_route - - - -[Go to the source code](../assets/layers/climbing_route/climbing_route.json) - - - - - This layer is needed as dependency for layer [climbing](#climbing) - - - - -#### Themes using this layer - - - - - - - [climbing](https://mapcomplete.osm.be/climbing) - - -### climbing - - - -A climbing opportunity - -[Go to the source code](../assets/layers/climbing/climbing.json) - - - - - This layer will automatically load [climbing_route](#climbing_route) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _contained_climbing_routes_properties) - - - - -#### Themes using this layer - - - - - - - [climbing](https://mapcomplete.osm.be/climbing) - - -### maybe_climbing - - - -A climbing opportunity? - -[Go to the source code](../assets/layers/maybe_climbing/maybe_climbing.json) - - - - - - - - -#### Themes using this layer - - - - - - - [climbing](https://mapcomplete.osm.be/climbing) - - -### fietsstraat - - - -A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist - -[Go to the source code](../assets/layers/fietsstraat/fietsstraat.json) - - - - - - - - -#### Themes using this layer - - - - - - - [cyclestreets](https://mapcomplete.osm.be/cyclestreets) - - -### toekomstige_fietsstraat - - - -This street will become a cyclestreet soon - -[Go to the source code](../assets/layers/toekomstige_fietsstraat/toekomstige_fietsstraat.json) - - - - - - - - -#### Themes using this layer - - - - - - - [cyclestreets](https://mapcomplete.osm.be/cyclestreets) - - -### facadegardens - - - -Facade gardens - -[Go to the source code](../assets/layers/facadegardens/facadegardens.json) - - - - - - - - -#### Themes using this layer - - - - - - - [facadegardens](https://mapcomplete.osm.be/facadegardens) - - -### hackerspaces - - - -Hackerspace - -[Go to the source code](../assets/layers/hackerspaces/hackerspaces.json) - - - - - - - - -#### Themes using this layer - - - - - - - [hackerspaces](https://mapcomplete.osm.be/hackerspaces) - - -### windturbine - - - -[Go to the source code](../assets/layers/windturbine/windturbine.json) - - - - - - - - -#### Themes using this layer - - - - - - - [openwindpowermap](https://mapcomplete.osm.be/openwindpowermap) - - -### postboxes - - - -The layer showing postboxes. - -[Go to the source code](../assets/layers/postboxes/postboxes.json) - - - - - - - - -#### Themes using this layer - - - - - - - [postboxes](https://mapcomplete.osm.be/postboxes) - - -### postoffices - - - -A layer showing post offices. - -[Go to the source code](../assets/layers/postoffices/postoffices.json) - - - - - - - - -#### Themes using this layer - - - - - - - [postboxes](https://mapcomplete.osm.be/postboxes) - - -### lit_streets - - - -[Go to the source code](../assets/layers/lit_streets/lit_streets.json) - - - - - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` - - - - -#### Themes using this layer - - - - - - - [street_lighting](https://mapcomplete.osm.be/street_lighting) +The following layers are included in MapComplete: + + + + - [address](./Layers/address.md) + - [ambulancestation](./Layers/ambulancestation.md) + - [artwork](./Layers/artwork.md) + - [barrier](./Layers/barrier.md) + - [bench](./Layers/bench.md) + - [bench_at_pt](./Layers/bench_at_pt.md) + - [bicycle_library](./Layers/bicycle_library.md) + - [bicycle_tube_vending_machine](./Layers/bicycle_tube_vending_machine.md) + - [bike_cafe](./Layers/bike_cafe.md) + - [bike_cleaning](./Layers/bike_cleaning.md) + - [bike_parking](./Layers/bike_parking.md) + - [bike_repair_station](./Layers/bike_repair_station.md) + - [bike_shop](./Layers/bike_shop.md) + - [bike_themed_object](./Layers/bike_themed_object.md) + - [binocular](./Layers/binocular.md) + - [birdhide](./Layers/birdhide.md) + - [cafe_pub](./Layers/cafe_pub.md) + - [charging_station](./Layers/charging_station.md) + - [cluster_style](./Layers/cluster_style.md) + - [conflation](./Layers/conflation.md) + - [crab_address](./Layers/crab_address.md) + - [crossings](./Layers/crossings.md) + - [current_view](./Layers/current_view.md) + - [cycleways_and_roads](./Layers/cycleways_and_roads.md) + - [defibrillator](./Layers/defibrillator.md) + - [direction](./Layers/direction.md) + - [drinking_water](./Layers/drinking_water.md) + - [entrance](./Layers/entrance.md) + - [etymology](./Layers/etymology.md) + - [extinguisher](./Layers/extinguisher.md) + - [fire_station](./Layers/fire_station.md) + - [food](./Layers/food.md) + - [ghost_bike](./Layers/ghost_bike.md) + - [gps_location](./Layers/gps_location.md) + - [gps_location_history](./Layers/gps_location_history.md) + - [gps_track](./Layers/gps_track.md) + - [grass_in_parks](./Layers/grass_in_parks.md) + - [home_location](./Layers/home_location.md) + - [hydrant](./Layers/hydrant.md) + - [information_board](./Layers/information_board.md) + - [left_right_style](./Layers/left_right_style.md) + - [map](./Layers/map.md) + - [matchpoint](./Layers/matchpoint.md) + - [named_streets](./Layers/named_streets.md) + - [nature_reserve](./Layers/nature_reserve.md) + - [note](./Layers/note.md) + - [note_import](./Layers/note_import.md) + - [observation_tower](./Layers/observation_tower.md) + - [parking](./Layers/parking.md) + - [pedestrian_path](./Layers/pedestrian_path.md) + - [picnic_table](./Layers/picnic_table.md) + - [play_forest](./Layers/play_forest.md) + - [playground](./Layers/playground.md) + - [public_bookcase](./Layers/public_bookcase.md) + - [shops](./Layers/shops.md) + - [slow_roads](./Layers/slow_roads.md) + - [split_point](./Layers/split_point.md) + - [sport_pitch](./Layers/sport_pitch.md) + - [street_lamps](./Layers/street_lamps.md) + - [surveillance_camera](./Layers/surveillance_camera.md) + - [toilet](./Layers/toilet.md) + - [trail](./Layers/trail.md) + - [tree_node](./Layers/tree_node.md) + - [type_node](./Layers/type_node.md) + - [viewpoint](./Layers/viewpoint.md) + - [village_green](./Layers/village_green.md) + - [visitor_information_centre](./Layers/visitor_information_centre.md) + - [walls_and_buildings](./Layers/walls_and_buildings.md) + - [waste_basket](./Layers/waste_basket.md) + - [watermill](./Layers/watermill.md) This document is autogenerated from AllKnownLayers.ts \ No newline at end of file diff --git a/Docs/CalculatedTags.md b/Docs/CalculatedTags.md index 02bf6103c9..e767db34fc 100644 --- a/Docs/CalculatedTags.md +++ b/Docs/CalculatedTags.md @@ -3,7 +3,9 @@ Metatags ========== - ## Table of contents + + +## Table of contents 1. [Metatags](#metatags) - [Metatags calculated by MapComplete](#metatags-calculated-by-mapcomplete) @@ -13,7 +15,7 @@ + [_length, _length:km](#_length,-_lengthkm) + [Theme-defined keys](#theme-defined-keys) + [_country](#_country) - + [_isOpen, _isOpen:description](#_isopen,-_isopendescription) + + [_isOpen](#_isopen) + [_direction:numerical, _direction:leftright](#_directionnumerical,-_direction:leftright) + [_now:date, _now:datetime, _loaded:date, _loaded:_datetime](#_nowdate,-_now:datetime,-_loaded:date,-_loaded:_datetime) + [_last_edit:contributor, _last_edit:contributor:uid, _last_edit:changeset, _last_edit:timestamp, _version_number, _backend](#_last_editcontributor,-_last_edit:contributor:uid,-_last_edit:changeset,-_last_edit:timestamp,-_version_number,-_backend) @@ -27,7 +29,9 @@ + [memberships](#memberships) + [get](#get) - Metatags are extra tags available, in order to display more data or to give better questions. + + +Metatags are extra tags available, in order to display more data or to give better questions. The are calculated automatically on every feature when the data arrives in the webbrowser. This document gives an overview of the available metatags. @@ -104,7 +108,7 @@ The country code of the property (with latlon2country) -### _isOpen, _isOpen:description +### _isOpen @@ -160,7 +164,9 @@ Rewrites tags from 'generic_key:both:property' as 'generic_key:left:property' an Adds the geometry type as property. This is identical to the GoeJson geometry type and is one of `Point`,`LineString`, `Polygon` and exceptionally `MultiPolygon` or `MultiLineString` - + + + Calculating tags with Javascript ---------------------------------- diff --git a/Docs/Development_deployment.md b/Docs/Development_deployment.md index 30e14a4528..4dea0b8809 100644 --- a/Docs/Development_deployment.md +++ b/Docs/Development_deployment.md @@ -33,7 +33,6 @@ To develop and build MapComplete, you - You can [use asdf to manage your runtime versions](https://asdf-vm.com/). 0. Install `npm`. Linux: `sudo apt install npm` (or your favourite package manager), Windows: install nodeJS: https://nodejs.org/en/download/ -0. On iOS, install `wget` (`brew install wget`) 0. Run `npm run init` which … - runs `npm install` - generates some additional dependencies and files diff --git a/Docs/Layers/address.md b/Docs/Layers/address.md new file mode 100644 index 0000000000..213b8ffc97 --- /dev/null +++ b/Docs/Layers/address.md @@ -0,0 +1,115 @@ + + + address +========= + + + + + +Addresses + + + + +## Table of contents + +1. [address](#address) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [housenumber](#housenumber) + + [street](#street) + + [fixme](#fixme) + + + + + + - This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_3_street_names) + + +[Go to the source code](../assets/layers/address/address.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - addr:housenumber~^..*$|addr:street~^..*$|ref:inspireid~^..*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/addr:housenumber#values) [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:street%3D) +[](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D) + + + + +### housenumber + + + +The question is **What is the number of this house?** + +This rendering asks information about the property [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) +This is rendered with `The housenumber is {addr:housenumber}` + + + + - **This building has no house number** corresponds with nohousenumber=yes + + + + +### street + + + +The question is **What street is this address located in?** + +This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) +This is rendered with `This address is in street {addr:street}` + + + + - **Located in {_closest_street:0:name}** corresponds with addr:street= + - **Located in {_closest_street:1:name}** corresponds with addr:street= + - **Located in {_closest_street:2:name}** corresponds with addr:street= + + + + +### fixme + + + +The question is **What should be fixed here? Please explain** + +This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) +This is rendered with `Fixme description{fixme}` + + + + - **No fixme - write something here to explain complicated cases** corresponds with + + +This document is autogenerated from assets/layers/address/address.json \ No newline at end of file diff --git a/Docs/Layers/all_streets.md b/Docs/Layers/all_streets.md new file mode 100644 index 0000000000..893d98a6c8 --- /dev/null +++ b/Docs/Layers/all_streets.md @@ -0,0 +1,92 @@ + + + all_streets +============= + + + + + + + + +## Table of contents + +1. [all_streets](#all_streets) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [lit](#lit) + + + + + + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + + + +#### Themes using this layer + + + + + + - [cyclestreets](https://mapcomplete.osm.be/cyclestreets) + - [street_lighting](https://mapcomplete.osm.be/street_lighting) + + +[Go to the source code](../assets/layers/all_streets/all_streets.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway!~^$ + - service!~^driveway$ + - highway!~^platform$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7) + + + + +### lit + + + +The question is **Is this street lit?** + + + + + + - **This street is lit** corresponds with lit=yes + - **This street is not lit** corresponds with lit=no + - **This street is lit at night** corresponds with lit=sunset-sunrise_This option cannot be chosen as answer_ + - **This street is lit 24/7** corresponds with lit=24/7 + + +This document is autogenerated from assets/layers/all_streets/all_streets.json \ No newline at end of file diff --git a/Docs/Layers/ambulancestation.md b/Docs/Layers/ambulancestation.md new file mode 100644 index 0000000000..721a0f7b6c --- /dev/null +++ b/Docs/Layers/ambulancestation.md @@ -0,0 +1,160 @@ + + + ambulancestation +================== + + + + + +An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies. + + + + +## Table of contents + +1. [ambulancestation](#ambulancestation) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [ambulance-name](#ambulance-name) + + [ambulance-street](#ambulance-street) + + [ambulance-place](#ambulance-place) + + [ambulance-agency](#ambulance-agency) + + [ambulance-operator-type](#ambulance-operator-type) + + [images](#images) + + + + + + + + + + +#### Themes using this layer + + + + + + - [hailhydrant](https://mapcomplete.osm.be/hailhydrant) + + +[Go to the source code](../assets/layers/ambulancestation/ambulancestation.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - emergency=ambulance_station + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate) + + + + +### ambulance-name + + + +The question is **What is the name of this ambulance station?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `This station is called {name}.` + + + +### ambulance-street + + + +The question is ** What is the street name where the station located?** + +This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) +This is rendered with `This station is along a highway called {addr:street}.` + + + +### ambulance-place + + + +The question is **Where is the station located? (e.g. name of neighborhood, villlage, or town)** + +This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) +This is rendered with `This station is found within {addr:place}.` + + + +### ambulance-agency + + + +The question is **What agency operates this station?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `This station is operated by {operator}.` + + + + + + + + +### ambulance-operator-type + + + +The question is **How is the station operator classified?** + +This rendering asks information about the property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) +This is rendered with `The operator is a(n) {operator:type} entity.` + + + + - **The station is operated by the government.** corresponds with operator:type=government + - **The station is operated by a community-based, or informal organization.** corresponds with operator:type=community + - **The station is operated by a formal group of volunteers.** corresponds with operator:type=ngo + - **The station is privately operated.** corresponds with operator:type=private + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/ambulancestation/ambulancestation.json \ No newline at end of file diff --git a/Docs/Layers/artwork.md b/Docs/Layers/artwork.md new file mode 100644 index 0000000000..5846931e81 --- /dev/null +++ b/Docs/Layers/artwork.md @@ -0,0 +1,150 @@ + + + artwork +========= + + + + + +Diverse pieces of artwork + + + + +## Table of contents + +1. [artwork](#artwork) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [artwork-artwork_type](#artwork-artwork_type) + + [artwork-artist_name](#artwork-artist_name) + + [artwork-website](#artwork-website) + + [artwork-wikidata](#artwork-wikidata) + + + + + + + + + + +#### Themes using this layer + + + + + + - [artwork](https://mapcomplete.osm.be/artwork) + + +[Go to the source code](../assets/layers/artwork/artwork.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - tourism=artwork + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/artwork_type#values) [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) | [string](../SpecialInputElements.md#string) | [architecture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Darchitecture) [mural](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dmural) [painting](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dpainting) [sculpture](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dsculpture) [statue](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstatue) [bust](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dbust) [stone](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dstone) [installation](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dinstallation) [graffiti](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dgraffiti) [relief](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Drelief) [azulejo](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dazulejo) [tilework](https://wiki.openstreetmap.org/wiki/Tag:artwork_type%3Dtilework) +[](https://taginfo.openstreetmap.org/keys/artist_name#values) [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### artwork-artwork_type + + + +The question is **What is the type of this artwork?** + +This rendering asks information about the property [artwork_type](https://wiki.openstreetmap.org/wiki/Key:artwork_type) +This is rendered with `This is a {artwork_type}` + + + + - **Architecture** corresponds with artwork_type=architecture + - **Mural** corresponds with artwork_type=mural + - **Painting** corresponds with artwork_type=painting + - **Sculpture** corresponds with artwork_type=sculpture + - **Statue** corresponds with artwork_type=statue + - **Bust** corresponds with artwork_type=bust + - **Stone** corresponds with artwork_type=stone + - **Installation** corresponds with artwork_type=installation + - **Graffiti** corresponds with artwork_type=graffiti + - **Relief** corresponds with artwork_type=relief + - **Azulejo (Spanish decorative tilework)** corresponds with artwork_type=azulejo + - **Tilework** corresponds with artwork_type=tilework + + + + +### artwork-artist_name + + + +The question is **Which artist created this?** + +This rendering asks information about the property [artist_name](https://wiki.openstreetmap.org/wiki/Key:artist_name) +This is rendered with `Created by {artist_name}` + + + +### artwork-website + + + +The question is **Is there a website with more information about this artwork?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `More information on this website` + + + +### artwork-wikidata + + + +The question is **Which Wikidata-entry corresponds with this artwork?** + +This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) +This is rendered with `Corresponds with {wikidata}` + +This document is autogenerated from assets/layers/artwork/artwork.json \ No newline at end of file diff --git a/Docs/Layers/assen.md b/Docs/Layers/assen.md new file mode 100644 index 0000000000..763f714c5c --- /dev/null +++ b/Docs/Layers/assen.md @@ -0,0 +1,61 @@ + + + assen +======= + + + + + + + + +## Table of contents + +1. [assen](#assen) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [all_tags](#all_tags) + + + + + + - This layer is loaded from an external source, namely `https://robinlinde.github.io/tiles/assen_street_lighting/{z}/{x}/{y}.json` + - This layer will automatically load [street_lamps](./street_lamps.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_osm_street_lamp) + + +[Go to the source code](../assets/layers/assen/assen.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - Lichtmastnummer~^..*$ + + + + + Supported attributes +---------------------- + + + + + +### all_tags + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/assen/assen.json \ No newline at end of file diff --git a/Docs/Layers/barrier.md b/Docs/Layers/barrier.md new file mode 100644 index 0000000000..aff864247d --- /dev/null +++ b/Docs/Layers/barrier.md @@ -0,0 +1,201 @@ + + + barrier +========= + + + + + +Obstacles while cycling, such as bollards and cycle barriers + + + + +## Table of contents + +1. [barrier](#barrier) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [bicycle=yes/no](#bicycle=yesno) + + [barrier_type](#barrier_type) + + [Bollard type](#bollard-type) + + [Cycle barrier type](#cycle-barrier-type) + + [MaxWidth](#maxwidth) + + [Space between barrier (cyclebarrier)](#space-between-barrier-(cyclebarrier)) + + [Width of opening (cyclebarrier)](#width-of-opening-(cyclebarrier)) + + [Overlap (cyclebarrier)](#overlap-(cyclebarrier)) + + + + + + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) + + + + +#### Themes using this layer + + + + + + - [cycle_infra](https://mapcomplete.osm.be/cycle_infra) + + +[Go to the source code](../assets/layers/barrier/barrier.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - barrier=bollard|barrier=cycle_barrier + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/bicycle#values) [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) +[](https://taginfo.openstreetmap.org/keys/barrier#values) [barrier](https://wiki.openstreetmap.org/wiki/Key:barrier) | Multiple choice | [bollard](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dbollard) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Tag:barrier%3Dcycle_barrier) +[](https://taginfo.openstreetmap.org/keys/bollard#values) [bollard](https://wiki.openstreetmap.org/wiki/Key:bollard) | Multiple choice | [removable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dremovable) [fixed](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfixed) [foldable](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dfoldable) [flexible](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Dflexible) [rising](https://wiki.openstreetmap.org/wiki/Tag:bollard%3Drising) +[](https://taginfo.openstreetmap.org/keys/cycle_barrier#values) [cycle_barrier](https://wiki.openstreetmap.org/wiki/Key:cycle_barrier) | Multiple choice | [single](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsingle) [double](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Ddouble) [triple](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dtriple) [squeeze](https://wiki.openstreetmap.org/wiki/Tag:cycle_barrier%3Dsqueeze) +[](https://taginfo.openstreetmap.org/keys/maxwidth:physical#values) [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) | [length](../SpecialInputElements.md#length) | +[](https://taginfo.openstreetmap.org/keys/width:separation#values) [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) | [length](../SpecialInputElements.md#length) | +[](https://taginfo.openstreetmap.org/keys/width:opening#values) [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) | [length](../SpecialInputElements.md#length) | +[](https://taginfo.openstreetmap.org/keys/overlap#values) [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) | [length](../SpecialInputElements.md#length) | + + + + +### bicycle=yes/no + + + +The question is **Can a bicycle go past this barrier?** + + + + + + - **A cyclist can go past this.** corresponds with bicycle=yes + - **A cyclist can not go past this.** corresponds with bicycle=no + + + + +### barrier_type + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **This is a single bollard in the road** corresponds with barrier=bollard + - **This is a cycle barrier slowing down cyclists** corresponds with barrier=cycle_barrier + + + + +### Bollard type + + + +The question is **What kind of bollard is this?** + + + + + + - **Removable bollard** corresponds with bollard=removable + - **Fixed bollard** corresponds with bollard=fixed + - **Bollard that can be folded down** corresponds with bollard=foldable + - **Flexible bollard, usually plastic** corresponds with bollard=flexible + - **Rising bollard** corresponds with bollard=rising + + + + +### Cycle barrier type + + + +The question is **What kind of cycling barrier is this?** + + + + + + - **Single, just two barriers with a space inbetween ** corresponds with cycle_barrier=single + - **Double, two barriers behind each other ** corresponds with cycle_barrier=double + - **Triple, three barriers behind each other ** corresponds with cycle_barrier=triple + - **Squeeze gate, gap is smaller at top, than at the bottom ** corresponds with cycle_barrier=squeeze + + + + +### MaxWidth + + + +The question is **How wide is the gap left over besides the barrier?** + +This rendering asks information about the property [maxwidth:physical](https://wiki.openstreetmap.org/wiki/Key:maxwidth:physical) +This is rendered with `Maximum width: {maxwidth:physical} m` + + + +### Space between barrier (cyclebarrier) + + + +The question is **How much space is there between the barriers (along the length of the road)?** + +This rendering asks information about the property [width:separation](https://wiki.openstreetmap.org/wiki/Key:width:separation) +This is rendered with `Space between barriers (along the length of the road): {width:separation} m` + + + +### Width of opening (cyclebarrier) + + + +The question is **How wide is the smallest opening next to the barriers?** + +This rendering asks information about the property [width:opening](https://wiki.openstreetmap.org/wiki/Key:width:opening) +This is rendered with `Width of opening: {width:opening} m` + + + +### Overlap (cyclebarrier) + + + +The question is **How much overlap do the barriers have?** + +This rendering asks information about the property [overlap](https://wiki.openstreetmap.org/wiki/Key:overlap) +This is rendered with `Overlap: {overlap} m` + +This document is autogenerated from assets/layers/barrier/barrier.json \ No newline at end of file diff --git a/Docs/Layers/bench.md b/Docs/Layers/bench.md new file mode 100644 index 0000000000..fbd91ec9d3 --- /dev/null +++ b/Docs/Layers/bench.md @@ -0,0 +1,192 @@ + + + bench +======= + + + + + +A bench is a wooden, metal, stone, ... surface where a human can sit. This layers visualises them and asks a few questions about them. + + + + +## Table of contents + +1. [bench](#bench) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [bench-backrest](#bench-backrest) + + [bench-seats](#bench-seats) + + [bench-material](#bench-material) + + [bench-direction](#bench-direction) + + [bench-colour](#bench-colour) + + [bench-survey:date](#bench-surveydate) + + + + + + + + + + +#### Themes using this layer + + + + + + - [benches](https://mapcomplete.osm.be/benches) + + +[Go to the source code](../assets/layers/bench/bench.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=bench + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/backrest#values) [backrest](https://wiki.openstreetmap.org/wiki/Key:backrest) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:backrest%3Dno) +[](https://taginfo.openstreetmap.org/keys/seats#values) [seats](https://wiki.openstreetmap.org/wiki/Key:seats) | [nat](../SpecialInputElements.md#nat) | +[](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [metal](https://wiki.openstreetmap.org/wiki/Tag:material%3Dmetal) [stone](https://wiki.openstreetmap.org/wiki/Tag:material%3Dstone) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) [plastic](https://wiki.openstreetmap.org/wiki/Tag:material%3Dplastic) [steel](https://wiki.openstreetmap.org/wiki/Tag:material%3Dsteel) +[](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | +[](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [brown](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dbrown) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [gray](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgray) [white](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dwhite) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [black](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblack) [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) +[](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### bench-backrest + + + +The question is **Does this bench have a backrest?** + + + + + + - **Backrest: Yes** corresponds with backrest=yes + - **Backrest: No** corresponds with backrest=no + + + + +### bench-seats + + + +The question is **How many seats does this bench have?** + +This rendering asks information about the property [seats](https://wiki.openstreetmap.org/wiki/Key:seats) +This is rendered with `{seats} seats` + + + +### bench-material + + + +The question is **What is the bench (seating) made from?** + +This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material) +This is rendered with `Material: {material}` + + + + - **Material: wood** corresponds with material=wood + - **Material: metal** corresponds with material=metal + - **Material: stone** corresponds with material=stone + - **Material: concrete** corresponds with material=concrete + - **Material: plastic** corresponds with material=plastic + - **Material: steel** corresponds with material=steel + + + + +### bench-direction + + + +The question is **In which direction are you looking when sitting on the bench?** + +This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction) +This is rendered with `When sitting on the bench, one looks towards {direction}°.` + + + +### bench-colour + + + +The question is **Which colour does this bench have?** + +This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour) +This is rendered with `Colour: {colour}` + + + + - **Colour: brown** corresponds with colour=brown + - **Colour: green** corresponds with colour=green + - **Colour: gray** corresponds with colour=gray + - **Colour: white** corresponds with colour=white + - **Colour: red** corresponds with colour=red + - **Colour: black** corresponds with colour=black + - **Colour: blue** corresponds with colour=blue + - **Colour: yellow** corresponds with colour=yellow + + + + +### bench-survey:date + + + +The question is **When was this bench last surveyed?** + +This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) +This is rendered with `This bench was last surveyed on {survey:date}` + + + + - **Surveyed today!** corresponds with survey:date= + + +This document is autogenerated from assets/layers/bench/bench.json \ No newline at end of file diff --git a/Docs/Layers/bench_at_pt.md b/Docs/Layers/bench_at_pt.md new file mode 100644 index 0000000000..4653d1311c --- /dev/null +++ b/Docs/Layers/bench_at_pt.md @@ -0,0 +1,114 @@ + + + bench_at_pt +============= + + + + + +A layer showing all public-transport-stops which do have a bench + + + + +## Table of contents + +1. [bench_at_pt](#bench_at_pt) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [bench_at_pt-name](#bench_at_pt-name) + + [bench_at_pt-bench_type](#bench_at_pt-bench_type) + + + + + + + + + + +#### Themes using this layer + + + + + + - [benches](https://mapcomplete.osm.be/benches) + + +[Go to the source code](../assets/layers/bench_at_pt/bench_at_pt.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - bench=yes|bench=stand_up_bench + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/bench#values) [bench](https://wiki.openstreetmap.org/wiki/Key:bench) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dyes) [stand_up_bench](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dstand_up_bench) [no](https://wiki.openstreetmap.org/wiki/Tag:bench%3Dno) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### bench_at_pt-name + + + +_This tagrendering has no question and is thus read-only_ + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `{name}` + + + +### bench_at_pt-bench_type + + + +The question is **What kind of bench is this?** + + + + + + - **There is a normal, sit-down bench here** corresponds with bench=yes + - **Stand up bench** corresponds with bench=stand_up_bench + - **There is no bench here** corresponds with bench=no + + +This document is autogenerated from assets/layers/bench_at_pt/bench_at_pt.json \ No newline at end of file diff --git a/Docs/Layers/bicycle_library.md b/Docs/Layers/bicycle_library.md new file mode 100644 index 0000000000..778bd3d45d --- /dev/null +++ b/Docs/Layers/bicycle_library.md @@ -0,0 +1,214 @@ + + + bicycle_library +================= + + + + + +A facility where bicycles can be lent for longer period of times + + + + +## Table of contents + +1. [bicycle_library](#bicycle_library) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [bicycle_library-name](#bicycle_library-name) + + [website](#website) + + [phone](#phone) + + [email](#email) + + [opening_hours](#opening_hours) + + [bicycle_library-charge](#bicycle_library-charge) + + [bicycle-library-target-group](#bicycle-library-target-group) + + [description](#description) + + + + + + + + + + +#### Themes using this layer + + + + + + - [bicyclelib](https://mapcomplete.osm.be/bicyclelib) + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + + +[Go to the source code](../assets/layers/bicycle_library/bicycle_library.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=bicycle_library + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) [€20warranty + €20/year](https://wiki.openstreetmap.org/wiki/Tag:charge%3D€20warranty + €20/year) +[](https://taginfo.openstreetmap.org/keys/bicycle_library:for#values) [bicycle_library:for](https://wiki.openstreetmap.org/wiki/Key:bicycle_library:for) | Multiple choice | [child](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dchild) [adult](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Dadult) [disabled](https://wiki.openstreetmap.org/wiki/Tag:bicycle_library:for%3Ddisabled) +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### bicycle_library-name + + + +The question is **What is the name of this bicycle library?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `This bicycle library is called {name}` + + + +### website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + + - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + + +### phone + + + +The question is **What is the phone number of {name}?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + + - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + + +### email + + + +The question is **What is the email address of {name}?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + + - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + + +### opening_hours + + + +The question is **What are the opening hours of {name}?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + + + +### bicycle_library-charge + + + +The question is **How much does lending a bicycle cost?** + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) +This is rendered with `Lending a bicycle costs {charge}` + + + + - **Lending a bicycle is free** corresponds with fee=no + - **Lending a bicycle costs €20/year and €20 warranty** corresponds with fee=yes&charge=€20warranty + €20/year + + + + +### bicycle-library-target-group + + + +The question is **Who can lend bicycles here?** + + + + + + - **Bikes for children available** corresponds with bicycle_library:for=child + - **Bikes for adult available** corresponds with bicycle_library:for=adult + - **Bikes for disabled persons available** corresponds with bicycle_library:for=disabled + + + + +### description + + + +The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `{description}` + +This document is autogenerated from assets/layers/bicycle_library/bicycle_library.json \ No newline at end of file diff --git a/Docs/Layers/bicycle_tube_vending_machine.md b/Docs/Layers/bicycle_tube_vending_machine.md new file mode 100644 index 0000000000..b39d9bcc6c --- /dev/null +++ b/Docs/Layers/bicycle_tube_vending_machine.md @@ -0,0 +1,192 @@ + + + bicycle_tube_vending_machine +============================== + + + + + +A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, ...) + + + + +## Table of contents + +1. [bicycle_tube_vending_machine](#bicycle_tube_vending_machine) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [Still in use?](#still-in-use) + + [bicycle_tube_vending_machine-charge](#bicycle_tube_vending_machine-charge) + + [vending-machine-payment-methods](#vending-machine-payment-methods) + + [bicycle_tube_vending_machine-brand](#bicycle_tube_vending_machine-brand) + + [bicycle_tube_vending_machine-operator](#bicycle_tube_vending_machine-operator) + + [bicycle_tube_vending_maching-other-items](#bicycle_tube_vending_maching-other-items) + + + + + + + + + + +#### Themes using this layer + + + + + + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + + +[Go to the source code](../assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=vending_machine + - vending~^.*bicycle_tube.*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/operational_status#values) [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed) +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Continental](https://wiki.openstreetmap.org/wiki/Tag:brand%3DContinental) [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:brand%3DSchwalbe) +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Schwalbe](https://wiki.openstreetmap.org/wiki/Tag:operator%3DSchwalbe) [Continental](https://wiki.openstreetmap.org/wiki/Tag:operator%3DContinental) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Still in use? + + + +The question is **Is this vending machine still operational?** + +This rendering asks information about the property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) +This is rendered with `The operational status is {operational_status}` + + + + - **This vending machine works** corresponds with + - **This vending machine is broken** corresponds with operational_status=broken + - **This vending machine is closed** corresponds with operational_status=closed + + + + +### bicycle_tube_vending_machine-charge + + + +The question is **How much does a bicycle tube cost?** + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) +This is rendered with `A bicycle tube costs {charge}` + + + +### vending-machine-payment-methods + + + +The question is **How can one pay at this tube vending machine?** + + + + + + - **Payment with coins is possible** corresponds with payment:coins=yesUnselecting this answer will add payment:coins=no + - **Payment with notes is possible** corresponds with payment:notes=yesUnselecting this answer will add payment:notes=no + - **Payment with cards is possible** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + + + + +### bicycle_tube_vending_machine-brand + + + +The question is **Which brand of tubes are sold here?** + +This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand) +This is rendered with `{brand} tubes are sold here` + + + + - **Continental tubes are sold here** corresponds with brand=Continental + - **Schwalbe tubes are sold here** corresponds with brand=Schwalbe + + + + +### bicycle_tube_vending_machine-operator + + + +The question is **Who maintains this vending machine?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `This vending machine is maintained by {operator}` + + + + - **Maintained by Schwalbe** corresponds with operator=Schwalbe + - **Maintained by Continental** corresponds with operator=Continental + + + + +### bicycle_tube_vending_maching-other-items + + + +The question is **Are other bicycle bicycle accessories sold here?** + + + + + + - **Bicycle lights are sold here** corresponds with vending:bicycle_light=yesUnselecting this answer will add vending:bicycle_light=no + - **Gloves are sold here** corresponds with vending:gloves=yesUnselecting this answer will add vending:gloves=no + - **Bicycle repair kits are sold here** corresponds with vending:bicycle_repair_kit=yesUnselecting this answer will add vending:bicycle_repair_kit=no + - **Bicycle pumps are sold here** corresponds with vending:bicycle_pump=yesUnselecting this answer will add vending:bicycle_pump=no + - **Bicycle locks are sold here** corresponds with vending:bicycle_lock=yesUnselecting this answer will add vending:bicycle_lock=no + + +This document is autogenerated from assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json \ No newline at end of file diff --git a/Docs/Layers/bike_cafe.md b/Docs/Layers/bike_cafe.md new file mode 100644 index 0000000000..a7fd7d4e2c --- /dev/null +++ b/Docs/Layers/bike_cafe.md @@ -0,0 +1,202 @@ + + + bike_cafe +=========== + + + + + +A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, ... + + + + +## Table of contents + +1. [bike_cafe](#bike_cafe) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [bike_cafe-name](#bike_cafe-name) + + [bike_cafe-bike-pump](#bike_cafe-bike-pump) + + [bike_cafe-repair-tools](#bike_cafe-repair-tools) + + [bike_cafe-repair-service](#bike_cafe-repair-service) + + [bike_cafe-website](#bike_cafe-website) + + [bike_cafe-phone](#bike_cafe-phone) + + [bike_cafe-email](#bike_cafe-email) + + [bike_cafe-opening_hours](#bike_cafe-opening_hours) + + + + + + + + + + +#### Themes using this layer + + + + + + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + + +[Go to the source code](../assets/layers/bike_cafe/bike_cafe.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=pub|amenity=bar|amenity=cafe|amenity=restaurant + - pub=cycling|pub=bicycle|theme=cycling|theme=bicycle|^service:bicycle:.*$~~^..*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values) [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### bike_cafe-name + + + +The question is **What is the name of this bike cafe?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `This bike cafe is called {name}` + + + +### bike_cafe-bike-pump + + + +The question is **Does this bike cafe offer a bike pump for use by anyone?** + + + + + + - **This bike cafe offers a bike pump for anyone** corresponds with service:bicycle:pump=yes + - **This bike cafe doesn't offer a bike pump for anyone** corresponds with service:bicycle:pump=no + + + + +### bike_cafe-repair-tools + + + +The question is **Are there tools here to repair your own bike?** + + + + + + - **This bike cafe offers tools for DIY repair** corresponds with service:bicycle:diy=yes + - **This bike cafe doesn't offer tools for DIY repair** corresponds with service:bicycle:diy=no + + + + +### bike_cafe-repair-service + + + +The question is **Does this bike cafe repair bikes?** + + + + + + - **This bike cafe repairs bikes** corresponds with service:bicycle:repair=yes + - **This bike cafe doesn't repair bikes** corresponds with service:bicycle:repair=no + + + + +### bike_cafe-website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + +### bike_cafe-phone + + + +The question is **What is the phone number of {name}?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + +### bike_cafe-email + + + +The question is **What is the email address of {name}?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + +### bike_cafe-opening_hours + + + +The question is **When it this bike café opened?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `{opening_hours_table(opening_hours)}` + +This document is autogenerated from assets/layers/bike_cafe/bike_cafe.json \ No newline at end of file diff --git a/Docs/Layers/bike_cleaning.md b/Docs/Layers/bike_cleaning.md new file mode 100644 index 0000000000..0450d9a100 --- /dev/null +++ b/Docs/Layers/bike_cleaning.md @@ -0,0 +1,122 @@ + + + bike_cleaning +=============== + + + + + +A layer showing facilities where one can clean their bike + + + + +## Table of contents + +1. [bike_cleaning](#bike_cleaning) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaning-servicebicycle:cleaning:charge) + + [bike_cleaning-charge](#bike_cleaning-charge) + + + + + + + + + + +#### Themes using this layer + + + + + + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + + +[Go to the source code](../assets/layers/bike_cleaning/bike_cleaning.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - service:bicycle:cleaning=yes|service:bicycle:cleaning=diy|amenity=bicycle_wash + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### bike_cleaning-service:bicycle:cleaning:charge + + + +The question is **How much does it cost to use the cleaning service?** + +This rendering asks information about the property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) +This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}` + + + + - **The cleaning service is free to use** corresponds with service:bicycle:cleaning:fee=no&service:bicycle:cleaning:charge= + - **Free to use** corresponds with service:bicycle:cleaning:fee=no_This option cannot be chosen as answer_ + - **The cleaning service has a fee, but the amount is not known** corresponds with service:bicycle:cleaning:fee=yes + + + + +### bike_cleaning-charge + + + +The question is **How much does it cost to use the cleaning service?** + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) +This is rendered with `Using the cleaning service costs {charge}` + + + + - **Free to use cleaning service** corresponds with fee=no&charge= + - **Free to use** corresponds with fee=no_This option cannot be chosen as answer_ + - **The cleaning service has a fee** corresponds with fee=yes + + +This document is autogenerated from assets/layers/bike_cleaning/bike_cleaning.json \ No newline at end of file diff --git a/Docs/Layers/bike_parking.md b/Docs/Layers/bike_parking.md new file mode 100644 index 0000000000..169b202471 --- /dev/null +++ b/Docs/Layers/bike_parking.md @@ -0,0 +1,211 @@ + + + bike_parking +============== + + + + + +A layer showing where you can park your bike + + + + +## Table of contents + +1. [bike_parking](#bike_parking) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [Bicycle parking type](#bicycle-parking-type) + + [Underground?](#underground) + + [Is covered?](#is-covered) + + [Capacity](#capacity) + + [Access](#access) + + [Cargo bike spaces?](#cargo-bike-spaces) + + [Cargo bike capacity?](#cargo-bike-capacity) + + + + + + + + + + +#### Themes using this layer + + + + + + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + + +[Go to the source code](../assets/layers/bike_parking/bike_parking.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=bicycle_parking + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/bicycle_parking#values) [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) | [string](../SpecialInputElements.md#string) | [stands](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dstands) [wall_loops](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dwall_loops) [handlebar_holder](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dhandlebar_holder) [rack](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Drack) [two_tier](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dtwo_tier) [shed](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dshed) [bollard](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dbollard) [floor](https://wiki.openstreetmap.org/wiki/Tag:bicycle_parking%3Dfloor) +[](https://taginfo.openstreetmap.org/keys/location#values) [location](https://wiki.openstreetmap.org/wiki/Key:location) | Multiple choice | [underground](https://wiki.openstreetmap.org/wiki/Tag:location%3Dunderground) [surface](https://wiki.openstreetmap.org/wiki/Tag:location%3Dsurface) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop) [rooftop](https://wiki.openstreetmap.org/wiki/Tag:location%3Drooftop) +[](https://taginfo.openstreetmap.org/keys/covered#values) [covered](https://wiki.openstreetmap.org/wiki/Key:covered) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:covered%3Dno) +[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) | +[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) +[](https://taginfo.openstreetmap.org/keys/cargo_bike#values) [cargo_bike](https://wiki.openstreetmap.org/wiki/Key:cargo_bike) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dyes) [designated](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Ddesignated) [no](https://wiki.openstreetmap.org/wiki/Tag:cargo_bike%3Dno) +[](https://taginfo.openstreetmap.org/keys/capacity:cargo_bike#values) [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike) | [nat](../SpecialInputElements.md#nat) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Bicycle parking type + + + +The question is **What is the type of this bicycle parking?** + +This rendering asks information about the property [bicycle_parking](https://wiki.openstreetmap.org/wiki/Key:bicycle_parking) +This is rendered with `This is a bicycle parking of the type: {bicycle_parking}` + + + + - **Staple racks ** corresponds with bicycle_parking=stands + - **Wheel rack/loops ** corresponds with bicycle_parking=wall_loops + - **Handlebar holder ** corresponds with bicycle_parking=handlebar_holder + - **Rack ** corresponds with bicycle_parking=rack + - **Two-tiered ** corresponds with bicycle_parking=two_tier + - **Shed ** corresponds with bicycle_parking=shed + - **Bollard ** corresponds with bicycle_parking=bollard + - **An area on the floor which is marked for bicycle parking** corresponds with bicycle_parking=floor + + + + +### Underground? + + + +The question is **What is the relative location of this bicycle parking?** + + + + + + - **Underground parking** corresponds with location=underground + - **Surface level parking** corresponds with location=surface + - **Rooftop parking** corresponds with location=rooftop + - **Surface level parking** corresponds with _This option cannot be chosen as answer_ + - **Rooftop parking** corresponds with location=rooftop + + + + +### Is covered? + + + +The question is **Is this parking covered? Also select "covered" for indoor parkings.** + + + + + + - **This parking is covered (it has a roof)** corresponds with covered=yes + - **This parking is not covered** corresponds with covered=no + + + + +### Capacity + + + +The question is **How many bicycles fit in this bicycle parking (including possible cargo bicycles)?** + +This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) +This is rendered with `Place for {capacity} bikes` + + + +### Access + + + +The question is **Who can use this bicycle parking?** + +This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) +This is rendered with `{access}` + + + + - **Publicly accessible** corresponds with access=yes + - **Access is primarily for visitors to a business** corresponds with access=customers + - **Access is limited to members of a school, company or organisation** corresponds with access=private + + + + +### Cargo bike spaces? + + + +The question is **Does this bicycle parking have spots for cargo bikes?** + + + + + + - **This parking has room for cargo bikes** corresponds with cargo_bike=yes + - **This parking has designated (official) spots for cargo bikes.** corresponds with cargo_bike=designated + - **You're not allowed to park cargo bikes** corresponds with cargo_bike=no + + + + +### Cargo bike capacity? + + + +The question is **How many cargo bicycles fit in this bicycle parking?** + +This rendering asks information about the property [capacity:cargo_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:cargo_bike) +This is rendered with `This parking fits {capacity:cargo_bike} cargo bikes` + +This document is autogenerated from assets/layers/bike_parking/bike_parking.json \ No newline at end of file diff --git a/Docs/Layers/bike_repair_station.md b/Docs/Layers/bike_repair_station.md new file mode 100644 index 0000000000..65df6f1487 --- /dev/null +++ b/Docs/Layers/bike_repair_station.md @@ -0,0 +1,307 @@ + + + bike_repair_station +===================== + + + + + +A layer showing bicycle pumps and bicycle repair tool stands + + + + +## Table of contents + +1. [bike_repair_station](#bike_repair_station) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [bike_repair_station-available-services](#bike_repair_station-available-services) + + [bike_repair_station-operator](#bike_repair_station-operator) + + [bike_repair_station-email](#bike_repair_station-email) + + [bike_repair_station-phone](#bike_repair_station-phone) + + [bike_repair_station-opening_hours](#bike_repair_station-opening_hours) + + [bike_repair_station-bike-chain-tool](#bike_repair_station-bike-chain-tool) + + [bike_repair_station-bike-stand](#bike_repair_station-bike-stand) + + [Operational status](#operational-status) + + [Email maintainer](#email-maintainer) + + [bike_repair_station-valves](#bike_repair_station-valves) + + [bike_repair_station-electrical_pump](#bike_repair_station-electrical_pump) + + [bike_repair_station-manometer](#bike_repair_station-manometer) + + [level](#level) + + + + + + + + + + +#### Themes using this layer + + + + + + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + + +[Go to the source code](../assets/layers/bike_repair_station/bike_repair_station.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=bicycle_repair_station + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/service:bicycle:tools#values) [service:bicycle:tools](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:tools) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:tools%3Dyes) +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [De Fietsambassade Gent](https://wiki.openstreetmap.org/wiki/Tag:operator%3DDe Fietsambassade Gent) +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:chain_tool#values) [service:bicycle:chain_tool](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:chain_tool) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:chain_tool%3Dno) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:stand#values) [service:bicycle:stand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:stand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:stand%3Dno) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:pump:operational_status#values) [service:bicycle:pump:operational_status](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump:operational_status) | Multiple choice | [broken](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Dbroken) [](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3D) +[](https://taginfo.openstreetmap.org/keys/valves#values) [valves](https://wiki.openstreetmap.org/wiki/Key:valves) | [string](../SpecialInputElements.md#string) | [sclaverand](https://wiki.openstreetmap.org/wiki/Tag:valves%3Dsclaverand) [dunlop](https://wiki.openstreetmap.org/wiki/Tag:valves%3Ddunlop) [schrader](https://wiki.openstreetmap.org/wiki/Tag:valves%3Dschrader) +[](https://taginfo.openstreetmap.org/keys/manual#values) [manual](https://wiki.openstreetmap.org/wiki/Key:manual) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manual%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manual%3Dno) +[](https://taginfo.openstreetmap.org/keys/manometer#values) [manometer](https://wiki.openstreetmap.org/wiki/Key:manometer) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dno) [broken](https://wiki.openstreetmap.org/wiki/Tag:manometer%3Dbroken) +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### bike_repair_station-available-services + + + +The question is **Which services are available at this bike station?** + + + + + + - **There is only a pump present** corresponds with service:bicycle:tools=no&service:bicycle:pump=yes + - **There are only tools (screwdrivers, pliers...) present** corresponds with service:bicycle:tools=yes&service:bicycle:pump=no + - **There are both tools and a pump present** corresponds with service:bicycle:tools=yes&service:bicycle:pump=yes + + + + +### bike_repair_station-operator + + + +The question is **Who maintains this cycle pump?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Maintained by {operator}` + + + + - **De Fietsambassade Gent** corresponds with operator=De Fietsambassade Gent + + + + +### bike_repair_station-email + + + +The question is **What is the email address of the maintainer?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + +### bike_repair_station-phone + + + +The question is **What is the phone number of the maintainer?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + +### bike_repair_station-opening_hours + + + +The question is **When is this bicycle repair point open?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `{opening_hours_table()}` + + + + - **Always open** corresponds with opening_hours=24/7 + - **Always open** corresponds with _This option cannot be chosen as answer_ + + + + +### bike_repair_station-bike-chain-tool + + + +The question is **Does this bike repair station have a special tool to repair your bike chain?** + + + + + + - **There is a chain tool** corresponds with service:bicycle:chain_tool=yes + - **There is no chain tool** corresponds with service:bicycle:chain_tool=no + + + + +### bike_repair_station-bike-stand + + + +The question is **Does this bike station have a hook to hang your bike on or a stand to raise it?** + + + + + + - **There is a hook or stand** corresponds with service:bicycle:stand=yes + - **There is no hook or stand** corresponds with service:bicycle:stand=no + + + + +### Operational status + + + +The question is **Is the bike pump still operational?** + + + + + + - **The bike pump is broken** corresponds with service:bicycle:pump:operational_status=broken + - **The bike pump is operational** corresponds with + + + + +### Email maintainer + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### bike_repair_station-valves + + + +The question is **What valves are supported?** + +This rendering asks information about the property [valves](https://wiki.openstreetmap.org/wiki/Key:valves) +This is rendered with `This pump supports the following valves: {valves}` + + + + - **Sclaverand (also known as Presta)** corresponds with valves=sclaverand + - **Dunlop** corresponds with valves=dunlop + - **Schrader (cars)** corresponds with valves=schrader + + + + +### bike_repair_station-electrical_pump + + + +The question is **Is this an electric bike pump?** + + + + + + - **Manual pump** corresponds with manual=yes + - **Electrical pump** corresponds with manual=no + + + + +### bike_repair_station-manometer + + + +The question is **Does the pump have a pressure indicator or manometer?** + + + + + + - **There is a manometer** corresponds with manometer=yes + - **There is no manometer** corresponds with manometer=no + - **There is manometer but it is broken** corresponds with manometer=broken + + + + +### level + + + +The question is **On what level is this feature located?** + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) +This is rendered with `Located on the {level}th floor` + + + + - **Located underground** corresponds with location=underground_This option cannot be chosen as answer_ + - **Located on the ground floor** corresponds with level=0 + - **Located on the ground floor** corresponds with _This option cannot be chosen as answer_ + - **Located on the first floor** corresponds with level=1 + + +This document is autogenerated from assets/layers/bike_repair_station/bike_repair_station.json \ No newline at end of file diff --git a/Docs/Layers/bike_shop.md b/Docs/Layers/bike_shop.md new file mode 100644 index 0000000000..5cc92326f7 --- /dev/null +++ b/Docs/Layers/bike_shop.md @@ -0,0 +1,336 @@ + + + bike_shop +=========== + + + + + +A shop specifically selling bicycles or related items + + + + +## Table of contents + +1. [bike_shop](#bike_shop) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [bike_shop-is-bicycle_shop](#bike_shop-is-bicycle_shop) + + [bike_shop-name](#bike_shop-name) + + [bike_shop-website](#bike_shop-website) + + [bike_shop-phone](#bike_shop-phone) + + [bike_shop-email](#bike_shop-email) + + [bike_shop-opening_hours](#bike_shop-opening_hours) + + [description](#description) + + [bike_shop-access](#bike_shop-access) + + [bike_repair_sells-bikes](#bike_repair_sells-bikes) + + [bike_repair_repairs-bikes](#bike_repair_repairs-bikes) + + [bike_repair_rents-bikes](#bike_repair_rents-bikes) + + [bike_repair_second-hand-bikes](#bike_repair_second-hand-bikes) + + [bike_repair_bike-pump-service](#bike_repair_bike-pump-service) + + [bike_repair_tools-service](#bike_repair_tools-service) + + [bike_repair_bike-wash](#bike_repair_bike-wash) + + [bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaning-servicebicycle:cleaning:charge) + + + + + + + + + + +#### Themes using this layer + + + + + + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + + +[Go to the source code](../assets/layers/bike_shop/bike_shop.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - shop=bicycle|amenity=bicycle_rental|shop=sports&service:bicycle:retail!~^no$&service:bicycle:repair!~^no$&sport=bicycle|sport=cycling| + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/service:bicycle:retail#values) [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:repair#values) [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:rental#values) [service:bicycle:rental](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:rental) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:rental%3Dno) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:second_hand#values) [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:pump#values) [service:bicycle:pump](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:pump) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump%3Dseparate) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:diy#values) [service:bicycle:diy](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:diy) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:diy%3Donly_sold) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning#values) [service:bicycle:cleaning](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dyes) [diy](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Ddiy) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:cleaning%3Dno) +[](https://taginfo.openstreetmap.org/keys/service:bicycle:cleaning:charge#values) [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) | [string](../SpecialInputElements.md#string) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### bike_shop-is-bicycle_shop + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### bike_shop-name + + + +The question is **What is the name of this bicycle shop?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `This bicycle shop is called {name}` + + + +### bike_shop-website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + +### bike_shop-phone + + + +The question is **What is the phone number of {name}?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + +### bike_shop-email + + + +The question is **What is the email address of {name}?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + +### bike_shop-opening_hours + + + +The question is **When is this shop opened?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `{opening_hours_table(opening_hours)}` + + + +### description + + + +The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `{description}` + + + +### bike_shop-access + + + +_This tagrendering has no question and is thus read-only_ + +This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) +This is rendered with `Enkel voor {access}` + + + +### bike_repair_sells-bikes + + + +The question is **Does this shop sell bikes?** + + + + + + - **This shop sells bikes** corresponds with service:bicycle:retail=yes + - **This shop doesn't sell bikes** corresponds with service:bicycle:retail=no + + + + +### bike_repair_repairs-bikes + + + +The question is **Does this shop repair bikes?** + + + + + + - **This shop repairs bikes** corresponds with service:bicycle:repair=yes + - **This shop doesn't repair bikes** corresponds with service:bicycle:repair=no + - **This shop only repairs bikes bought here** corresponds with service:bicycle:repair=only_sold + - **This shop only repairs bikes of a certain brand** corresponds with service:bicycle:repair=brand + + + + +### bike_repair_rents-bikes + + + +The question is **Does this shop rent out bikes?** + + + + + + - **This shop rents out bikes** corresponds with service:bicycle:rental=yes + - **This shop doesn't rent out bikes** corresponds with service:bicycle:rental=no + + + + +### bike_repair_second-hand-bikes + + + +The question is **Does this shop sell second-hand bikes?** + + + + + + - **This shop sells second-hand bikes** corresponds with service:bicycle:second_hand=yes + - **This shop doesn't sell second-hand bikes** corresponds with service:bicycle:second_hand=no + - **This shop only sells second-hand bikes** corresponds with service:bicycle:second_hand=only + + + + +### bike_repair_bike-pump-service + + + +The question is **Does this shop offer a bike pump for use by anyone?** + + + + + + - **This shop offers a bike pump for anyone** corresponds with service:bicycle:pump=yes + - **This shop doesn't offer a bike pump for anyone** corresponds with service:bicycle:pump=no + - **There is bicycle pump, it is shown as a separate point ** corresponds with service:bicycle:pump=separate + + + + +### bike_repair_tools-service + + + +The question is **Are there tools here to repair your own bike?** + + + + + + - **This shop offers tools for DIY repair** corresponds with service:bicycle:diy=yes + - **This shop doesn't offer tools for DIY repair** corresponds with service:bicycle:diy=no + - **Tools for DIY repair are only available if you bought/hire the bike in the shop** corresponds with service:bicycle:diy=only_sold + + + + +### bike_repair_bike-wash + + + +The question is **Are bicycles washed here?** + + + + + + - **This shop cleans bicycles** corresponds with service:bicycle:cleaning=yes + - **This shop has an installation where one can clean bicycles themselves** corresponds with service:bicycle:cleaning=diy + - **This shop doesn't offer bicycle cleaning** corresponds with service:bicycle:cleaning=no + + + + +### bike_cleaning-service:bicycle:cleaning:charge + + + +The question is **How much does it cost to use the cleaning service?** + +This rendering asks information about the property [service:bicycle:cleaning:charge](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:cleaning:charge) +This is rendered with `Using the cleaning service costs {service:bicycle:cleaning:charge}` + + + + - **The cleaning service is free to use** corresponds with service:bicycle:cleaning:fee=no&service:bicycle:cleaning:charge= + - **Free to use** corresponds with service:bicycle:cleaning:fee=no_This option cannot be chosen as answer_ + - **The cleaning service has a fee, but the amount is not known** corresponds with service:bicycle:cleaning:fee=yes + + +This document is autogenerated from assets/layers/bike_shop/bike_shop.json \ No newline at end of file diff --git a/Docs/Layers/bike_themed_object.md b/Docs/Layers/bike_themed_object.md new file mode 100644 index 0000000000..150c95317c --- /dev/null +++ b/Docs/Layers/bike_themed_object.md @@ -0,0 +1,162 @@ + + + bike_themed_object +==================== + + + + + +A layer with bike-themed objects but who don't match any other layer + + + + +## Table of contents + +1. [bike_themed_object](#bike_themed_object) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [description](#description) + + [website](#website) + + [email](#email) + + [phone](#phone) + + [opening_hours](#opening_hours) + + + + + + + + + + +#### Themes using this layer + + + + + + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + + +[Go to the source code](../assets/layers/bike_themed_object/bike_themed_object.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - theme=bicycle|theme=cycling|sport=cycling|association=cycling|association=bicycle|ngo=cycling|ngo=bicycle|club=bicycle|club=cycling + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### description + + + +The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `{description}` + + + +### website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + + - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + + +### email + + + +The question is **What is the email address of {name}?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + + - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + + +### phone + + + +The question is **What is the phone number of {name}?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + + - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + + +### opening_hours + + + +The question is **What are the opening hours of {name}?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + +This document is autogenerated from assets/layers/bike_themed_object/bike_themed_object.json \ No newline at end of file diff --git a/Docs/Layers/binocular.md b/Docs/Layers/binocular.md new file mode 100644 index 0000000000..b852f25975 --- /dev/null +++ b/Docs/Layers/binocular.md @@ -0,0 +1,113 @@ + + + binocular +=========== + + + + + +Binoculas + + + + +## Table of contents + +1. [binocular](#binocular) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [binocular-charge](#binocular-charge) + + [binocular-direction](#binocular-direction) + + + + + + + + + + +#### Themes using this layer + + + + + + - [binoculars](https://mapcomplete.osm.be/binoculars) + + +[Go to the source code](../assets/layers/binocular/binocular.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=binoculars + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) +[](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### binocular-charge + + + +The question is **How much does one have to pay to use these binoculars?** + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) +This is rendered with `Using these binoculars costs {charge}` + + + + - **Free to use** corresponds with fee=no + + + + +### binocular-direction + + + +The question is **When looking through this binocular, in what direction does one look?** + +This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction) +This is rendered with `Looks towards {direction}°` + +This document is autogenerated from assets/layers/binocular/binocular.json \ No newline at end of file diff --git a/Docs/Layers/birdhide.md b/Docs/Layers/birdhide.md new file mode 100644 index 0000000000..bb001465c2 --- /dev/null +++ b/Docs/Layers/birdhide.md @@ -0,0 +1,141 @@ + + + birdhide +========== + + + + + +Een vogelkijkhut + + + + +## Table of contents + +1. [birdhide](#birdhide) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [bird-hide-shelter-or-wall](#bird-hide-shelter-or-wall) + + [bird-hide-wheelchair](#bird-hide-wheelchair) + + [birdhide-operator](#birdhide-operator) + + + + + + + + + + +#### Themes using this layer + + + + + + - [nature](https://mapcomplete.osm.be/nature) + + +[Go to the source code](../assets/layers/birdhide/birdhide.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=bird_hide + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/building#values) [building](https://wiki.openstreetmap.org/wiki/Key:building) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:building%3D) [yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes) [tower](https://wiki.openstreetmap.org/wiki/Tag:building%3Dtower) +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### bird-hide-shelter-or-wall + + + +The question is **Is dit een kijkwand of kijkhut?** + + + + + + - **Vogelkijkwand** corresponds with shelter=no + - **Vogelkijkhut** corresponds with amenity=shelter&building=yes&shelter=yes + - **Vogelkijktoren** corresponds with building=tower&bird_hide=tower + - **Vogelkijkhut** corresponds with amenity=shelter|building=yes|shelter=yes_This option cannot be chosen as answer_ + + + + +### bird-hide-wheelchair + + + +The question is **Is deze vogelkijkplaats rolstoeltoegankelijk?** + + + + + + - **Er zijn speciale voorzieningen voor rolstoelen** corresponds with wheelchair=designated + - **Een rolstoel raakt er vlot** corresponds with wheelchair=yes + - **Je kan er raken met een rolstoel, maar het is niet makkelijk** corresponds with wheelchair=limited + - **Niet rolstoeltoegankelijk** corresponds with wheelchair=no + + + + +### birdhide-operator + + + +The question is **Wie beheert deze vogelkijkplaats?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Beheer door {operator}` + + + + - **Beheer door Natuurpunt** corresponds with operator=Natuurpunt + - **Beheer door het Agentschap Natuur en Bos ** corresponds with operator=Agentschap Natuur en Bos + + +This document is autogenerated from assets/layers/birdhide/birdhide.json \ No newline at end of file diff --git a/Docs/Layers/brugge.md b/Docs/Layers/brugge.md new file mode 100644 index 0000000000..b1b51ad053 --- /dev/null +++ b/Docs/Layers/brugge.md @@ -0,0 +1,125 @@ + + + brugge +======== + + + + + + + + +## Table of contents + +1. [brugge](#brugge) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [status](#status) + + [has closeby](#has-closeby) + + [openbaar](#openbaar) + + [addr](#addr) + + [oh](#oh) + + + + + + - This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/pietervdvn.github.io/master/aeds_brugge.json` + - This layer will automatically load [defibrillator](./defibrillator.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_osm_aed) + + +[Go to the source code](../assets/layers/brugge/brugge.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - Brugs volgnummer~^..*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/status#values) [status](https://wiki.openstreetmap.org/wiki/Key:status) | Multiple choice | [oud](https://wiki.openstreetmap.org/wiki/Tag:status%3Doud) +[](https://taginfo.openstreetmap.org/keys/Lokaal AED#values) [Lokaal AED](https://wiki.openstreetmap.org/wiki/Key:Lokaal AED) | Multiple choice | + + + + +### status + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **
Dit datapunt is verouderd
** corresponds with status=oud + + + + +### has closeby + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### openbaar + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **Bevindt zich in een openbaar gebouw: {Openbare AED Gebouw} in lokaal {Lokaal AED}** corresponds with Lokaal AED~^..*$ + + + + +### addr + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### oh + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/brugge/brugge.json \ No newline at end of file diff --git a/Docs/Layers/cafe_pub.md b/Docs/Layers/cafe_pub.md new file mode 100644 index 0000000000..9c68c706f2 --- /dev/null +++ b/Docs/Layers/cafe_pub.md @@ -0,0 +1,260 @@ + + + cafe_pub +========== + + + + + +A layer showing cafés and pubs where one can gather around a drink. The layer asks for some relevant questions + + + + +## Table of contents + +1. [cafe_pub](#cafe_pub) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [Name](#name) + + [Classification](#classification) + + [opening_hours](#opening_hours) + + [website](#website) + + [email](#email) + + [phone](#phone) + + [payment-options](#payment-options) + + [wheelchair-access](#wheelchair-access) + + [service:electricity](#serviceelectricity) + + [dog-access](#dog-access) + + + + + + + + + + +#### Themes using this layer + + + + + + - [cafes_and_pubs](https://mapcomplete.osm.be/cafes_and_pubs) + + +[Go to the source code](../assets/layers/cafe_pub/cafe_pub.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=bar|amenity=pub|amenity=cafe|amenity=biergarten + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [pub](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dpub) [bar](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbar) [cafe](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dcafe) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) [biergarten](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dbiergarten) +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno) +[](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Name + + + +The question is **What is the name of this pub?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `This pub is named {name}` + + + +### Classification + + + +The question is **What kind of cafe is this** + + + + + + - **Dit is een bruin café of een kroeg waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk ** corresponds with amenity=pub + - **Dit is een bar waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek** corresponds with amenity=bar + - **Dit is een cafe - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen.** corresponds with amenity=cafe + - **Dit is een restaurant waar men een maaltijd geserveerd krijgt** corresponds with amenity=restaurant + - **Een open ruimte waar bier geserveerd wordt. Typisch in Duitsland** corresponds with amenity=biergarten + + + + +### opening_hours + + + +The question is **What are the opening hours of {name}?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + + + +### website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + + - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + + +### email + + + +The question is **What is the email address of {name}?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + + - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + + +### phone + + + +The question is **What is the phone number of {name}?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + + - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + + +### payment-options + + + +The question is **Which methods of payment are accepted here?** + + + + + + - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no + - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + + + + +### wheelchair-access + + + +The question is **Is this place accessible with a wheelchair?** + + + + + + - **This place is specially adapted for wheelchair users** corresponds with wheelchair=designated + - **This place is easily reachable with a wheelchair** corresponds with wheelchair=yes + - **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with wheelchair=limited + - **This place is not reachable with a wheelchair** corresponds with wheelchair=no + + + + +### service:electricity + + + +The question is **Does this amenity have electrical outlets, available to customers when they are inside?** + + + + + + - **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with service:electricity=yes + - **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with service:electricity=limited + - **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds with service:electricity=ask + - **There are a no domestic sockets available to customers seated indoors** corresponds with service:electricity=no + + + + +### dog-access + + + +The question is **Are dogs allowed in this business?** + + + + + + - **Dogs are allowed** corresponds with dog=yes + - **Dogs are not allowed** corresponds with dog=no + - **Dogs are allowed, but they have to be leashed** corresponds with dog=leashed + - **Dogs are allowed and can run around freely** corresponds with dog=unleashed + + +This document is autogenerated from assets/layers/cafe_pub/cafe_pub.json \ No newline at end of file diff --git a/Docs/Layers/caravansites.md b/Docs/Layers/caravansites.md new file mode 100644 index 0000000000..b65d3b4985 --- /dev/null +++ b/Docs/Layers/caravansites.md @@ -0,0 +1,281 @@ + + + caravansites +============== + + + + + +camper sites + + + + +## Table of contents + +1. [caravansites](#caravansites) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [caravansites-name](#caravansites-name) + + [caravansites-fee](#caravansites-fee) + + [caravansites-charge](#caravansites-charge) + + [caravansites-sanitary-dump](#caravansites-sanitary-dump) + + [caravansites-capacity](#caravansites-capacity) + + [caravansites-internet](#caravansites-internet) + + [caravansites-internet-fee](#caravansites-internet-fee) + + [caravansites-toilets](#caravansites-toilets) + + [caravansites-website](#caravansites-website) + + [caravansites-long-term](#caravansites-long-term) + + [caravansites-description](#caravansites-description) + + [questions](#questions) + + [reviews](#reviews) + + + + + + + + + + +#### Themes using this layer + + + + + + - [campersite](https://mapcomplete.osm.be/campersite) + + +[Go to the source code](../assets/layers/caravansites/caravansites.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - tourism=caravan_site + - permanent_camping!~^only$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/sanitary_dump_station#values) [sanitary_dump_station](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station%3Dno) +[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/internet_access#values) [internet_access](https://wiki.openstreetmap.org/wiki/Key:internet_access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access%3Dno) +[](https://taginfo.openstreetmap.org/keys/internet_access:fee#values) [internet_access:fee](https://wiki.openstreetmap.org/wiki/Key:internet_access:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:internet_access:fee%3Dno) +[](https://taginfo.openstreetmap.org/keys/toilets#values) [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/permanent_camping#values) [permanent_camping](https://wiki.openstreetmap.org/wiki/Key:permanent_camping) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:permanent_camping%3Donly) +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### caravansites-name + + + +The question is **What is this place called?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `This place is called {name}` + + + +### caravansites-fee + + + +The question is **Does this place charge a fee?** + + + + + + - **You need to pay for use** corresponds with fee=yes + - **Can be used for free** corresponds with fee=no + - **Can be used for free** corresponds with fee=no_This option cannot be chosen as answer_ + + + + +### caravansites-charge + + + +The question is **How much does this place charge?** + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) +This is rendered with `This place charges {charge}` + + + +### caravansites-sanitary-dump + + + +The question is **Does this place have a sanitary dump station?** + + + + + + - **This place has a sanitary dump station** corresponds with sanitary_dump_station=yes + - **This place does not have a sanitary dump station** corresponds with sanitary_dump_station=no + + + + +### caravansites-capacity + + + +The question is **How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)** + +This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) +This is rendered with `{capacity} campers can use this place at the same time` + + + +### caravansites-internet + + + +The question is **Does this place provide internet access?** + + + + + + - **There is internet access** corresponds with internet_access=yes + - **There is internet access** corresponds with internet_access=wifi|internet_access=wlan_This option cannot be chosen as answer_ + - **There is no internet access** corresponds with internet_access=no + + + + +### caravansites-internet-fee + + + +The question is **Do you have to pay for the internet access?** + + + + + + - **You need to pay extra for internet access** corresponds with internet_access:fee=yes + - **You do not need to pay extra for internet access** corresponds with internet_access:fee=no + + + + +### caravansites-toilets + + + +The question is **Does this place have toilets?** + + + + + + - **This place has toilets** corresponds with toilets=yes + - **This place does not have toilets** corresponds with toilets=no + + + + +### caravansites-website + + + +The question is **Does this place have a website?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `Official website: {website}` + + + +### caravansites-long-term + + + +The question is **Does this place offer spots for long term rental?** + + + + + + - **Yes, there are some spots for long term rental, but you can also stay on a daily basis** corresponds with permanent_camping=yes + - **No, there are no permanent guests here** corresponds with permanent_camping=no + - **It is only possible to stay here if you have a long term contract(this place will disappear from this map if you choose this)** corresponds with permanent_camping=only + + + + +### caravansites-description + + + +The question is **Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews)** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `More details about this place: {description}` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/caravansites/caravansites.json \ No newline at end of file diff --git a/Docs/Layers/charging_station.md b/Docs/Layers/charging_station.md new file mode 100644 index 0000000000..e3fc9f80c1 --- /dev/null +++ b/Docs/Layers/charging_station.md @@ -0,0 +1,1588 @@ + + + charging_station +================== + + + + + +A charging station + + + + +## Table of contents + +1. [charging_station](#charging_station) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [Type](#type) + + [access](#access) + + [capacity](#capacity) + + [Available_charging_stations (generated)](#available_charging_stations-(generated)) + + [plugs-0](#plugs-0) + + [plugs-1](#plugs-1) + + [plugs-2](#plugs-2) + + [plugs-3](#plugs-3) + + [plugs-4](#plugs-4) + + [plugs-5](#plugs-5) + + [plugs-6](#plugs-6) + + [plugs-7](#plugs-7) + + [plugs-8](#plugs-8) + + [plugs-9](#plugs-9) + + [plugs-10](#plugs-10) + + [plugs-11](#plugs-11) + + [plugs-12](#plugs-12) + + [plugs-13](#plugs-13) + + [plugs-14](#plugs-14) + + [plugs-15](#plugs-15) + + [voltage-0](#voltage-0) + + [current-0](#current-0) + + [power-output-0](#power-output-0) + + [voltage-1](#voltage-1) + + [current-1](#current-1) + + [power-output-1](#power-output-1) + + [voltage-2](#voltage-2) + + [current-2](#current-2) + + [power-output-2](#power-output-2) + + [voltage-3](#voltage-3) + + [current-3](#current-3) + + [power-output-3](#power-output-3) + + [voltage-4](#voltage-4) + + [current-4](#current-4) + + [power-output-4](#power-output-4) + + [voltage-5](#voltage-5) + + [current-5](#current-5) + + [power-output-5](#power-output-5) + + [voltage-6](#voltage-6) + + [current-6](#current-6) + + [power-output-6](#power-output-6) + + [voltage-7](#voltage-7) + + [current-7](#current-7) + + [power-output-7](#power-output-7) + + [voltage-8](#voltage-8) + + [current-8](#current-8) + + [power-output-8](#power-output-8) + + [voltage-9](#voltage-9) + + [current-9](#current-9) + + [power-output-9](#power-output-9) + + [voltage-10](#voltage-10) + + [current-10](#current-10) + + [power-output-10](#power-output-10) + + [voltage-11](#voltage-11) + + [current-11](#current-11) + + [power-output-11](#power-output-11) + + [voltage-12](#voltage-12) + + [current-12](#current-12) + + [power-output-12](#power-output-12) + + [voltage-13](#voltage-13) + + [current-13](#current-13) + + [power-output-13](#power-output-13) + + [voltage-14](#voltage-14) + + [current-14](#current-14) + + [power-output-14](#power-output-14) + + [voltage-15](#voltage-15) + + [current-15](#current-15) + + [power-output-15](#power-output-15) + + [OH](#oh) + + [fee](#fee) + + [charge](#charge) + + [payment-options](#payment-options) + + [Authentication](#authentication) + + [Auth phone](#auth-phone) + + [maxstay](#maxstay) + + [Network](#network) + + [Operator](#operator) + + [phone](#phone) + + [email](#email) + + [website](#website) + + [level](#level) + + [ref](#ref) + + [Operational status](#operational-status) + + [Parking:fee](#parkingfee) + + [questions](#questions) + + [questions](#questions) + + + + + + + + + + +#### Themes using this layer + + + + + + - [charging_stations](https://mapcomplete.osm.be/charging_stations) + + +[Go to the source code](../assets/layers/charging_station/charging_station.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=charging_station|disused:amenity=charging_station|planned:amenity=charging_station|construction:amenity=charging_station + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) +[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:schuko#values) [socket:schuko](https://wiki.openstreetmap.org/wiki/Key:socket:schuko) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:typee#values) [socket:typee](https://wiki.openstreetmap.org/wiki/Key:socket:typee) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:chademo#values) [socket:chademo](https://wiki.openstreetmap.org/wiki/Key:socket:chademo) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1_cable#values) [socket:type1_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1#values) [socket:type1](https://wiki.openstreetmap.org/wiki/Key:socket:type1) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1_combo#values) [socket:type1_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger#values) [socket:tesla_supercharger](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2#values) [socket:type2](https://wiki.openstreetmap.org/wiki/Key:socket:type2) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2_combo#values) [socket:type2_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2_cable#values) [socket:type2_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs#values) [socket:tesla_supercharger_ccs](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values) [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination#values) [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:USB-A#values) [socket:USB-A](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin#values) [socket:bosch_3pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin#values) [socket:bosch_5pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/socket:schuko:voltage#values) [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:schuko:current#values) [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:schuko:output#values) [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:typee:voltage#values) [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:typee:current#values) [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:typee:output#values) [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:chademo:voltage#values) [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:chademo:current#values) [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:chademo:output#values) [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:voltage#values) [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:current#values) [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1_cable:output#values) [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1:voltage#values) [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1:current#values) [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1:output#values) [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:voltage#values) [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:current#values) [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type1_combo:output#values) [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:voltage#values) [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:current#values) [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger:output#values) [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2:voltage#values) [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2:current#values) [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2:output#values) [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:voltage#values) [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:current#values) [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2_combo:output#values) [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:voltage#values) [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:current#values) [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:type2_cable:output#values) [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:voltage#values) [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:current#values) [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_supercharger_ccs:output#values) [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values) [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values) [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:voltage#values) [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:current#values) [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:tesla_destination:output#values) [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:USB-A:voltage#values) [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:USB-A:current#values) [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:USB-A:output#values) [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:voltage#values) [socket:bosch_3pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:current#values) [socket:bosch_3pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_3pin:output#values) [socket:bosch_3pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:voltage#values) [socket:bosch_5pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:voltage) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:current#values) [socket:bosch_5pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:current) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/socket:bosch_5pin:output#values) [socket:bosch_5pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:output) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) +[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/authentication:phone_call:number#values) [authentication:phone_call:number](https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call:number) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/maxstay#values) [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [string](../SpecialInputElements.md#string) | [unlimited](https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited) +[](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) | [AeroVironment](https://wiki.openstreetmap.org/wiki/Tag:network%3DAeroVironment) [Blink](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlink) [EVgo](https://wiki.openstreetmap.org/wiki/Tag:network%3DEVgo) [Allego](https://wiki.openstreetmap.org/wiki/Tag:network%3DAllego) [Blue Corner](https://wiki.openstreetmap.org/wiki/Tag:network%3DBlue Corner) [Tesla](https://wiki.openstreetmap.org/wiki/Tag:network%3DTesla) +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) +[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/planned:amenity#values) [planned:amenity](https://wiki.openstreetmap.org/wiki/Key:planned:amenity) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [charging_station](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3Dcharging_station) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) +[](https://taginfo.openstreetmap.org/keys/parking:fee#values) [parking:fee](https://wiki.openstreetmap.org/wiki/Key:parking:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dyes) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Type + + + +The question is **Which vehicles are allowed to charge here?** + + + + + + - **Bicycles can be charged here** corresponds with bicycle=yesUnselecting this answer will add bicycle=no + - **Cars can be charged here** corresponds with motorcar=yesUnselecting this answer will add motorcar=no + - **Scooters can be charged here** corresponds with scooter=yesUnselecting this answer will add scooter=no + - **Heavy good vehicles (such as trucks) can be charged here** corresponds with hgv=yesUnselecting this answer will add hgv=no + - **Buses can be charged here** corresponds with bus=yesUnselecting this answer will add bus=no + + + + +### access + + + +The question is **Who is allowed to use this charging station?** + +This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) +This is rendered with `Access is {access}` + + + + - **Anyone can use this charging station (payment might be needed)** corresponds with access=yes + - **Anyone can use this charging station (payment might be needed)** corresponds with access=permissive|access=public_This option cannot be chosen as answer_ + - **Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests** corresponds with access=customers + - **Not accessible to the general public (e.g. only accessible to the owners, employees, ...)** corresponds with access=private + + + + +### capacity + + + +The question is **How much vehicles can be charged here at the same time?** + +This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) +This is rendered with `{capacity} vehicles can be charged here at the same time` + + + +### Available_charging_stations (generated) + + + +The question is **Which charging connections are available here?** + + + + + + - **
Schuko wall plug without ground pin (CEE7/4 type F)
** corresponds with socket:schuko=1Unselecting this answer will add + - **
Schuko wall plug without ground pin (CEE7/4 type F)
** corresponds with socket:schuko~^..*$&socket:schuko!~^1$_This option cannot be chosen as answer_ + - **
European wall plug with ground pin (CEE7/4 type E)
** corresponds with socket:typee=1Unselecting this answer will add + - **
European wall plug with ground pin (CEE7/4 type E)
** corresponds with socket:typee~^..*$&socket:typee!~^1$_This option cannot be chosen as answer_ + - **
Chademo
** corresponds with socket:chademo=1Unselecting this answer will add + - **
Chademo
** corresponds with socket:chademo~^..*$&socket:chademo!~^1$_This option cannot be chosen as answer_ + - **
Type 1 with cable (J1772)
** corresponds with socket:type1_cable=1Unselecting this answer will add + - **
Type 1 with cable (J1772)
** corresponds with socket:type1_cable~^..*$&socket:type1_cable!~^1$_This option cannot be chosen as answer_ + - **
Type 1 without cable (J1772)
** corresponds with socket:type1=1Unselecting this answer will add + - **
Type 1 without cable (J1772)
** corresponds with socket:type1~^..*$&socket:type1!~^1$_This option cannot be chosen as answer_ + - **
Type 1 CCS (aka Type 1 Combo)
** corresponds with socket:type1_combo=1Unselecting this answer will add + - **
Type 1 CCS (aka Type 1 Combo)
** corresponds with socket:type1_combo~^..*$&socket:type1_combo!~^1$_This option cannot be chosen as answer_ + - **
Tesla Supercharger
** corresponds with socket:tesla_supercharger=1Unselecting this answer will add + - **
Tesla Supercharger
** corresponds with socket:tesla_supercharger~^..*$&socket:tesla_supercharger!~^1$_This option cannot be chosen as answer_ + - **
Type 2 (mennekes)
** corresponds with socket:type2=1Unselecting this answer will add + - **
Type 2 (mennekes)
** corresponds with socket:type2~^..*$&socket:type2!~^1$_This option cannot be chosen as answer_ + - **
Type 2 CCS (mennekes)
** corresponds with socket:type2_combo=1Unselecting this answer will add + - **
Type 2 CCS (mennekes)
** corresponds with socket:type2_combo~^..*$&socket:type2_combo!~^1$_This option cannot be chosen as answer_ + - **
Type 2 with cable (mennekes)
** corresponds with socket:type2_cable=1Unselecting this answer will add + - **
Type 2 with cable (mennekes)
** corresponds with socket:type2_cable~^..*$&socket:type2_cable!~^1$_This option cannot be chosen as answer_ + - **
Tesla Supercharger CCS (a branded type2_css)
** corresponds with socket:tesla_supercharger_ccs=1Unselecting this answer will add + - **
Tesla Supercharger CCS (a branded type2_css)
** corresponds with socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!~^1$_This option cannot be chosen as answer_ + - **
Tesla Supercharger (destination)
** corresponds with socket:tesla_destination=1Unselecting this answer will add + - **
Tesla Supercharger (destination)
** corresponds with socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country=us_This option cannot be chosen as answer_ + - **
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
** corresponds with socket:tesla_destination=1Unselecting this answer will add + - **
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
** corresponds with socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country!~^us$_This option cannot be chosen as answer_ + - **
USB to charge phones and small electronics
** corresponds with socket:USB-A=1Unselecting this answer will add + - **
USB to charge phones and small electronics
** corresponds with socket:USB-A~^..*$&socket:USB-A!~^1$_This option cannot be chosen as answer_ + - **
Bosch Active Connect with 3 pins and cable
** corresponds with socket:bosch_3pin=1Unselecting this answer will add + - **
Bosch Active Connect with 3 pins and cable
** corresponds with socket:bosch_3pin~^..*$&socket:bosch_3pin!~^1$_This option cannot be chosen as answer_ + - **
Bosch Active Connect with 5 pins and cable
** corresponds with socket:bosch_5pin=1Unselecting this answer will add + - **
Bosch Active Connect with 5 pins and cable
** corresponds with socket:bosch_5pin~^..*$&socket:bosch_5pin!~^1$_This option cannot be chosen as answer_ + + + + +### plugs-0 + + + +The question is **How much plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
are available here?** + +This rendering asks information about the property [socket:schuko](https://wiki.openstreetmap.org/wiki/Key:socket:schuko) +This is rendered with `There are {socket:schuko} plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
available here` + + + +### plugs-1 + + + +The question is **How much plugs of type
European wall plug with ground pin (CEE7/4 type E)
are available here?** + +This rendering asks information about the property [socket:typee](https://wiki.openstreetmap.org/wiki/Key:socket:typee) +This is rendered with `There are {socket:typee} plugs of type
European wall plug with ground pin (CEE7/4 type E)
available here` + + + +### plugs-2 + + + +The question is **How much plugs of type
Chademo
are available here?** + +This rendering asks information about the property [socket:chademo](https://wiki.openstreetmap.org/wiki/Key:socket:chademo) +This is rendered with `There are {socket:chademo} plugs of type
Chademo
available here` + + + +### plugs-3 + + + +The question is **How much plugs of type
Type 1 with cable (J1772)
are available here?** + +This rendering asks information about the property [socket:type1_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable) +This is rendered with `There are {socket:type1_cable} plugs of type
Type 1 with cable (J1772)
available here` + + + +### plugs-4 + + + +The question is **How much plugs of type
Type 1 without cable (J1772)
are available here?** + +This rendering asks information about the property [socket:type1](https://wiki.openstreetmap.org/wiki/Key:socket:type1) +This is rendered with `There are {socket:type1} plugs of type
Type 1 without cable (J1772)
available here` + + + +### plugs-5 + + + +The question is **How much plugs of type
Type 1 CCS (aka Type 1 Combo)
are available here?** + +This rendering asks information about the property [socket:type1_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo) +This is rendered with `There are {socket:type1_combo} plugs of type
Type 1 CCS (aka Type 1 Combo)
available here` + + + +### plugs-6 + + + +The question is **How much plugs of type
Tesla Supercharger
are available here?** + +This rendering asks information about the property [socket:tesla_supercharger](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger) +This is rendered with `There are {socket:tesla_supercharger} plugs of type
Tesla Supercharger
available here` + + + +### plugs-7 + + + +The question is **How much plugs of type
Type 2 (mennekes)
are available here?** + +This rendering asks information about the property [socket:type2](https://wiki.openstreetmap.org/wiki/Key:socket:type2) +This is rendered with `There are {socket:type2} plugs of type
Type 2 (mennekes)
available here` + + + +### plugs-8 + + + +The question is **How much plugs of type
Type 2 CCS (mennekes)
are available here?** + +This rendering asks information about the property [socket:type2_combo](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo) +This is rendered with `There are {socket:type2_combo} plugs of type
Type 2 CCS (mennekes)
available here` + + + +### plugs-9 + + + +The question is **How much plugs of type
Type 2 with cable (mennekes)
are available here?** + +This rendering asks information about the property [socket:type2_cable](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable) +This is rendered with `There are {socket:type2_cable} plugs of type
Type 2 with cable (mennekes)
available here` + + + +### plugs-10 + + + +The question is **How much plugs of type
Tesla Supercharger CCS (a branded type2_css)
are available here?** + +This rendering asks information about the property [socket:tesla_supercharger_ccs](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs) +This is rendered with `There are {socket:tesla_supercharger_ccs} plugs of type
Tesla Supercharger CCS (a branded type2_css)
available here` + + + +### plugs-11 + + + +The question is **How much plugs of type
Tesla Supercharger (destination)
are available here?** + +This rendering asks information about the property [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) +This is rendered with `There are {socket:tesla_destination} plugs of type
Tesla Supercharger (destination)
available here` + + + +### plugs-12 + + + +The question is **How much plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
are available here?** + +This rendering asks information about the property [socket:tesla_destination](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination) +This is rendered with `There are {socket:tesla_destination} plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
available here` + + + +### plugs-13 + + + +The question is **How much plugs of type
USB to charge phones and small electronics
are available here?** + +This rendering asks information about the property [socket:USB-A](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A) +This is rendered with `There are {socket:USB-A} plugs of type
USB to charge phones and small electronics
available here` + + + +### plugs-14 + + + +The question is **How much plugs of type
Bosch Active Connect with 3 pins and cable
are available here?** + +This rendering asks information about the property [socket:bosch_3pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin) +This is rendered with `There are {socket:bosch_3pin} plugs of type
Bosch Active Connect with 3 pins and cable
available here` + + + +### plugs-15 + + + +The question is **How much plugs of type
Bosch Active Connect with 5 pins and cable
are available here?** + +This rendering asks information about the property [socket:bosch_5pin](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin) +This is rendered with `There are {socket:bosch_5pin} plugs of type
Bosch Active Connect with 5 pins and cable
available here` + + + +### voltage-0 + + + +The question is **What voltage do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer?** + +This rendering asks information about the property [socket:schuko:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:voltage) +This is rendered with `
Schuko wall plug without ground pin (CEE7/4 type F)
outputs {socket:schuko:voltage} volt` + + + + - **
Schuko wall plug without ground pin (CEE7/4 type F)
outputs 230 volt** corresponds with socket:socket:schuko:voltage=230 V + + + + +### current-0 + + + +The question is **What current do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer?** + +This rendering asks information about the property [socket:schuko:current](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:current) +This is rendered with `
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:current}A` + + + + - **
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most 16 A** corresponds with socket:socket:schuko:current=16 A + + + + +### power-output-0 + + + +The question is **What power output does a single plug of type
Schuko wall plug without ground pin (CEE7/4 type F)
offer?** + +This rendering asks information about the property [socket:schuko:output](https://wiki.openstreetmap.org/wiki/Key:socket:schuko:output) +This is rendered with `
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:output}` + + + + - **
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most 3.6 kw** corresponds with socket:socket:schuko:output=3.6 kw + + + + +### voltage-1 + + + +The question is **What voltage do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer?** + +This rendering asks information about the property [socket:typee:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:typee:voltage) +This is rendered with `
European wall plug with ground pin (CEE7/4 type E)
outputs {socket:typee:voltage} volt` + + + + - **
European wall plug with ground pin (CEE7/4 type E)
outputs 230 volt** corresponds with socket:socket:typee:voltage=230 V + + + + +### current-1 + + + +The question is **What current do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer?** + +This rendering asks information about the property [socket:typee:current](https://wiki.openstreetmap.org/wiki/Key:socket:typee:current) +This is rendered with `
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:current}A` + + + + - **
European wall plug with ground pin (CEE7/4 type E)
outputs at most 16 A** corresponds with socket:socket:typee:current=16 A + + + + +### power-output-1 + + + +The question is **What power output does a single plug of type
European wall plug with ground pin (CEE7/4 type E)
offer?** + +This rendering asks information about the property [socket:typee:output](https://wiki.openstreetmap.org/wiki/Key:socket:typee:output) +This is rendered with `
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:output}` + + + + - **
European wall plug with ground pin (CEE7/4 type E)
outputs at most 3 kw** corresponds with socket:socket:typee:output=3 kw + - **
European wall plug with ground pin (CEE7/4 type E)
outputs at most 22 kw** corresponds with socket:socket:typee:output=22 kw + + + + +### voltage-2 + + + +The question is **What voltage do the plugs with
Chademo
offer?** + +This rendering asks information about the property [socket:chademo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:voltage) +This is rendered with `
Chademo
outputs {socket:chademo:voltage} volt` + + + + - **
Chademo
outputs 500 volt** corresponds with socket:socket:chademo:voltage=500 V + + + + +### current-2 + + + +The question is **What current do the plugs with
Chademo
offer?** + +This rendering asks information about the property [socket:chademo:current](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:current) +This is rendered with `
Chademo
outputs at most {socket:chademo:current}A` + + + + - **
Chademo
outputs at most 120 A** corresponds with socket:socket:chademo:current=120 A + + + + +### power-output-2 + + + +The question is **What power output does a single plug of type
Chademo
offer?** + +This rendering asks information about the property [socket:chademo:output](https://wiki.openstreetmap.org/wiki/Key:socket:chademo:output) +This is rendered with `
Chademo
outputs at most {socket:chademo:output}` + + + + - **
Chademo
outputs at most 50 kw** corresponds with socket:socket:chademo:output=50 kw + + + + +### voltage-3 + + + +The question is **What voltage do the plugs with
Type 1 with cable (J1772)
offer?** + +This rendering asks information about the property [socket:type1_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:voltage) +This is rendered with `
Type 1 with cable (J1772)
outputs {socket:type1_cable:voltage} volt` + + + + - **
Type 1 with cable (J1772)
outputs 200 volt** corresponds with socket:socket:type1_cable:voltage=200 V + - **
Type 1 with cable (J1772)
outputs 240 volt** corresponds with socket:socket:type1_cable:voltage=240 V + + + + +### current-3 + + + +The question is **What current do the plugs with
Type 1 with cable (J1772)
offer?** + +This rendering asks information about the property [socket:type1_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:current) +This is rendered with `
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:current}A` + + + + - **
Type 1 with cable (J1772)
outputs at most 32 A** corresponds with socket:socket:type1_cable:current=32 A + + + + +### power-output-3 + + + +The question is **What power output does a single plug of type
Type 1 with cable (J1772)
offer?** + +This rendering asks information about the property [socket:type1_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_cable:output) +This is rendered with `
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:output}` + + + + - **
Type 1 with cable (J1772)
outputs at most 3.7 kw** corresponds with socket:socket:type1_cable:output=3.7 kw + - **
Type 1 with cable (J1772)
outputs at most 7 kw** corresponds with socket:socket:type1_cable:output=7 kw + + + + +### voltage-4 + + + +The question is **What voltage do the plugs with
Type 1 without cable (J1772)
offer?** + +This rendering asks information about the property [socket:type1:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1:voltage) +This is rendered with `
Type 1 without cable (J1772)
outputs {socket:type1:voltage} volt` + + + + - **
Type 1 without cable (J1772)
outputs 200 volt** corresponds with socket:socket:type1:voltage=200 V + - **
Type 1 without cable (J1772)
outputs 240 volt** corresponds with socket:socket:type1:voltage=240 V + + + + +### current-4 + + + +The question is **What current do the plugs with
Type 1 without cable (J1772)
offer?** + +This rendering asks information about the property [socket:type1:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1:current) +This is rendered with `
Type 1 without cable (J1772)
outputs at most {socket:type1:current}A` + + + + - **
Type 1 without cable (J1772)
outputs at most 32 A** corresponds with socket:socket:type1:current=32 A + + + + +### power-output-4 + + + +The question is **What power output does a single plug of type
Type 1 without cable (J1772)
offer?** + +This rendering asks information about the property [socket:type1:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1:output) +This is rendered with `
Type 1 without cable (J1772)
outputs at most {socket:type1:output}` + + + + - **
Type 1 without cable (J1772)
outputs at most 3.7 kw** corresponds with socket:socket:type1:output=3.7 kw + - **
Type 1 without cable (J1772)
outputs at most 6.6 kw** corresponds with socket:socket:type1:output=6.6 kw + - **
Type 1 without cable (J1772)
outputs at most 7 kw** corresponds with socket:socket:type1:output=7 kw + - **
Type 1 without cable (J1772)
outputs at most 7.2 kw** corresponds with socket:socket:type1:output=7.2 kw + + + + +### voltage-5 + + + +The question is **What voltage do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer?** + +This rendering asks information about the property [socket:type1_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:voltage) +This is rendered with `
Type 1 CCS (aka Type 1 Combo)
outputs {socket:type1_combo:voltage} volt` + + + + - **
Type 1 CCS (aka Type 1 Combo)
outputs 400 volt** corresponds with socket:socket:type1_combo:voltage=400 V + - **
Type 1 CCS (aka Type 1 Combo)
outputs 1000 volt** corresponds with socket:socket:type1_combo:voltage=1000 V + + + + +### current-5 + + + +The question is **What current do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer?** + +This rendering asks information about the property [socket:type1_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:current) +This is rendered with `
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:current}A` + + + + - **
Type 1 CCS (aka Type 1 Combo)
outputs at most 50 A** corresponds with socket:socket:type1_combo:current=50 A + - **
Type 1 CCS (aka Type 1 Combo)
outputs at most 125 A** corresponds with socket:socket:type1_combo:current=125 A + + + + +### power-output-5 + + + +The question is **What power output does a single plug of type
Type 1 CCS (aka Type 1 Combo)
offer?** + +This rendering asks information about the property [socket:type1_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type1_combo:output) +This is rendered with `
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:output}` + + + + - **
Type 1 CCS (aka Type 1 Combo)
outputs at most 50 kw** corresponds with socket:socket:type1_combo:output=50 kw + - **
Type 1 CCS (aka Type 1 Combo)
outputs at most 62.5 kw** corresponds with socket:socket:type1_combo:output=62.5 kw + - **
Type 1 CCS (aka Type 1 Combo)
outputs at most 150 kw** corresponds with socket:socket:type1_combo:output=150 kw + - **
Type 1 CCS (aka Type 1 Combo)
outputs at most 350 kw** corresponds with socket:socket:type1_combo:output=350 kw + + + + +### voltage-6 + + + +The question is **What voltage do the plugs with
Tesla Supercharger
offer?** + +This rendering asks information about the property [socket:tesla_supercharger:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:voltage) +This is rendered with `
Tesla Supercharger
outputs {socket:tesla_supercharger:voltage} volt` + + + + - **
Tesla Supercharger
outputs 480 volt** corresponds with socket:socket:tesla_supercharger:voltage=480 V + + + + +### current-6 + + + +The question is **What current do the plugs with
Tesla Supercharger
offer?** + +This rendering asks information about the property [socket:tesla_supercharger:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:current) +This is rendered with `
Tesla Supercharger
outputs at most {socket:tesla_supercharger:current}A` + + + + - **
Tesla Supercharger
outputs at most 125 A** corresponds with socket:socket:tesla_supercharger:current=125 A + - **
Tesla Supercharger
outputs at most 350 A** corresponds with socket:socket:tesla_supercharger:current=350 A + + + + +### power-output-6 + + + +The question is **What power output does a single plug of type
Tesla Supercharger
offer?** + +This rendering asks information about the property [socket:tesla_supercharger:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger:output) +This is rendered with `
Tesla Supercharger
outputs at most {socket:tesla_supercharger:output}` + + + + - **
Tesla Supercharger
outputs at most 120 kw** corresponds with socket:socket:tesla_supercharger:output=120 kw + - **
Tesla Supercharger
outputs at most 150 kw** corresponds with socket:socket:tesla_supercharger:output=150 kw + - **
Tesla Supercharger
outputs at most 250 kw** corresponds with socket:socket:tesla_supercharger:output=250 kw + + + + +### voltage-7 + + + +The question is **What voltage do the plugs with
Type 2 (mennekes)
offer?** + +This rendering asks information about the property [socket:type2:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2:voltage) +This is rendered with `
Type 2 (mennekes)
outputs {socket:type2:voltage} volt` + + + + - **
Type 2 (mennekes)
outputs 230 volt** corresponds with socket:socket:type2:voltage=230 V + - **
Type 2 (mennekes)
outputs 400 volt** corresponds with socket:socket:type2:voltage=400 V + + + + +### current-7 + + + +The question is **What current do the plugs with
Type 2 (mennekes)
offer?** + +This rendering asks information about the property [socket:type2:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2:current) +This is rendered with `
Type 2 (mennekes)
outputs at most {socket:type2:current}A` + + + + - **
Type 2 (mennekes)
outputs at most 16 A** corresponds with socket:socket:type2:current=16 A + - **
Type 2 (mennekes)
outputs at most 32 A** corresponds with socket:socket:type2:current=32 A + + + + +### power-output-7 + + + +The question is **What power output does a single plug of type
Type 2 (mennekes)
offer?** + +This rendering asks information about the property [socket:type2:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2:output) +This is rendered with `
Type 2 (mennekes)
outputs at most {socket:type2:output}` + + + + - **
Type 2 (mennekes)
outputs at most 11 kw** corresponds with socket:socket:type2:output=11 kw + - **
Type 2 (mennekes)
outputs at most 22 kw** corresponds with socket:socket:type2:output=22 kw + + + + +### voltage-8 + + + +The question is **What voltage do the plugs with
Type 2 CCS (mennekes)
offer?** + +This rendering asks information about the property [socket:type2_combo:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:voltage) +This is rendered with `
Type 2 CCS (mennekes)
outputs {socket:type2_combo:voltage} volt` + + + + - **
Type 2 CCS (mennekes)
outputs 500 volt** corresponds with socket:socket:type2_combo:voltage=500 V + - **
Type 2 CCS (mennekes)
outputs 920 volt** corresponds with socket:socket:type2_combo:voltage=920 V + + + + +### current-8 + + + +The question is **What current do the plugs with
Type 2 CCS (mennekes)
offer?** + +This rendering asks information about the property [socket:type2_combo:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:current) +This is rendered with `
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:current}A` + + + + - **
Type 2 CCS (mennekes)
outputs at most 125 A** corresponds with socket:socket:type2_combo:current=125 A + - **
Type 2 CCS (mennekes)
outputs at most 350 A** corresponds with socket:socket:type2_combo:current=350 A + + + + +### power-output-8 + + + +The question is **What power output does a single plug of type
Type 2 CCS (mennekes)
offer?** + +This rendering asks information about the property [socket:type2_combo:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_combo:output) +This is rendered with `
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:output}` + + + + - **
Type 2 CCS (mennekes)
outputs at most 50 kw** corresponds with socket:socket:type2_combo:output=50 kw + + + + +### voltage-9 + + + +The question is **What voltage do the plugs with
Type 2 with cable (mennekes)
offer?** + +This rendering asks information about the property [socket:type2_cable:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:voltage) +This is rendered with `
Type 2 with cable (mennekes)
outputs {socket:type2_cable:voltage} volt` + + + + - **
Type 2 with cable (mennekes)
outputs 230 volt** corresponds with socket:socket:type2_cable:voltage=230 V + - **
Type 2 with cable (mennekes)
outputs 400 volt** corresponds with socket:socket:type2_cable:voltage=400 V + + + + +### current-9 + + + +The question is **What current do the plugs with
Type 2 with cable (mennekes)
offer?** + +This rendering asks information about the property [socket:type2_cable:current](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:current) +This is rendered with `
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:current}A` + + + + - **
Type 2 with cable (mennekes)
outputs at most 16 A** corresponds with socket:socket:type2_cable:current=16 A + - **
Type 2 with cable (mennekes)
outputs at most 32 A** corresponds with socket:socket:type2_cable:current=32 A + + + + +### power-output-9 + + + +The question is **What power output does a single plug of type
Type 2 with cable (mennekes)
offer?** + +This rendering asks information about the property [socket:type2_cable:output](https://wiki.openstreetmap.org/wiki/Key:socket:type2_cable:output) +This is rendered with `
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:output}` + + + + - **
Type 2 with cable (mennekes)
outputs at most 11 kw** corresponds with socket:socket:type2_cable:output=11 kw + - **
Type 2 with cable (mennekes)
outputs at most 22 kw** corresponds with socket:socket:type2_cable:output=22 kw + + + + +### voltage-10 + + + +The question is **What voltage do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer?** + +This rendering asks information about the property [socket:tesla_supercharger_ccs:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:voltage) +This is rendered with `
Tesla Supercharger CCS (a branded type2_css)
outputs {socket:tesla_supercharger_ccs:voltage} volt` + + + + - **
Tesla Supercharger CCS (a branded type2_css)
outputs 500 volt** corresponds with socket:socket:tesla_supercharger_ccs:voltage=500 V + - **
Tesla Supercharger CCS (a branded type2_css)
outputs 920 volt** corresponds with socket:socket:tesla_supercharger_ccs:voltage=920 V + + + + +### current-10 + + + +The question is **What current do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer?** + +This rendering asks information about the property [socket:tesla_supercharger_ccs:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:current) +This is rendered with `
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:current}A` + + + + - **
Tesla Supercharger CCS (a branded type2_css)
outputs at most 125 A** corresponds with socket:socket:tesla_supercharger_ccs:current=125 A + - **
Tesla Supercharger CCS (a branded type2_css)
outputs at most 350 A** corresponds with socket:socket:tesla_supercharger_ccs:current=350 A + + + + +### power-output-10 + + + +The question is **What power output does a single plug of type
Tesla Supercharger CCS (a branded type2_css)
offer?** + +This rendering asks information about the property [socket:tesla_supercharger_ccs:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_supercharger_ccs:output) +This is rendered with `
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:output}` + + + + - **
Tesla Supercharger CCS (a branded type2_css)
outputs at most 50 kw** corresponds with socket:socket:tesla_supercharger_ccs:output=50 kw + + + + +### voltage-11 + + + +The question is **What voltage do the plugs with
Tesla Supercharger (destination)
offer?** + +This rendering asks information about the property [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) +This is rendered with `
Tesla Supercharger (destination)
outputs {socket:tesla_destination:voltage} volt` + + + + - **
Tesla Supercharger (destination)
outputs 480 volt** corresponds with socket:socket:tesla_destination:voltage=480 V + + + + +### current-11 + + + +The question is **What current do the plugs with
Tesla Supercharger (destination)
offer?** + +This rendering asks information about the property [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) +This is rendered with `
Tesla Supercharger (destination)
outputs at most {socket:tesla_destination:current}A` + + + + - **
Tesla Supercharger (destination)
outputs at most 125 A** corresponds with socket:socket:tesla_destination:current=125 A + - **
Tesla Supercharger (destination)
outputs at most 350 A** corresponds with socket:socket:tesla_destination:current=350 A + + + + +### power-output-11 + + + +The question is **What power output does a single plug of type
Tesla Supercharger (destination)
offer?** + +This rendering asks information about the property [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) +This is rendered with `
Tesla Supercharger (destination)
outputs at most {socket:tesla_destination:output}` + + + + - **
Tesla Supercharger (destination)
outputs at most 120 kw** corresponds with socket:socket:tesla_destination:output=120 kw + - **
Tesla Supercharger (destination)
outputs at most 150 kw** corresponds with socket:socket:tesla_destination:output=150 kw + - **
Tesla Supercharger (destination)
outputs at most 250 kw** corresponds with socket:socket:tesla_destination:output=250 kw + + + + +### voltage-12 + + + +The question is **What voltage do the plugs with
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?** + +This rendering asks information about the property [socket:tesla_destination:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:voltage) +This is rendered with `
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs {socket:tesla_destination:voltage} volt` + + + + - **
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs 230 volt** corresponds with socket:socket:tesla_destination:voltage=230 V + - **
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs 400 volt** corresponds with socket:socket:tesla_destination:voltage=400 V + + + + +### current-12 + + + +The question is **What current do the plugs with
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?** + +This rendering asks information about the property [socket:tesla_destination:current](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:current) +This is rendered with `
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most {socket:tesla_destination:current}A` + + + + - **
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 16 A** corresponds with socket:socket:tesla_destination:current=16 A + - **
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 32 A** corresponds with socket:socket:tesla_destination:current=32 A + + + + +### power-output-12 + + + +The question is **What power output does a single plug of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?** + +This rendering asks information about the property [socket:tesla_destination:output](https://wiki.openstreetmap.org/wiki/Key:socket:tesla_destination:output) +This is rendered with `
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most {socket:tesla_destination:output}` + + + + - **
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 11 kw** corresponds with socket:socket:tesla_destination:output=11 kw + - **
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 22 kw** corresponds with socket:socket:tesla_destination:output=22 kw + + + + +### voltage-13 + + + +The question is **What voltage do the plugs with
USB to charge phones and small electronics
offer?** + +This rendering asks information about the property [socket:USB-A:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:voltage) +This is rendered with `
USB to charge phones and small electronics
outputs {socket:USB-A:voltage} volt` + + + + - **
USB to charge phones and small electronics
outputs 5 volt** corresponds with socket:socket:USB-A:voltage=5 V + + + + +### current-13 + + + +The question is **What current do the plugs with
USB to charge phones and small electronics
offer?** + +This rendering asks information about the property [socket:USB-A:current](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:current) +This is rendered with `
USB to charge phones and small electronics
outputs at most {socket:USB-A:current}A` + + + + - **
USB to charge phones and small electronics
outputs at most 1 A** corresponds with socket:socket:USB-A:current=1 A + - **
USB to charge phones and small electronics
outputs at most 2 A** corresponds with socket:socket:USB-A:current=2 A + + + + +### power-output-13 + + + +The question is **What power output does a single plug of type
USB to charge phones and small electronics
offer?** + +This rendering asks information about the property [socket:USB-A:output](https://wiki.openstreetmap.org/wiki/Key:socket:USB-A:output) +This is rendered with `
USB to charge phones and small electronics
outputs at most {socket:USB-A:output}` + + + + - **
USB to charge phones and small electronics
outputs at most 5w** corresponds with socket:socket:USB-A:output=5w + - **
USB to charge phones and small electronics
outputs at most 10w** corresponds with socket:socket:USB-A:output=10w + + + + +### voltage-14 + + + +The question is **What voltage do the plugs with
Bosch Active Connect with 3 pins and cable
offer?** + +This rendering asks information about the property [socket:bosch_3pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:voltage) +This is rendered with `
Bosch Active Connect with 3 pins and cable
outputs {socket:bosch_3pin:voltage} volt` + + + + + + + + +### current-14 + + + +The question is **What current do the plugs with
Bosch Active Connect with 3 pins and cable
offer?** + +This rendering asks information about the property [socket:bosch_3pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:current) +This is rendered with `
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:current}A` + + + + + + + + +### power-output-14 + + + +The question is **What power output does a single plug of type
Bosch Active Connect with 3 pins and cable
offer?** + +This rendering asks information about the property [socket:bosch_3pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_3pin:output) +This is rendered with `
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:output}` + + + + + + + + +### voltage-15 + + + +The question is **What voltage do the plugs with
Bosch Active Connect with 5 pins and cable
offer?** + +This rendering asks information about the property [socket:bosch_5pin:voltage](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:voltage) +This is rendered with `
Bosch Active Connect with 5 pins and cable
outputs {socket:bosch_5pin:voltage} volt` + + + + + + + + +### current-15 + + + +The question is **What current do the plugs with
Bosch Active Connect with 5 pins and cable
offer?** + +This rendering asks information about the property [socket:bosch_5pin:current](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:current) +This is rendered with `
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:current}A` + + + + + + + + +### power-output-15 + + + +The question is **What power output does a single plug of type
Bosch Active Connect with 5 pins and cable
offer?** + +This rendering asks information about the property [socket:bosch_5pin:output](https://wiki.openstreetmap.org/wiki/Key:socket:bosch_5pin:output) +This is rendered with `
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:output}` + + + + + + + + +### OH + + + +The question is **When is this charging station opened?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `{opening_hours_table(opening_hours)}` + + + + - **24/7 opened (including holidays)** corresponds with opening_hours=24/7 + + + + +### fee + + + +The question is **Does one have to pay to use this charging station?** + + + + + + - **Free to use** corresponds with fee=no_This option cannot be chosen as answer_ + - **Free to use (without authenticating)** corresponds with fee=no&authentication:none=yes + - **Free to use, but one has to authenticate** corresponds with fee=no&authentication:none=no + - **Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station** corresponds with fee=yes&fee:conditional=no @ customers + - **Paid use** corresponds with fee=yes + + + + +### charge + + + +The question is **How much does one have to pay to use this charging station?** + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) +This is rendered with `Using this charging station costs {charge}` + + + +### payment-options + + + +The question is **Which methods of payment are accepted here?** + + + + + + - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no + - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + + + + +### Authentication + + + +The question is **What kind of authentication is available at the charging station?** + + + + + + - **Authentication by a membership card** corresponds with authentication:membership_card=yesUnselecting this answer will add authentication:membership_card=no + - **Authentication by an app** corresponds with authentication:app=yesUnselecting this answer will add authentication:app=no + - **Authentication via phone call is available** corresponds with authentication:phone_call=yesUnselecting this answer will add authentication:phone_call=no + - **Authentication via SMS is available** corresponds with authentication:short_message=yesUnselecting this answer will add authentication:short_message=no + - **Authentication via NFC is available** corresponds with authentication:nfc=yesUnselecting this answer will add authentication:nfc=no + - **Authentication via Money Card is available** corresponds with authentication:money_card=yesUnselecting this answer will add authentication:money_card=no + - **Authentication via debit card is available** corresponds with authentication:debit_card=yesUnselecting this answer will add authentication:debit_card=no + - **Charging here is (also) possible without authentication** corresponds with authentication:none=yesUnselecting this answer will add authentication:none=no + + + + +### Auth phone + + + +The question is **What's the phone number for authentication call or SMS?** + +This rendering asks information about the property [authentication:phone_call:number](https://wiki.openstreetmap.org/wiki/Key:authentication:phone_call:number) +This is rendered with `Authenticate by calling or SMS'ing to {authentication:phone_call:number}` + + + +### maxstay + + + +The question is **What is the maximum amount of time one is allowed to stay here?** + +This rendering asks information about the property [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) +This is rendered with `One can stay at most {canonical(maxstay)}` + + + + - **No timelimit on leaving your vehicle here** corresponds with maxstay=unlimited + + + + +### Network + + + +The question is **Is this charging station part of a network?** + +This rendering asks information about the property [network](https://wiki.openstreetmap.org/wiki/Key:network) +This is rendered with `Part of the network {network}` + + + + - **Not part of a bigger network, e.g. because the charging station is maintained by a local business** corresponds with no:network=yes + - **Not part of a bigger network** corresponds with network=none_This option cannot be chosen as answer_ + - **AeroVironment** corresponds with network=AeroVironment + - **Blink** corresponds with network=Blink + - **EVgo** corresponds with network=EVgo + - **Allego** corresponds with network=Allego + - **Blue Corner** corresponds with network=Blue Corner + - **Tesla** corresponds with network=Tesla + + + + +### Operator + + + +The question is **Who is the operator of this charging station?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `This charging station is operated by {operator}` + + + + - **Actually, {operator} is the network** corresponds with network= + + + + +### phone + + + +The question is **What number can one call if there is a problem with this charging station?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `In case of problems, call {phone}` + + + +### email + + + +The question is **What is the email address of the operator?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `In case of problems, send an email to {email}` + + + +### website + + + +The question is **What is the website where one can find more information about this charging station?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `More info on {website}` + + + +### level + + + +The question is **On what level is this feature located?** + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) +This is rendered with `Located on the {level}th floor` + + + + - **Located underground** corresponds with location=underground_This option cannot be chosen as answer_ + - **Located on the ground floor** corresponds with level=0 + - **Located on the ground floor** corresponds with _This option cannot be chosen as answer_ + - **Located on the first floor** corresponds with level=1 + + + + +### ref + + + +The question is **What is the reference number of this charging station?** + +This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) +This is rendered with `Reference number is {ref}` + + + +### Operational status + + + +The question is **Is this charging point in use?** + + + + + + - **This charging station works** corresponds with amenity=charging_station + - **This charging station is broken** corresponds with operational_status=broken&amenity=charging_station + - **A charging station is planned here** corresponds with planned:amenity=charging_station + - **A charging station is constructed here** corresponds with construction:amenity=charging_station + - **This charging station has beed permanently disabled and is not in use anymore but is still visible** corresponds with disused:amenity=charging_station + + + + +### Parking:fee + + + +The question is **Does one have to pay a parking fee while charging?** + + + + + + - **No additional parking cost while charging** corresponds with parking:fee=no + - **An additional parking fee should be paid while charging** corresponds with parking:fee=yes + + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/charging_station/charging_station.json \ No newline at end of file diff --git a/Docs/Layers/climbing.md b/Docs/Layers/climbing.md new file mode 100644 index 0000000000..8c340b70b1 --- /dev/null +++ b/Docs/Layers/climbing.md @@ -0,0 +1,207 @@ + + + climbing +========== + + + + + +A climbing opportunity + + + + +## Table of contents + +1. [climbing](#climbing) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [questions](#questions) + + [minimap](#minimap) + + [Contained routes length hist](#contained-routes-length-hist) + + [Contained routes hist](#contained-routes-hist) + + [Contained_climbing_routes](#contained_climbing_routes) + + [name](#name) + + [Type](#type) + + [Rock type (crag/rock/cliff only)](#rock-type-(cragrock/cliff-only)) + + [reviews](#reviews) + + + + + + - This layer will automatically load [climbing_route](./climbing_route.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _contained_climbing_routes_properties) + + + + +#### Themes using this layer + + + + + + - [climbing](https://mapcomplete.osm.be/climbing) + + +[Go to the source code](../assets/layers/climbing/climbing.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - sport=climbing + - climbing!~^route$ + - leisure!~^sports_centre$ + - climbing!~^route_top$ + - climbing!~^route_bottom$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) +[](https://taginfo.openstreetmap.org/keys/climbing#values) [climbing](https://wiki.openstreetmap.org/wiki/Key:climbing) | Multiple choice | [boulder](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dboulder) [crag](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Dcrag) [area](https://wiki.openstreetmap.org/wiki/Tag:climbing%3Darea) +[](https://taginfo.openstreetmap.org/keys/rock#values) [rock](https://wiki.openstreetmap.org/wiki/Key:rock) | [string](../SpecialInputElements.md#string) | [limestone](https://wiki.openstreetmap.org/wiki/Tag:rock%3Dlimestone) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Contained routes length hist + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Contained routes hist + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Contained_climbing_routes + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### name + + + +The question is **What is the name of this climbing opportunity?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `{name}` + + + + - **This climbing opportunity doesn't have a name** corresponds with noname=yes + + + + +### Type + + + +The question is **What kind of climbing opportunity is this?** + + + + + + - **A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope** corresponds with climbing=boulder + - **A climbing crag - a single rock or cliff with at least a few climbing routes** corresponds with climbing=crag + - **A climbing area with one or more climbing crags and/or boulders** corresponds with climbing=area + + + + +### Rock type (crag/rock/cliff only) + + + +The question is **What is the rock type here?** + +This rendering asks information about the property [rock](https://wiki.openstreetmap.org/wiki/Key:rock) +This is rendered with `The rock type is {rock}` + + + + - **Limestone** corresponds with rock=limestone + + + + +### reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/climbing/climbing.json \ No newline at end of file diff --git a/Docs/Layers/climbing_club.md b/Docs/Layers/climbing_club.md new file mode 100644 index 0000000000..26f51fc517 --- /dev/null +++ b/Docs/Layers/climbing_club.md @@ -0,0 +1,162 @@ + + + climbing_club +=============== + + + + + +A climbing club or organisations + + + + +## Table of contents + +1. [climbing_club](#climbing_club) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [climbing_club-name](#climbing_club-name) + + [minimap](#minimap) + + [website](#website) + + [email](#email) + + [phone](#phone) + + [opening_hours](#opening_hours) + + + + + + + + + + +#### Themes using this layer + + + + + + - [climbing](https://mapcomplete.osm.be/climbing) + + +[Go to the source code](../assets/layers/climbing_club/climbing_club.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - club=climbing|sport=climbing&office~^..*$|club~^..*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | + + + + +### climbing_club-name + + + +The question is **What is the name of this climbing club or NGO?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `{name}` + + + +### minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + + - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + + +### email + + + +The question is **What is the email address of {name}?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + + - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + + +### phone + + + +The question is **What is the phone number of {name}?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + + - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + + +### opening_hours + + + +The question is **What are the opening hours of {name}?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + +This document is autogenerated from assets/layers/climbing_club/climbing_club.json \ No newline at end of file diff --git a/Docs/Layers/climbing_gym.md b/Docs/Layers/climbing_gym.md new file mode 100644 index 0000000000..0e712e3075 --- /dev/null +++ b/Docs/Layers/climbing_gym.md @@ -0,0 +1,196 @@ + + + climbing_gym +============== + + + + + +A climbing gym + + + + +## Table of contents + +1. [climbing_gym](#climbing_gym) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [questions](#questions) + + [minimap](#minimap) + + [name](#name) + + [website](#website) + + [phone](#phone) + + [email](#email) + + [opening_hours](#opening_hours) + + [reviews](#reviews) + + + + + + + + + + +#### Themes using this layer + + + + + + - [climbing](https://mapcomplete.osm.be/climbing) + + +[Go to the source code](../assets/layers/climbing_gym/climbing_gym.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - sport=climbing + - leisure=sports_centre + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### name + + + +The question is **What is the name of this climbing gym?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `{name}` + + + +### website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + + - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + + +### phone + + + +The question is **What is the phone number of {name}?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + + - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + + +### email + + + +The question is **What is the email address of {name}?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + + - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + + +### opening_hours + + + +The question is **What are the opening hours of {name}?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + + + +### reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/climbing_gym/climbing_gym.json \ No newline at end of file diff --git a/Docs/Layers/climbing_route.md b/Docs/Layers/climbing_route.md new file mode 100644 index 0000000000..2360020ead --- /dev/null +++ b/Docs/Layers/climbing_route.md @@ -0,0 +1,202 @@ + + + climbing_route +================ + + + + + + + + +## Table of contents + +1. [climbing_route](#climbing_route) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [questions](#questions) + + [minimap](#minimap) + + [Name](#name) + + [Length](#length) + + [Difficulty](#difficulty) + + [Bolts](#bolts) + + [Description](#description) + + [Rock type](#rock-type) + + [reviews](#reviews) + + + + + + - This layer is needed as dependency for layer [climbing](#climbing) + + + + +#### Themes using this layer + + + + + + - [climbing](https://mapcomplete.osm.be/climbing) + + +[Go to the source code](../assets/layers/climbing_route/climbing_route.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - climbing=route + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) +[](https://taginfo.openstreetmap.org/keys/climbing:length#values) [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/climbing:grade:french#values) [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/climbing:bolts#values) [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/_embedding_features_with_rock:rock#values) [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock) | [string](../SpecialInputElements.md#string) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Name + + + +The question is **What is the name of this climbing route?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `{name}` + + + + - **This climbing route doesn't have a name** corresponds with noname=yes + + + + +### Length + + + +The question is **How long is this climbing route (in meters)?** + +This rendering asks information about the property [climbing:length](https://wiki.openstreetmap.org/wiki/Key:climbing:length) +This is rendered with `This route is {canonical(climbing:length)} long` + + + +### Difficulty + + + +The question is **What is the difficulty of this climbing route according to the french/belgian system?** + +This rendering asks information about the property [climbing:grade:french](https://wiki.openstreetmap.org/wiki/Key:climbing:grade:french) +This is rendered with `The difficulty is {climbing:grade:french} according to the french/belgian system` + + + +### Bolts + + + +The question is **How much bolts does this route have before reaching the moulinette?** + +This rendering asks information about the property [climbing:bolts](https://wiki.openstreetmap.org/wiki/Key:climbing:bolts) +This is rendered with `This route has {climbing:bolts} bolts` + + + + - **This route is not bolted** corresponds with climbing:bolted=no_This option cannot be chosen as answer_ + - **This route is not bolted** corresponds with climbing:bolted=no&climbing:bolts= + + + + +### Description + + + +The question is **Is there other relevant info?** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `

Description


{description}` + + + +### Rock type + + + +_This tagrendering has no question and is thus read-only_ + +This rendering asks information about the property [_embedding_features_with_rock:rock](https://wiki.openstreetmap.org/wiki/Key:_embedding_features_with_rock:rock) +This is rendered with `The rock type is {_embedding_features_with_rock:rock} as stated on the surrounding crag` + + + +### reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/climbing_route/climbing_route.json \ No newline at end of file diff --git a/Docs/Layers/cluster_style.md b/Docs/Layers/cluster_style.md new file mode 100644 index 0000000000..17c201b1a3 --- /dev/null +++ b/Docs/Layers/cluster_style.md @@ -0,0 +1,62 @@ + + + cluster_style +=============== + + + + + +The style for the clustering in all themes. Enable `debug=true` to peak into clustered tiles + + + + +## Table of contents + +1. [cluster_style](#cluster_style) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [all_tags](#all_tags) + + + + + + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + + +[Go to the source code](../assets/layers/cluster_style/cluster_style.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - tileId~^..*$ + + + + + Supported attributes +---------------------- + + + + + +### all_tags + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/cluster_style/cluster_style.json \ No newline at end of file diff --git a/Docs/Layers/conflation.md b/Docs/Layers/conflation.md new file mode 100644 index 0000000000..3d9b2dbe53 --- /dev/null +++ b/Docs/Layers/conflation.md @@ -0,0 +1,51 @@ + + + conflation +============ + + + + + +If the import-button moves OSM points, the imported way points or conflates, a preview is shown. This layer defines how this preview is rendered. This layer cannot be included in a theme. + + + + +## Table of contents + +1. [conflation](#conflation) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + + + +[Go to the source code](../assets/layers/conflation/conflation.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - move=yes|newpoint=yes + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/conflation/conflation.json \ No newline at end of file diff --git a/Docs/Layers/crab_address.md b/Docs/Layers/crab_address.md new file mode 100644 index 0000000000..1d49396611 --- /dev/null +++ b/Docs/Layers/crab_address.md @@ -0,0 +1,62 @@ + + + crab_address +============== + + + + + +Address data for Flanders by the governement, suited for import into OpenStreetMap. Datadump from 2021-10-26. This layer contains only visualisation logic. Import buttons should be added via an override. Note that HNRLABEL contains the original value, whereas _HNRLABEL contains a slightly cleaned version + + + + +## Table of contents + +1. [crab_address](#crab_address) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [render_crab](#render_crab) + + + + + + - This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson` + + +[Go to the source code](../assets/layers/crab_address/crab_address.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - HUISNR~^..*$ + + + + + Supported attributes +---------------------- + + + + + +### render_crab + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/crab_address/crab_address.json \ No newline at end of file diff --git a/Docs/Layers/crossings.md b/Docs/Layers/crossings.md new file mode 100644 index 0000000000..5f2c84b301 --- /dev/null +++ b/Docs/Layers/crossings.md @@ -0,0 +1,221 @@ + + + crossings +=========== + + + + + +Crossings for pedestrians and cyclists + + + + +## Table of contents + +1. [crossings](#crossings) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [crossing-type](#crossing-type) + + [crossing-is-zebra](#crossing-is-zebra) + + [crossing-bicycle-allowed](#crossing-bicycle-allowed) + + [crossing-has-island](#crossing-has-island) + + [crossing-tactile](#crossing-tactile) + + [crossing-button](#crossing-button) + + [crossing-right-turn-through-red](#crossing-right-turn-through-red) + + [crossing-continue-through-red](#crossing-continue-through-red) + + + + + + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer will automatically load [cycleways_and_roads](./cycleways_and_roads.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) + + + + +#### Themes using this layer + + + + + + - [cycle_infra](https://mapcomplete.osm.be/cycle_infra) + + +[Go to the source code](../assets/layers/crossings/crossings.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=traffic_signals|highway=crossing + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/crossing#values) [crossing](https://wiki.openstreetmap.org/wiki/Key:crossing) | Multiple choice | [uncontrolled](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Duncontrolled) [traffic_signals](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dtraffic_signals) [unmarked](https://wiki.openstreetmap.org/wiki/Tag:crossing%3Dunmarked) +[](https://taginfo.openstreetmap.org/keys/crossing_ref#values) [crossing_ref](https://wiki.openstreetmap.org/wiki/Key:crossing_ref) | Multiple choice | [zebra](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3Dzebra) [](https://wiki.openstreetmap.org/wiki/Tag:crossing_ref%3D) +[](https://taginfo.openstreetmap.org/keys/bicycle#values) [bicycle](https://wiki.openstreetmap.org/wiki/Key:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bicycle%3Dno) +[](https://taginfo.openstreetmap.org/keys/crossing:island#values) [crossing:island](https://wiki.openstreetmap.org/wiki/Key:crossing:island) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:crossing:island%3Dno) +[](https://taginfo.openstreetmap.org/keys/tactile_paving#values) [tactile_paving](https://wiki.openstreetmap.org/wiki/Key:tactile_paving) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_paving%3Dno) +[](https://taginfo.openstreetmap.org/keys/button_operated#values) [button_operated](https://wiki.openstreetmap.org/wiki/Key:button_operated) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:button_operated%3Dno) +[](https://taginfo.openstreetmap.org/keys/red_turn:right:bicycle#values) [red_turn:right:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:right:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:right:bicycle%3Dno) +[](https://taginfo.openstreetmap.org/keys/red_turn:straight:bicycle#values) [red_turn:straight:bicycle](https://wiki.openstreetmap.org/wiki/Key:red_turn:straight:bicycle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:red_turn:straight:bicycle%3Dno) + + + + +### crossing-type + + + +The question is **What kind of crossing is this?** + + + + + + - **Crossing, without traffic lights** corresponds with crossing=uncontrolled + - **Crossing with traffic signals** corresponds with crossing=traffic_signals + - **Zebra crossing** corresponds with crossing=zebra_This option cannot be chosen as answer_ + - **Crossing without crossing markings** corresponds with crossing=unmarked + + + + +### crossing-is-zebra + + + +The question is **Is this is a zebra crossing?** + + + + + + - **This is a zebra crossing** corresponds with crossing_ref=zebra + - **This is not a zebra crossing** corresponds with + + + + +### crossing-bicycle-allowed + + + +The question is **Is this crossing also for bicycles?** + + + + + + - **A cyclist can use this crossing** corresponds with bicycle=yes + - **A cyclist can not use this crossing** corresponds with bicycle=no + + + + +### crossing-has-island + + + +The question is **Does this crossing have an island in the middle?** + + + + + + - **This crossing has an island in the middle** corresponds with crossing:island=yes + - **This crossing does not have an island in the middle** corresponds with crossing:island=no + + + + +### crossing-tactile + + + +The question is **Does this crossing have tactile paving?** + + + + + + - **This crossing has tactile paving** corresponds with tactile_paving=yes + - **This crossing does not have tactile paving** corresponds with tactile_paving=no + - **This crossing has tactile paving, but is not correct** corresponds with tactile_paving=incorrect_This option cannot be chosen as answer_ + + + + +### crossing-button + + + +The question is **Does this traffic light have a button to request green light?** + + + + + + - **This traffic light has a button to request green light** corresponds with button_operated=yes + - **This traffic light does not have a button to request green light** corresponds with button_operated=no + + + + +### crossing-right-turn-through-red + + + +The question is **Can a cyclist turn right when the light is red?** + + + + + + - **A cyclist can turn right if the light is red ** corresponds with red_turn:right:bicycle=yes + - **A cyclist can turn right if the light is red** corresponds with red_turn:right:bicycle=yes + - **A cyclist can not turn right if the light is red** corresponds with red_turn:right:bicycle=no + + + + +### crossing-continue-through-red + + + +The question is **Can a cyclist go straight on when the light is red?** + + + + + + - **A cyclist can go straight on if the light is red ** corresponds with red_turn:straight:bicycle=yes + - **A cyclist can go straight on if the light is red** corresponds with red_turn:straight:bicycle=yes + - **A cyclist can not go straight on if the light is red** corresponds with red_turn:straight:bicycle=no + + +This document is autogenerated from assets/layers/crossings/crossings.json \ No newline at end of file diff --git a/Docs/Layers/current_view.md b/Docs/Layers/current_view.md new file mode 100644 index 0000000000..7d763b88a0 --- /dev/null +++ b/Docs/Layers/current_view.md @@ -0,0 +1,55 @@ + + + current_view +============== + + + + + +A meta-layer which contains one single feature, namely the BBOX of the current map view. This can be used to trigger special actions. If a popup is defined for this layer, this popup will be accessible via an extra button on screen. + +The icon on the button is the default icon of the layer, but can be customized by detecting 'button=yes'. + + + + +## Table of contents + +1. [current_view](#current_view) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer is not visible by default and must be enabled in the filter by the user. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + +[Go to the source code](../assets/layers/current_view/current_view.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - current_view=yes + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/current_view/current_view.json \ No newline at end of file diff --git a/Docs/Layers/cycle_highways.md b/Docs/Layers/cycle_highways.md new file mode 100644 index 0000000000..2fcf498d7a --- /dev/null +++ b/Docs/Layers/cycle_highways.md @@ -0,0 +1,145 @@ + + + cycle_highways +================ + + + + + + + + +## Table of contents + +1. [cycle_highways](#cycle_highways) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [cycle_highways-name](#cycle_highways-name) + + [cycle_highways-ref](#cycle_highways-ref) + + [cycle_highways-state](#cycle_highways-state) + + [cycle-highway-length](#cycle-highway-length) + + [website](#website) + + [all_tags](#all_tags) + + + + + + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + +[Go to the source code](../assets/layers/cycle_highways/cycle_highways.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - cycle_network=BE-VLG:cycle_highway + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/state#values) [state](https://wiki.openstreetmap.org/wiki/Key:state) | [string](../SpecialInputElements.md#string) | [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [proposed](https://wiki.openstreetmap.org/wiki/Tag:state%3Dproposed) [temporary](https://wiki.openstreetmap.org/wiki/Tag:state%3Dtemporary) [](https://wiki.openstreetmap.org/wiki/Tag:state%3D) +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | + + + + +### cycle_highways-name + + + +The question is **What is the name of this cycle highway?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `The name is {name}` + + + +### cycle_highways-ref + + + +The question is **What is the reference number of this cycle highway?** + +This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) +This is rendered with `Referentienummer is {ref}` + + + +### cycle_highways-state + + + +The question is **What is the state of this link?** + +This rendering asks information about the property [state](https://wiki.openstreetmap.org/wiki/Key:state) +This is rendered with `The current state of this link is {state}` + + + + - **This is a proposed route which can be cycled** corresponds with state=proposed + - **This is a proposed route which has missing links (thus: some parts don't even have a building permit yet)** corresponds with state=proposed&note:state=has_highway_no + - **This is a proposed route which has some links which are under construction** corresponds with state=proposed&note:state=has_highway_under_construction + - **This is a temporary deviation** corresponds with state=temporary + - **This link is operational and signposted** corresponds with + + + + +### cycle-highway-length + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + + - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + + +### all_tags + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/cycle_highways/cycle_highways.json \ No newline at end of file diff --git a/Docs/Layers/cycleways_and_roads.md b/Docs/Layers/cycleways_and_roads.md new file mode 100644 index 0000000000..e41b979acf --- /dev/null +++ b/Docs/Layers/cycleways_and_roads.md @@ -0,0 +1,417 @@ + + + cycleways_and_roads +===================== + + + + + +All infrastructure that someone can cycle over, accompanied with questions about this infrastructure" + + + + +## Table of contents + +1. [cycleways_and_roads](#cycleways_and_roads) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [Cycleway type for a road](#cycleway-type-for-a-road) + + [is lit?](#is-lit) + + [Is this a cyclestreet? (For a road)](#is-this-a-cyclestreet-(for-a-road)) + + [Maxspeed (for road)](#maxspeed-(for-road)) + + [Cycleway:surface](#cyclewaysurface) + + [Cycleway:smoothness](#cyclewaysmoothness) + + [Surface of the road](#surface-of-the-road) + + [Surface of the street](#surface-of-the-street) + + [width:carriageway](#widthcarriageway) + + [cycleway-lane-track-traffic-signs](#cycleway-lane-track-traffic-signs) + + [cycleway-traffic-signs](#cycleway-traffic-signs) + + [cycleway-traffic-signs-supplementary](#cycleway-traffic-signs-supplementary) + + [cycleway-traffic-signs-D7-supplementary](#cycleway-traffic-signs-d7-supplementary) + + [cycleways_and_roads-cycleway:buffer](#cycleways_and_roads-cyclewaybuffer) + + [cyclelan-segregation](#cyclelan-segregation) + + [cycleway-segregation](#cycleway-segregation) + + + + + + - This layer is needed as dependency for layer [barrier](#barrier) + - 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 [crossings](#crossings) + + + + +#### Themes using this layer + + + + + + - [cycle_infra](https://mapcomplete.osm.be/cycle_infra) + + +[Go to the source code](../assets/layers/cycleways_and_roads/cycleways_and_roads.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=cycleway|cycleway=lane|cycleway=shared_lane|cycleway=track|cyclestreet=yes|highway=residential|highway=tertiary|highway=unclassified|highway=primary|highway=secondary|highway=path&bicycle=designated + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/cycleway#values) [cycleway](https://wiki.openstreetmap.org/wiki/Key:cycleway) | Multiple choice | [shared_lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dshared_lane) [lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dlane) [track](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dtrack) [separate](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dseparate) [no](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno) [no](https://wiki.openstreetmap.org/wiki/Tag:cycleway%3Dno) +[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7) +[](https://taginfo.openstreetmap.org/keys/cyclestreet#values) [cyclestreet](https://wiki.openstreetmap.org/wiki/Key:cyclestreet) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes) [yes](https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3Dyes) [](https://wiki.openstreetmap.org/wiki/Tag:cyclestreet%3D) +[](https://taginfo.openstreetmap.org/keys/maxspeed#values) [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed) | [nat](../SpecialInputElements.md#nat) | [20](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D20) [30](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D30) [50](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D50) [70](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D70) [90](https://wiki.openstreetmap.org/wiki/Tag:maxspeed%3D90) +[](https://taginfo.openstreetmap.org/keys/cycleway:surface#values) [cycleway:surface](https://wiki.openstreetmap.org/wiki/Key:cycleway:surface) | [string](../SpecialInputElements.md#string) | [asphalt](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dasphalt) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpaving_stones) [concrete](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dconcrete) [unhewn_cobblestone](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dunhewn_cobblestone) [sett](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dsett) [wood](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dwood) [gravel](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dgravel) [fine_gravel](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dfine_gravel) [pebblestone](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dpebblestone) [ground](https://wiki.openstreetmap.org/wiki/Tag:cycleway:surface%3Dground) +[](https://taginfo.openstreetmap.org/keys/cycleway:smoothness#values) [cycleway:smoothness](https://wiki.openstreetmap.org/wiki/Key:cycleway:smoothness) | Multiple choice | [excellent](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dexcellent) [good](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dgood) [intermediate](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dintermediate) [bad](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dbad) [very_bad](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_bad) [horrible](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dhorrible) [very_horrible](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dvery_horrible) [impassable](https://wiki.openstreetmap.org/wiki/Tag:cycleway:smoothness%3Dimpassable) +[](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) [unhewn_cobblestone](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dunhewn_cobblestone) [sett](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsett) [wood](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwood) [gravel](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgravel) [fine_gravel](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dfine_gravel) [pebblestone](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpebblestone) [ground](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground) +[](https://taginfo.openstreetmap.org/keys/smoothness#values) [smoothness](https://wiki.openstreetmap.org/wiki/Key:smoothness) | Multiple choice | [excellent](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dexcellent) [good](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dgood) [intermediate](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dintermediate) [bad](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dbad) [very_bad](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_bad) [horrible](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dhorrible) [very_horrible](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dvery_horrible) [impassable](https://wiki.openstreetmap.org/wiki/Tag:smoothness%3Dimpassable) +[](https://taginfo.openstreetmap.org/keys/width:carriageway#values) [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) | [length](../SpecialInputElements.md#length) | +[](https://taginfo.openstreetmap.org/keys/cycleway:traffic_sign#values) [cycleway:traffic_sign](https://wiki.openstreetmap.org/wiki/Key:cycleway:traffic_sign) | Multiple choice | [BE:D7](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D7) [BE:D9](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D9) [BE:D10](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3DBE:D10) [none](https://wiki.openstreetmap.org/wiki/Tag:cycleway:traffic_sign%3Dnone) +[](https://taginfo.openstreetmap.org/keys/traffic_sign#values) [traffic_sign](https://wiki.openstreetmap.org/wiki/Key:traffic_sign) | Multiple choice | [BE:D7](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D7) [BE:D9](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D9) [BE:D10](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3DBE:D10) [none](https://wiki.openstreetmap.org/wiki/Tag:traffic_sign%3Dnone) +[](https://taginfo.openstreetmap.org/keys/cycleway:buffer#values) [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) | [length](../SpecialInputElements.md#length) | +[](https://taginfo.openstreetmap.org/keys/cycleway:separation#values) [cycleway:separation](https://wiki.openstreetmap.org/wiki/Key:cycleway:separation) | Multiple choice | [dashed_line](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Ddashed_line) [solid_line](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dsolid_line) [parking_lane](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dparking_lane) [kerb](https://wiki.openstreetmap.org/wiki/Tag:cycleway:separation%3Dkerb) +[](https://taginfo.openstreetmap.org/keys/separation#values) [separation](https://wiki.openstreetmap.org/wiki/Key:separation) | Multiple choice | [dashed_line](https://wiki.openstreetmap.org/wiki/Tag:separation%3Ddashed_line) [solid_line](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dsolid_line) [parking_lane](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dparking_lane) [kerb](https://wiki.openstreetmap.org/wiki/Tag:separation%3Dkerb) + + + + +### Cycleway type for a road + + + +The question is **What kind of cycleway is here?** + + + + + + - **There is a shared lane** corresponds with cycleway=shared_lane + - **There is a lane next to the road (separated with paint)** corresponds with cycleway=lane + - **There is a track, but no cycleway drawn separately from this road on the map.** corresponds with cycleway=track + - **There is a separately drawn cycleway** corresponds with cycleway=separate + - **There is no cycleway** corresponds with cycleway=no + - **There is no cycleway** corresponds with cycleway=no + + + + +### is lit? + + + +The question is **Is this street lit?** + + + + + + - **This street is lit** corresponds with lit=yes + - **This road is not lit** corresponds with lit=no + - **This road is lit at night** corresponds with lit=sunset-sunrise_This option cannot be chosen as answer_ + - **This road is lit 24/7** corresponds with lit=24/7 + + + + +### Is this a cyclestreet? (For a road) + + + +The question is **Is this a cyclestreet?** + + + + + + - **This is a cyclestreet, and a 30km/h zone.** corresponds with cyclestreet=yes + - **This is a cyclestreet** corresponds with cyclestreet=yes + - **This is not a cyclestreet.** corresponds with + + + + +### Maxspeed (for road) + + + +The question is **What is the maximum speed in this street?** + +This rendering asks information about the property [maxspeed](https://wiki.openstreetmap.org/wiki/Key:maxspeed) +This is rendered with `The maximum speed on this road is {maxspeed} km/h` + + + + - **The maximum speed is 20 km/h** corresponds with maxspeed=20 + - **The maximum speed is 30 km/h** corresponds with maxspeed=30 + - **The maximum speed is 50 km/h** corresponds with maxspeed=50 + - **The maximum speed is 70 km/h** corresponds with maxspeed=70 + - **The maximum speed is 90 km/h** corresponds with maxspeed=90 + + + + +### Cycleway:surface + + + +The question is **What is the surface of the cycleway made from?** + +This rendering asks information about the property [cycleway:surface](https://wiki.openstreetmap.org/wiki/Key:cycleway:surface) +This is rendered with `This cyleway is made of {cycleway:surface}` + + + + - **This cycleway is unpaved** corresponds with cycleway:surface=unpaved_This option cannot be chosen as answer_ + - **This cycleway is paved** corresponds with cycleway:surface=paved_This option cannot be chosen as answer_ + - **This cycleway is made of asphalt** corresponds with cycleway:surface=asphalt + - **This cycleway is made of smooth paving stones** corresponds with cycleway:surface=paving_stones + - **This cycleway is made of concrete** corresponds with cycleway:surface=concrete + - **This cycleway is made of cobblestone (unhewn or sett)** corresponds with cycleway:surface=cobblestone_This option cannot be chosen as answer_ + - **This cycleway is made of raw, natural cobblestone** corresponds with cycleway:surface=unhewn_cobblestone + - **This cycleway is made of flat, square cobblestone** corresponds with cycleway:surface=sett + - **This cycleway is made of wood** corresponds with cycleway:surface=wood + - **This cycleway is made of gravel** corresponds with cycleway:surface=gravel + - **This cycleway is made of fine gravel** corresponds with cycleway:surface=fine_gravel + - **This cycleway is made of pebblestone** corresponds with cycleway:surface=pebblestone + - **This cycleway is made from raw ground** corresponds with cycleway:surface=ground + + + + +### Cycleway:smoothness + + + +The question is **What is the smoothness of this cycleway?** + + + + + + - **Usable for thin rollers: rollerblade, skateboard** corresponds with cycleway:smoothness=excellent + - **Usable for thin wheels: racing bike** corresponds with cycleway:smoothness=good + - **Usable for normal wheels: city bike, wheelchair, scooter** corresponds with cycleway:smoothness=intermediate + - **Usable for robust wheels: trekking bike, car, rickshaw** corresponds with cycleway:smoothness=bad + - **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds with cycleway:smoothness=very_bad + - **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds with cycleway:smoothness=horrible + - **Usable for specialized off-road vehicles: tractor, ATV** corresponds with cycleway:smoothness=very_horrible + - **Impassable / No wheeled vehicle** corresponds with cycleway:smoothness=impassable + + + + +### Surface of the road + + + +The question is **What is the surface of the street made from?** + +This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface) +This is rendered with `This road is made of {surface}` + + + + - **This cycleway is unhardened** corresponds with surface=unpaved_This option cannot be chosen as answer_ + - **This cycleway is paved** corresponds with surface=paved_This option cannot be chosen as answer_ + - **This cycleway is made of asphalt** corresponds with surface=asphalt + - **This cycleway is made of smooth paving stones** corresponds with surface=paving_stones + - **This cycleway is made of concrete** corresponds with surface=concrete + - **This cycleway is made of cobblestone (unhewn or sett)** corresponds with surface=cobblestone_This option cannot be chosen as answer_ + - **This cycleway is made of raw, natural cobblestone** corresponds with surface=unhewn_cobblestone + - **This cycleway is made of flat, square cobblestone** corresponds with surface=sett + - **This cycleway is made of wood** corresponds with surface=wood + - **This cycleway is made of gravel** corresponds with surface=gravel + - **This cycleway is made of fine gravel** corresponds with surface=fine_gravel + - **This cycleway is made of pebblestone** corresponds with surface=pebblestone + - **This cycleway is made from raw ground** corresponds with surface=ground + + + + +### Surface of the street + + + +The question is **What is the smoothness of this street?** + + + + + + - **Usable for thin rollers: rollerblade, skateboard** corresponds with smoothness=excellent + - **Usable for thin wheels: racing bike** corresponds with smoothness=good + - **Usable for normal wheels: city bike, wheelchair, scooter** corresponds with smoothness=intermediate + - **Usable for robust wheels: trekking bike, car, rickshaw** corresponds with smoothness=bad + - **Usable for vehicles with high clearance: light duty off-road vehicle** corresponds with smoothness=very_bad + - **Usable for off-road vehicles: heavy duty off-road vehicle** corresponds with smoothness=horrible + - **Usable for specialized off-road vehicles: tractor, ATV** corresponds with smoothness=very_horrible + - **Impassable / No wheeled vehicle** corresponds with smoothness=impassable + + + + +### width:carriageway + + + +The question is **What is the carriage width of this road (in meters)?
This is measured curb to curb and thus includes the width of parallell parking lanes** + +This rendering asks information about the property [width:carriageway](https://wiki.openstreetmap.org/wiki/Key:width:carriageway) +This is rendered with `The carriage width of this road is {width:carriageway}m` + + + +### cycleway-lane-track-traffic-signs + + + +The question is **What traffic sign does this cycleway have?** + + + + + + - **Compulsory cycleway ** corresponds with cycleway:traffic_sign=BE:D7 + - **Compulsory cycleway (with supplementary sign)
** corresponds with cycleway:traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_ + - **Segregated foot/cycleway ** corresponds with cycleway:traffic_sign=BE:D9 + - **Unsegregated foot/cycleway ** corresponds with cycleway:traffic_sign=BE:D10 + - **No traffic sign present** corresponds with cycleway:traffic_sign=none + + + + +### cycleway-traffic-signs + + + +The question is **What traffic sign does this cycleway have?** + + + + + + - **Compulsory cycleway ** corresponds with traffic_sign=BE:D7 + - **Compulsory cycleway (with supplementary sign)
** corresponds with traffic_sign~^BE:D7;.*$_This option cannot be chosen as answer_ + - **Segregated foot/cycleway ** corresponds with traffic_sign=BE:D9 + - **Unsegregated foot/cycleway ** corresponds with traffic_sign=BE:D10 + - **No traffic sign present** corresponds with traffic_sign=none + + + + +### cycleway-traffic-signs-supplementary + + + +The question is **Does the traffic sign D7 () have a supplementary sign?** + + + + + + - **** corresponds with cycleway:traffic_sign=BE:D7;BE:M6 + - **** corresponds with cycleway:traffic_sign=BE:D7;BE:M13 + - **** corresponds with cycleway:traffic_sign=BE:D7;BE:M14 + - **** corresponds with cycleway:traffic_sign=BE:D7;BE:M7 + - **** corresponds with cycleway:traffic_sign=BE:D7;BE:M15 + - **** corresponds with cycleway:traffic_sign=BE:D7;BE:M16 + - **No supplementary traffic sign present** corresponds with cycleway:traffic_sign:supplementary=none + + + + +### cycleway-traffic-signs-D7-supplementary + + + +The question is **Does the traffic sign D7 () have a supplementary sign?** + + + + + + - **** corresponds with traffic_sign=BE:D7;BE:M6 + - **** corresponds with traffic_sign=BE:D7;BE:M13 + - **** corresponds with traffic_sign=BE:D7;BE:M14 + - **** corresponds with traffic_sign=BE:D7;BE:M7 + - **** corresponds with :traffic_sign=BE:D7;BE:M15 + - **** corresponds with traffic_sign=BE:D7;BE:M16 + - **No supplementary traffic sign present** corresponds with traffic_sign:supplementary=none + + + + +### cycleways_and_roads-cycleway:buffer + + + +The question is **How wide is the gap between the cycleway and the road?** + +This rendering asks information about the property [cycleway:buffer](https://wiki.openstreetmap.org/wiki/Key:cycleway:buffer) +This is rendered with `The buffer besides this cycleway is {cycleway:buffer} m` + + + +### cyclelan-segregation + + + +The question is **How is this cycleway separated from the road?** + + + + + + - **This cycleway is separated by a dashed line** corresponds with cycleway:separation=dashed_line + - **This cycleway is separated by a solid line** corresponds with cycleway:separation=solid_line + - **This cycleway is separated by a parking lane** corresponds with cycleway:separation=parking_lane + - **This cycleway is separated by a kerb** corresponds with cycleway:separation=kerb + + + + +### cycleway-segregation + + + +The question is **How is this cycleway separated from the road?** + + + + + + - **This cycleway is separated by a dashed line** corresponds with separation=dashed_line + - **This cycleway is separated by a solid line** corresponds with separation=solid_line + - **This cycleway is separated by a parking lane** corresponds with separation=parking_lane + - **This cycleway is separated by a kerb** corresponds with separation=kerb + + +This document is autogenerated from assets/layers/cycleways_and_roads/cycleways_and_roads.json \ No newline at end of file diff --git a/Docs/Layers/defibrillator.md b/Docs/Layers/defibrillator.md new file mode 100644 index 0000000000..f0f1951e49 --- /dev/null +++ b/Docs/Layers/defibrillator.md @@ -0,0 +1,321 @@ + + + defibrillator +=============== + + + + + +A layer showing defibrillators which can be used in case of emergency. This contains public defibrillators, but also defibrillators which might need staff to fetch the actual device + + + + +## Table of contents + +1. [defibrillator](#defibrillator) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [defibrillator-indoors](#defibrillator-indoors) + + [defibrillator-access](#defibrillator-access) + + [defibrillator-defibrillator](#defibrillator-defibrillator) + + [defibrillator-level](#defibrillator-level) + + [defibrillator-defibrillator:location](#defibrillator-defibrillatorlocation) + + [defibrillator-defibrillator:location:en](#defibrillator-defibrillatorlocation:en) + + [defibrillator-defibrillator:location:fr](#defibrillator-defibrillatorlocation:fr) + + [wheelchair-access](#wheelchair-access) + + [defibrillator-ref](#defibrillator-ref) + + [defibrillator-email](#defibrillator-email) + + [defibrillator-phone](#defibrillator-phone) + + [defibrillator-opening_hours](#defibrillator-opening_hours) + + [defibrillator-description](#defibrillator-description) + + [defibrillator-survey:date](#defibrillator-surveydate) + + [defibrillator-fixme](#defibrillator-fixme) + + + + + + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) + + + + +#### Themes using this layer + + + + + + - [aed](https://mapcomplete.osm.be/aed) + + +[Go to the source code](../assets/layers/defibrillator/defibrillator.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - emergency=defibrillator + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) +[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) +[](https://taginfo.openstreetmap.org/keys/defibrillator#values) [defibrillator](https://wiki.openstreetmap.org/wiki/Key:defibrillator) | Multiple choice | [manual](https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dmanual) [automatic](https://wiki.openstreetmap.org/wiki/Tag:defibrillator%3Dautomatic) +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [int](../SpecialInputElements.md#int) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) +[](https://taginfo.openstreetmap.org/keys/defibrillator:location#values) [defibrillator:location](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location) | [text](../SpecialInputElements.md#text) | +[](https://taginfo.openstreetmap.org/keys/defibrillator:location:en#values) [defibrillator:location:en](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:en) | [text](../SpecialInputElements.md#text) | +[](https://taginfo.openstreetmap.org/keys/defibrillator:location:fr#values) [defibrillator:location:fr](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:fr) | [text](../SpecialInputElements.md#text) | +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [text](../SpecialInputElements.md#text) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | +[](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) +[](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [text](../SpecialInputElements.md#text) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### defibrillator-indoors + + + +The question is **Is this defibrillator located indoors?** + + + + + + - **This defibrillator is located indoors** corresponds with indoor=yes + - **This defibrillator is located outdoors** corresponds with indoor=no + + + + +### defibrillator-access + + + +The question is **Is this defibrillator freely accessible?** + +This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) +This is rendered with `Access is {access}` + + + + - **Publicly accessible** corresponds with access=yes + - **Publicly accessible** corresponds with access=public_This option cannot be chosen as answer_ + - **Only accessible to customers** corresponds with access=customers + - **Not accessible to the general public (e.g. only accesible to staff, the owners, ...)** corresponds with access=private + - **Not accessible, possibly only for professional use** corresponds with access=no + + + + +### defibrillator-defibrillator + + + +The question is **Is this a a regular automatic defibrillator or a manual defibrillator for professionals only?** + + + + + + - **There is no info about the type of device** corresponds with _This option cannot be chosen as answer_ + - **This is a manual defibrillator for professionals** corresponds with defibrillator=manual + - **This is a normal automatic defibrillator** corresponds with defibrillator=automatic + - **This is a special type of defibrillator: {defibrillator}** corresponds with defibrillator~^..*$_This option cannot be chosen as answer_ + + + + +### defibrillator-level + + + +The question is **On which floor is this defibrillator located?** + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) +This is rendered with `This defibrillator is on floor {level}` + + + + - **This defibrillator is on the ground floor** corresponds with level=0 + - **This defibrillator is on the first floor** corresponds with level=1 + + + + +### defibrillator-defibrillator:location + + + +The question is **Please give some explanation on where the defibrillator can be found (in the local language)** + +This rendering asks information about the property [defibrillator:location](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location) +This is rendered with `Extra information about the location (in the local languagel):
{defibrillator:location}` + + + +### defibrillator-defibrillator:location:en + + + +The question is **Please give some explanation on where the defibrillator can be found (in English)** + +This rendering asks information about the property [defibrillator:location:en](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:en) +This is rendered with `Extra information about the location (in English):
{defibrillator:location:en}` + + + +### defibrillator-defibrillator:location:fr + + + +The question is **Please give some explanation on where the defibrillator can be found (in French)** + +This rendering asks information about the property [defibrillator:location:fr](https://wiki.openstreetmap.org/wiki/Key:defibrillator:location:fr) +This is rendered with `Extra information about the location (in French):
{defibrillator:location:fr}` + + + +### wheelchair-access + + + +The question is **Is this place accessible with a wheelchair?** + + + + + + - **This place is specially adapted for wheelchair users** corresponds with wheelchair=designated + - **This place is easily reachable with a wheelchair** corresponds with wheelchair=yes + - **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with wheelchair=limited + - **This place is not reachable with a wheelchair** corresponds with wheelchair=no + + + + +### defibrillator-ref + + + +The question is **What is the official identification number of the device? (if visible on device)** + +This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) +This is rendered with `Official identification number of the device: {ref}` + + + +### defibrillator-email + + + +The question is **What is the email for questions about this defibrillator?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `Email for questions about this defibrillator: {email}` + + + +### defibrillator-phone + + + +The question is **What is the phone number for questions about this defibrillator?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `Telephone for questions about this defibrillator: {phone}` + + + +### defibrillator-opening_hours + + + +The question is **At what times is this defibrillator available?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `{opening_hours_table(opening_hours)}` + + + + - **24/7 opened (including holidays)** corresponds with opening_hours=24/7 + + + + +### defibrillator-description + + + +The question is **Is there any useful information for users that you haven't been able to describe above? (leave blank if no)** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `Additional information: {description}` + + + +### defibrillator-survey:date + + + +The question is **When was this defibrillator last surveyed?** + +This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) +This is rendered with `This defibrillator was last surveyed on {survey:date}` + + + + - **Checked today!** corresponds with survey:date= + + + + +### defibrillator-fixme + + + +The question is **Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)** + +This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) +This is rendered with `Extra information for OpenStreetMap experts: {fixme}` + +This document is autogenerated from assets/layers/defibrillator/defibrillator.json \ No newline at end of file diff --git a/Docs/Layers/direction.md b/Docs/Layers/direction.md new file mode 100644 index 0000000000..aab14e5ea8 --- /dev/null +++ b/Docs/Layers/direction.md @@ -0,0 +1,63 @@ + + + direction +=========== + + + + + +This layer visualizes directions + + + + +## Table of contents + +1. [direction](#direction) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + + + + +#### Themes using this layer + + + + + + - [surveillance](https://mapcomplete.osm.be/surveillance) + + +[Go to the source code](../assets/layers/direction/direction.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - camera:direction~^..*$|direction~^..*$ + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/direction/direction.json \ No newline at end of file diff --git a/Docs/Layers/drinking_water.md b/Docs/Layers/drinking_water.md new file mode 100644 index 0000000000..37c4186a83 --- /dev/null +++ b/Docs/Layers/drinking_water.md @@ -0,0 +1,136 @@ + + + drinking_water +================ + + + + + +A layer showing drinking water fountains + + + + +## Table of contents + +1. [drinking_water](#drinking_water) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [Still in use?](#still-in-use) + + [Bottle refill](#bottle-refill) + + [render-closest-drinking-water](#render-closest-drinking-water) + + + + + + - This layer will automatically load [drinking_water](./drinking_water.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _closest_other_drinking_water) + - This layer is needed as dependency for layer [drinking_water](#drinking_water) + + + + +#### Themes using this layer + + + + + + - [cyclofix](https://mapcomplete.osm.be/cyclofix) + - [drinking_water](https://mapcomplete.osm.be/drinking_water) + - [nature](https://mapcomplete.osm.be/nature) + + +[Go to the source code](../assets/layers/drinking_water/drinking_water.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=drinking_water + - access!~^permissive$ + - access!~^private$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/operational_status#values) [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3D) [broken](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dbroken) [closed](https://wiki.openstreetmap.org/wiki/Tag:operational_status%3Dclosed) +[](https://taginfo.openstreetmap.org/keys/bottle#values) [bottle](https://wiki.openstreetmap.org/wiki/Key:bottle) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:bottle%3Dno) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Still in use? + + + +The question is **Is this drinking water spot still operational?** + +This rendering asks information about the property [operational_status](https://wiki.openstreetmap.org/wiki/Key:operational_status) +This is rendered with `The operational status is {operational_status}` + + + + - **This drinking water works** corresponds with + - **This drinking water is broken** corresponds with operational_status=broken + - **This drinking water is closed** corresponds with operational_status=closed + + + + +### Bottle refill + + + +The question is **How easy is it to fill water bottles?** + + + + + + - **It is easy to refill water bottles** corresponds with bottle=yes + - **Water bottles may not fit** corresponds with bottle=no + + + + +### render-closest-drinking-water + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/drinking_water/drinking_water.json \ No newline at end of file diff --git a/Docs/Layers/dumpstations.md b/Docs/Layers/dumpstations.md new file mode 100644 index 0000000000..9b00170d6c --- /dev/null +++ b/Docs/Layers/dumpstations.md @@ -0,0 +1,201 @@ + + + dumpstations +============== + + + + + +Sanitary dump stations + + + + +## Table of contents + +1. [dumpstations](#dumpstations) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [dumpstations-fee](#dumpstations-fee) + + [dumpstations-charge](#dumpstations-charge) + + [dumpstations-waterpoint](#dumpstations-waterpoint) + + [dumpstations-grey-water](#dumpstations-grey-water) + + [dumpstations-chemical-waste](#dumpstations-chemical-waste) + + [dumpstations-access](#dumpstations-access) + + [dumpstations-network](#dumpstations-network) + + + + + + + + + + +#### Themes using this layer + + + + + + - [campersite](https://mapcomplete.osm.be/campersite) + + +[Go to the source code](../assets/layers/dumpstations/dumpstations.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=sanitary_dump_station + - vehicle!~^no$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/water_point#values) [water_point](https://wiki.openstreetmap.org/wiki/Key:water_point) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:water_point%3Dno) +[](https://taginfo.openstreetmap.org/keys/sanitary_dump_station:grey_water#values) [sanitary_dump_station:grey_water](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:grey_water) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:grey_water%3Dno) +[](https://taginfo.openstreetmap.org/keys/sanitary_dump_station:chemical_toilet#values) [sanitary_dump_station:chemical_toilet](https://wiki.openstreetmap.org/wiki/Key:sanitary_dump_station:chemical_toilet) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sanitary_dump_station:chemical_toilet%3Dno) +[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [network](https://wiki.openstreetmap.org/wiki/Tag:access%3Dnetwork) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) +[](https://taginfo.openstreetmap.org/keys/network#values) [network](https://wiki.openstreetmap.org/wiki/Key:network) | [string](../SpecialInputElements.md#string) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### dumpstations-fee + + + +The question is **Does this place charge a fee?** + + + + + + - **You need to pay for use** corresponds with fee=yes + - **Can be used for free** corresponds with fee=no + + + + +### dumpstations-charge + + + +The question is **How much does this place charge?** + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) +This is rendered with `This place charges {charge}` + + + +### dumpstations-waterpoint + + + +The question is **Does this place have a water point?** + + + + + + - **This place has a water point** corresponds with water_point=yes + - **This place does not have a water point** corresponds with water_point=no + + + + +### dumpstations-grey-water + + + +The question is **Can you dispose of grey water here?** + + + + + + - **You can dispose of grey water here** corresponds with sanitary_dump_station:grey_water=yes + - **You cannot dispose of gray water here** corresponds with sanitary_dump_station:grey_water=no + + + + +### dumpstations-chemical-waste + + + +The question is **Can you dispose of chemical toilet waste here?** + + + + + + - **You can dispose of chemical toilet waste here** corresponds with sanitary_dump_station:chemical_toilet=yes + - **You cannot dispose of chemical toilet waste here** corresponds with sanitary_dump_station:chemical_toilet=no + + + + +### dumpstations-access + + + +The question is **Who can use this dump station?** + + + + + + - **You need a network key/code to use this** corresponds with access=network + - **You need to be a customer of camping/campersite to use this place** corresponds with access=customers + - **Anyone can use this dump station** corresponds with access=public_This option cannot be chosen as answer_ + - **Anyone can use this dump station** corresponds with access=yes + + + + +### dumpstations-network + + + +The question is **What network is this place a part of? (skip if none)** + +This rendering asks information about the property [network](https://wiki.openstreetmap.org/wiki/Key:network) +This is rendered with `This station is part of network {network}` + +This document is autogenerated from assets/layers/dumpstations/dumpstations.json \ No newline at end of file diff --git a/Docs/Layers/entrance.md b/Docs/Layers/entrance.md new file mode 100644 index 0000000000..994d06b1cf --- /dev/null +++ b/Docs/Layers/entrance.md @@ -0,0 +1,168 @@ + + + entrance +========== + + + + + +A layer showing entrances and offering capabilities to survey some advanced data which is important for e.g. wheelchair users (but also bicycle users, people who want to deliver, ...) + + + + +## Table of contents + +1. [entrance](#entrance) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [Entrance type](#entrance-type) + + [Door_type](#door_type) + + [automatic_door](#automatic_door) + + [width](#width) + + + + + + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + - This layer will automatically load [pedestrian_path](./pedestrian_path.md) into the layout as it depends on it: a preset snaps to this layer (presets[0]) + + + + +#### Themes using this layer + + + + + + - [entrances](https://mapcomplete.osm.be/entrances) + + +[Go to the source code](../assets/layers/entrance/entrance.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - entrance~^..*$|indoor=door + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/entrance#values) [entrance](https://wiki.openstreetmap.org/wiki/Key:entrance) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:entrance%3D) [main](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dmain) [secondary](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dsecondary) [service](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dservice) [exit](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dexit) [entrance](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dentrance) [emergency](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Demergency) [home](https://wiki.openstreetmap.org/wiki/Tag:entrance%3Dhome) +[](https://taginfo.openstreetmap.org/keys/door#values) [door](https://wiki.openstreetmap.org/wiki/Key:door) | Multiple choice | [hinged](https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged) [revolving](https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving) [sliding](https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding) [overhead](https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead) [no](https://wiki.openstreetmap.org/wiki/Tag:door%3Dno) +[](https://taginfo.openstreetmap.org/keys/automatic_door#values) [automatic_door](https://wiki.openstreetmap.org/wiki/Key:automatic_door) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno) [motion](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion) [floor](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor) [button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton) [slowdown_button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button) [continuous](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous) [serviced_on_button_press](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press) [serviced_on_request](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request) +[](https://taginfo.openstreetmap.org/keys/width#values) [width](https://wiki.openstreetmap.org/wiki/Key:width) | [length](../SpecialInputElements.md#length) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Entrance type + + + +The question is **What type of entrance is this?** + + + + + + - **No specific entrance type is known** corresponds with entrance=yes_This option cannot be chosen as answer_ + - **This is an indoor door, separating a room or a corridor within a single building** corresponds with indoor=door + - **This is the main entrance** corresponds with entrance=main + - **This is a secondary entrance** corresponds with entrance=secondary + - **This is a service entrance - normally only used for employees, delivery, ...** corresponds with entrance=service + - **This is an exit where one can not enter** corresponds with entrance=exit + - **This is an entrance where one can only enter (but not exit)** corresponds with entrance=entrance + - **This is emergency exit** corresponds with entrance=emergency + - **This is the entrance to a private home** corresponds with entrance=home + + + + +### Door_type + + + +The question is **What is the type of this door?
Wether or not the door is automated is asked in the next question** + + + + + + - **The door type is not known** corresponds with door=yes_This option cannot be chosen as answer_ + - **A classical, hinged door supported by joints** corresponds with door=hinged + - **A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure** corresponds with door=revolving + - **A sliding door where the door slides sidewards, typically parallel with a wall** corresponds with door=sliding + - **A door which rolls from overhead, typically seen for garages** corresponds with door=overhead + - **This is an entrance without a physical door** corresponds with door=no + + + + +### automatic_door + + + +The question is **Is this door automated?** + + + + + + - **This is an automatic door** corresponds with automatic_door=yes_This option cannot be chosen as answer_ + - **This door is not automated** corresponds with automatic_door=no + - **This door will open automatically when motion is detected** corresponds with automatic_door=motion + - **This door will open automatically when a sensor in the floor is triggered** corresponds with automatic_door=floor + - **This door will open automatically when a button is pressed** corresponds with automatic_door=button + - **This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users** corresponds with automatic_door=slowdown_button + - **This door revolves automatically all the time** corresponds with automatic_door=continuous + - **This door will be opened by staff when requested by pressing a buttonautomatic_door=serviced_on_button_press + - **This door will be opened by staff when requested** corresponds with automatic_door=serviced_on_request + + + + +### width + + + +The question is **What is the width of this door/entrance?** + +This rendering asks information about the property [width](https://wiki.openstreetmap.org/wiki/Key:width) +This is rendered with `This door has a width of {canonical(width)} meter` + +This document is autogenerated from assets/layers/entrance/entrance.json \ No newline at end of file diff --git a/Docs/Layers/etymology.md b/Docs/Layers/etymology.md new file mode 100644 index 0000000000..eef65ab51c --- /dev/null +++ b/Docs/Layers/etymology.md @@ -0,0 +1,179 @@ + + + etymology +=========== + + + + + +All objects which have an etymology known + + + + +## Table of contents + +1. [etymology](#etymology) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [etymology-images-from-wikipedia](#etymology-images-from-wikipedia) + + [wikipedia-etymology](#wikipedia-etymology) + + [zoeken op inventaris onroerend erfgoed](#zoeken-op-inventaris-onroerend-erfgoed) + + [simple etymology](#simple-etymology) + + [questions](#questions) + + [street-name-sign-image](#street-name-sign-image) + + [minimap](#minimap) + + [etymology_multi_apply](#etymology_multi_apply) + + [wikipedia](#wikipedia) + + + + + + + + + + +#### Themes using this layer + + + + + + - [etymology](https://mapcomplete.osm.be/etymology) + + +[Go to the source code](../assets/layers/etymology/etymology.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - name:etymology:wikidata~^..*$|name:etymology~^..*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name:etymology:wikidata#values) [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | +[](https://taginfo.openstreetmap.org/keys/name:etymology#values) [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) | [string](../SpecialInputElements.md#string) | [unknown](https://wiki.openstreetmap.org/wiki/Tag:name:etymology%3Dunknown) + + + + +### etymology-images-from-wikipedia + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### wikipedia-etymology + + + +The question is **What is the Wikidata-item that this object is named after?** + +This rendering asks information about the property [name:etymology:wikidata](https://wiki.openstreetmap.org/wiki/Key:name:etymology:wikidata) +This is rendered with `

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}` + + + +### zoeken op inventaris onroerend erfgoed + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### simple etymology + + + +The question is **What is this object named after?
This might be written on the street name sign** + +This rendering asks information about the property [name:etymology](https://wiki.openstreetmap.org/wiki/Key:name:etymology) +This is rendered with `Named after {name:etymology}` + + + + - **The origin of this name is unknown in all literature** corresponds with name:etymology=unknown + + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### street-name-sign-image + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### etymology_multi_apply + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### wikipedia + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/etymology/etymology.json \ No newline at end of file diff --git a/Docs/Layers/extinguisher.md b/Docs/Layers/extinguisher.md new file mode 100644 index 0000000000..3e99046540 --- /dev/null +++ b/Docs/Layers/extinguisher.md @@ -0,0 +1,101 @@ + + + extinguisher +============== + + + + + +Map layer to show fire hydrants. + + + + +## Table of contents + +1. [extinguisher](#extinguisher) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [extinguisher-location](#extinguisher-location) + + [images](#images) + + + + + + + + + + +#### Themes using this layer + + + + + + - [hailhydrant](https://mapcomplete.osm.be/hailhydrant) + + +[Go to the source code](../assets/layers/extinguisher/extinguisher.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - emergency=fire_extinguisher + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/location#values) [location](https://wiki.openstreetmap.org/wiki/Key:location) | [string](../SpecialInputElements.md#string) | [indoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Dindoor) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:location%3Doutdoor) + + + + +### extinguisher-location + + + +The question is **Where is it positioned?** + +This rendering asks information about the property [location](https://wiki.openstreetmap.org/wiki/Key:location) +This is rendered with `Location: {location}` + + + + - **Found indoors.** corresponds with location=indoor + - **Found outdoors.** corresponds with location=outdoor + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/extinguisher/extinguisher.json \ No newline at end of file diff --git a/Docs/Layers/facadegardens.md b/Docs/Layers/facadegardens.md new file mode 100644 index 0000000000..47817dacf8 --- /dev/null +++ b/Docs/Layers/facadegardens.md @@ -0,0 +1,197 @@ + + + facadegardens +=============== + + + + + +Facade gardens + + + + +## Table of contents + +1. [facadegardens](#facadegardens) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [facadegardens-direction](#facadegardens-direction) + + [facadegardens-sunshine](#facadegardens-sunshine) + + [facadegardens-rainbarrel](#facadegardens-rainbarrel) + + [facadegardens-start_date](#facadegardens-start_date) + + [facadegardens-edible](#facadegardens-edible) + + [facadegardens-plants](#facadegardens-plants) + + [facadegardens-description](#facadegardens-description) + + + + + + + + + + +#### Themes using this layer + + + + + + - [facadegardens](https://mapcomplete.osm.be/facadegardens) + + +[Go to the source code](../assets/layers/facadegardens/facadegardens.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=garden + - garden:type=facade_garden + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/direction#values) [direction](https://wiki.openstreetmap.org/wiki/Key:direction) | [direction](../SpecialInputElements.md#direction) | +[](https://taginfo.openstreetmap.org/keys/direct_sunlight#values) [direct_sunlight](https://wiki.openstreetmap.org/wiki/Key:direct_sunlight) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dyes) [partial](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dpartial) [no](https://wiki.openstreetmap.org/wiki/Tag:direct_sunlight%3Dno) +[](https://taginfo.openstreetmap.org/keys/rain_barrel#values) [rain_barrel](https://wiki.openstreetmap.org/wiki/Key:rain_barrel) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:rain_barrel%3Dno) +[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [text](../SpecialInputElements.md#text) | +[](https://taginfo.openstreetmap.org/keys/edible#values) [edible](https://wiki.openstreetmap.org/wiki/Key:edible) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:edible%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:edible%3Dno) +[](https://taginfo.openstreetmap.org/keys/plant#values) [plant](https://wiki.openstreetmap.org/wiki/Key:plant) | Multiple choice | [vine](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dvine) [flower](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dflower) [shrub](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dshrub) [groundcover](https://wiki.openstreetmap.org/wiki/Tag:plant%3Dgroundcover) +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### facadegardens-direction + + + +The question is **What is the orientation of the garden?** + +This rendering asks information about the property [direction](https://wiki.openstreetmap.org/wiki/Key:direction) +This is rendered with `Orientation: {direction} (where 0=N and 90=O)` + + + +### facadegardens-sunshine + + + +The question is **Is the garden shaded or sunny?** + + + + + + - **The garden is in full sun** corresponds with direct_sunlight=yes + - **The garden is in partial shade** corresponds with direct_sunlight=partial + - **The garden is in the shade** corresponds with direct_sunlight=no + + + + +### facadegardens-rainbarrel + + + +The question is **Is there a water barrel installed for the garden?** + + + + + + - **There is a rain barrel** corresponds with rain_barrel=yes + - **There is no rain barrel** corresponds with rain_barrel=no + + + + +### facadegardens-start_date + + + +The question is **When was the garden constructed? (a year is sufficient)** + +This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) +This is rendered with `Construction date of the garden: {start_date}` + + + +### facadegardens-edible + + + +The question is **Are there any edible plants?** + + + + + + - **There are edible plants** corresponds with edible=yes + - **There are no edible plants** corresponds with edible=no + + + + +### facadegardens-plants + + + +The question is **What kinds of plants grow here?** + + + + + + - **There are vines** corresponds with plant=vine + - **There are flowering plants** corresponds with plant=flower + - **There are shrubs** corresponds with plant=shrub + - **There are groundcovering plants** corresponds with plant=groundcover + + + + +### facadegardens-description + + + +The question is **Extra describing info about the garden (if needed and not yet described above)** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `More details: {description}` + +This document is autogenerated from assets/layers/facadegardens/facadegardens.json \ No newline at end of file diff --git a/Docs/Layers/fietsstraat.md b/Docs/Layers/fietsstraat.md new file mode 100644 index 0000000000..4d78584c11 --- /dev/null +++ b/Docs/Layers/fietsstraat.md @@ -0,0 +1,74 @@ + + + fietsstraat +============= + + + + + +A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist + + + + +## Table of contents + +1. [fietsstraat](#fietsstraat) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + + + + + + + + + +#### Themes using this layer + + + + + + - [cyclestreets](https://mapcomplete.osm.be/cyclestreets) + + +[Go to the source code](../assets/layers/fietsstraat/fietsstraat.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - cyclestreet=yes + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/fietsstraat/fietsstraat.json \ No newline at end of file diff --git a/Docs/Layers/fire_station.md b/Docs/Layers/fire_station.md new file mode 100644 index 0000000000..1484e65ce0 --- /dev/null +++ b/Docs/Layers/fire_station.md @@ -0,0 +1,160 @@ + + + fire_station +============== + + + + + +Map layer to show fire stations. + + + + +## Table of contents + +1. [fire_station](#fire_station) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [station-name](#station-name) + + [station-street](#station-street) + + [station-place](#station-place) + + [station-agency](#station-agency) + + [station-operator](#station-operator) + + [images](#images) + + + + + + + + + + +#### Themes using this layer + + + + + + - [hailhydrant](https://mapcomplete.osm.be/hailhydrant) + + +[Go to the source code](../assets/layers/fire_station/fire_station.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=fire_station + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/addr:place#values) [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Bureau of Fire Protection](https://wiki.openstreetmap.org/wiki/Tag:operator%3DBureau of Fire Protection) +[](https://taginfo.openstreetmap.org/keys/operator:type#values) [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) | [string](../SpecialInputElements.md#string) | [government](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dgovernment) [community](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dcommunity) [ngo](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dngo) [private](https://wiki.openstreetmap.org/wiki/Tag:operator:type%3Dprivate) + + + + +### station-name + + + +The question is **What is the name of this fire station?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `This station is called {name}.` + + + +### station-street + + + +The question is ** What is the street name where the station located?** + +This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) +This is rendered with `This station is along a highway called {addr:street}.` + + + +### station-place + + + +The question is **Where is the station located? (e.g. name of neighborhood, villlage, or town)** + +This rendering asks information about the property [addr:place](https://wiki.openstreetmap.org/wiki/Key:addr:place) +This is rendered with `This station is found within {addr:place}.` + + + +### station-agency + + + +The question is **What agency operates this station?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `This station is operated by {operator}.` + + + + - **Bureau of Fire Protection** corresponds with operator=Bureau of Fire Protection&operator:type=government + + + + +### station-operator + + + +The question is **How is the station operator classified?** + +This rendering asks information about the property [operator:type](https://wiki.openstreetmap.org/wiki/Key:operator:type) +This is rendered with `The operator is a(n) {operator:type} entity.` + + + + - **The station is operated by the government.** corresponds with operator:type=government + - **The station is operated by a community-based, or informal organization.** corresponds with operator:type=community + - **The station is operated by a formal group of volunteers.** corresponds with operator:type=ngo + - **The station is privately operated.** corresponds with operator:type=private + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/fire_station/fire_station.json \ No newline at end of file diff --git a/Docs/Layers/food.md b/Docs/Layers/food.md new file mode 100644 index 0000000000..2b117e68ea --- /dev/null +++ b/Docs/Layers/food.md @@ -0,0 +1,455 @@ + + + food +====== + + + + + +A layer showing restaurants and fast-food amenities (with a special rendering for friteries) + + + + +## Table of contents + +1. [food](#food) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [Name](#name) + + [Fastfood vs restaurant](#fastfood-vs-restaurant) + + [opening_hours](#opening_hours) + + [website](#website) + + [email](#email) + + [phone](#phone) + + [payment-options](#payment-options) + + [wheelchair-access](#wheelchair-access) + + [Cuisine](#cuisine) + + [Takeaway](#takeaway) + + [Vegetarian (no friture)](#vegetarian-(no-friture)) + + [Vegan (no friture)](#vegan-(no-friture)) + + [halal (no friture)](#halal-(no-friture)) + + [friture-vegetarian](#friture-vegetarian) + + [friture-vegan](#friture-vegan) + + [friture-oil](#friture-oil) + + [friture-take-your-container](#friture-take-your-container) + + [service:electricity](#serviceelectricity) + + [dog-access](#dog-access) + + [reviews](#reviews) + + + + + + + + + + +#### Themes using this layer + + + + + + - [food](https://mapcomplete.osm.be/food) + - [fritures](https://mapcomplete.osm.be/fritures) + + +[Go to the source code](../assets/layers/food/food.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=fast_food|amenity=restaurant + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/amenity#values) [amenity](https://wiki.openstreetmap.org/wiki/Key:amenity) | Multiple choice | [fast_food](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Dfast_food) [restaurant](https://wiki.openstreetmap.org/wiki/Tag:amenity%3Drestaurant) +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/cuisine#values) [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) | [string](../SpecialInputElements.md#string) | [pizza](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpizza) [friture](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfriture) [pasta](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dpasta) [kebab](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dkebab) [sandwich](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsandwich) [burger](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dburger) [sushi](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dsushi) [coffee](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dcoffee) [italian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Ditalian) [french](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dfrench) [chinese](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dchinese) [greek](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dgreek) [indian](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dindian) [turkish](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dturkish) [thai](https://wiki.openstreetmap.org/wiki/Tag:cuisine%3Dthai) +[](https://taginfo.openstreetmap.org/keys/takeaway#values) [takeaway](https://wiki.openstreetmap.org/wiki/Key:takeaway) | Multiple choice | [only](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Donly) [yes](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:takeaway%3Dno) +[](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Donly) +[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Donly) +[](https://taginfo.openstreetmap.org/keys/diet:halal#values) [diet:halal](https://wiki.openstreetmap.org/wiki/Key:diet:halal) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dno) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dlimited) [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Dyes) [only](https://wiki.openstreetmap.org/wiki/Tag:diet:halal%3Donly) +[](https://taginfo.openstreetmap.org/keys/diet:vegetarian#values) [diet:vegetarian](https://wiki.openstreetmap.org/wiki/Key:diet:vegetarian) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegetarian%3Dno) +[](https://taginfo.openstreetmap.org/keys/diet:vegan#values) [diet:vegan](https://wiki.openstreetmap.org/wiki/Key:diet:vegan) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:diet:vegan%3Dno) +[](https://taginfo.openstreetmap.org/keys/friture:oil#values) [friture:oil](https://wiki.openstreetmap.org/wiki/Key:friture:oil) | Multiple choice | [vegetable](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Dvegetable) [animal](https://wiki.openstreetmap.org/wiki/Tag:friture:oil%3Danimal) +[](https://taginfo.openstreetmap.org/keys/reusable_packaging:accept#values) [reusable_packaging:accept](https://wiki.openstreetmap.org/wiki/Key:reusable_packaging:accept) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:reusable_packaging:accept%3Donly) +[](https://taginfo.openstreetmap.org/keys/service:electricity#values) [service:electricity](https://wiki.openstreetmap.org/wiki/Key:service:electricity) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dlimited) [ask](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dask) [no](https://wiki.openstreetmap.org/wiki/Tag:service:electricity%3Dno) +[](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [unleashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dunleashed) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Name + + + +The question is **What is the name of this restaurant?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `The name of this restaurant is {name}` + + + +### Fastfood vs restaurant + + + +The question is **What type of business is this?** + + + + + + - **Dit is een fastfood-zaak. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel** corresponds with amenity=fast_food + - **Dit is een restaurant. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend** corresponds with amenity=restaurant + + + + +### opening_hours + + + +The question is **What are the opening hours of {name}?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `

Opening hours

{opening_hours_table(opening_hours)}` + + + +### website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + + - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + + +### email + + + +The question is **What is the email address of {name}?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + + - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + + +### phone + + + +The question is **What is the phone number of {name}?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + + - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + + +### payment-options + + + +The question is **Which methods of payment are accepted here?** + + + + + + - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no + - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + + + + +### wheelchair-access + + + +The question is **Is this place accessible with a wheelchair?** + + + + + + - **This place is specially adapted for wheelchair users** corresponds with wheelchair=designated + - **This place is easily reachable with a wheelchair** corresponds with wheelchair=yes + - **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with wheelchair=limited + - **This place is not reachable with a wheelchair** corresponds with wheelchair=no + + + + +### Cuisine + + + +The question is **Which food is served here?** + +This rendering asks information about the property [cuisine](https://wiki.openstreetmap.org/wiki/Key:cuisine) +This is rendered with `This place mostly serves {cuisine}` + + + + - **This is a pizzeria** corresponds with cuisine=pizza + - **This is a friture** corresponds with cuisine=friture + - **Mainly serves pasta** corresponds with cuisine=pasta + - **Dit is een kebabzaak** corresponds with cuisine=kebab + - **Dit is een broodjeszaak** corresponds with cuisine=sandwich + - **Dit is een hamburgerrestaurant** corresponds with cuisine=burger + - **Dit is een sushirestaurant** corresponds with cuisine=sushi + - **Dit is een koffiezaak** corresponds with cuisine=coffee + - **Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)** corresponds with cuisine=italian + - **Dit is een Frans restaurant** corresponds with cuisine=french + - **Dit is een Chinees restaurant** corresponds with cuisine=chinese + - **Dit is een Grieks restaurant** corresponds with cuisine=greek + - **Dit is een Indisch restaurant** corresponds with cuisine=indian + - **Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)** corresponds with cuisine=turkish + - **Dit is een Thaïs restaurant** corresponds with cuisine=thai + + + + +### Takeaway + + + +The question is **Does this place offer takea-way?** + + + + + + - **This is a take-away only business** corresponds with takeaway=only + - **Take-away is possible here** corresponds with takeaway=yes + - **Take-away is not possible here** corresponds with takeaway=no + + + + +### Vegetarian (no friture) + + + +The question is **Does this restaurant have a vegetarian option?** + + + + + + - **Geen vegetarische opties beschikbaar** corresponds with diet:vegetarian=no + - **Beperkte vegetarische opties zijn beschikbaar** corresponds with diet:vegetarian=limited + - **Vegetarische opties zijn beschikbaar** corresponds with diet:vegetarian=yes + - **Enkel vegetarische opties zijn beschikbaar** corresponds with diet:vegetarian=only + + + + +### Vegan (no friture) + + + +The question is **Heeft deze eetgelegenheid een veganistische optie?** + + + + + + - **Geen veganistische opties beschikbaar** corresponds with diet:vegan=no + - **Beperkte veganistische opties zijn beschikbaar** corresponds with diet:vegan=limited + - **Veganistische opties zijn beschikbaar** corresponds with diet:vegan=yes + - **Enkel veganistische opties zijn beschikbaar** corresponds with diet:vegan=only + + + + +### halal (no friture) + + + +The question is **Does this restaurant offer a halal menu?** + + + + + + - **There are no halal options available** corresponds with diet:halal=no + - **There is a small halal menu** corresponds with diet:halal=limited + - **There is a halal menu** corresponds with diet:halal=yes + - **Only halal options are available** corresponds with diet:halal=only + + + + +### friture-vegetarian + + + +The question is **Heeft deze frituur vegetarische snacks?** + + + + + + - **Er zijn vegetarische snacks aanwezig** corresponds with diet:vegetarian=yes + - **Slechts enkele vegetarische snacks** corresponds with diet:vegetarian=limited + - **Geen vegetarische snacks beschikbaar** corresponds with diet:vegetarian=no + + + + +### friture-vegan + + + +The question is **Heeft deze frituur veganistische snacks?** + + + + + + - **Er zijn veganistische snacks aanwezig** corresponds with diet:vegan=yes + - **Slechts enkele veganistische snacks** corresponds with diet:vegan=limited + - **Geen veganistische snacks beschikbaar** corresponds with diet:vegan=no + + + + +### friture-oil + + + +The question is **Bakt deze frituur met dierlijk vet of met plantaardige olie?** + + + + + + - **Plantaardige olie** corresponds with friture:oil=vegetable + - **Dierlijk vet** corresponds with friture:oil=animal + + + + +### friture-take-your-container + + + +The question is **If you bring your own container (such as a cooking pot and small pots), is it used to package your order?
** + + + + + + - **You can bring your own containers to get your order, saving on single-use packaging material and thus waste** corresponds with reusable_packaging:accept=yes + - **Bringing your own container is not allowed** corresponds with reusable_packaging:accept=no + - **You must bring your own container to order here.** corresponds with reusable_packaging:accept=only + + + + +### service:electricity + + + +The question is **Does this amenity have electrical outlets, available to customers when they are inside?** + + + + + + - **There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with service:electricity=yes + - **There are a few domestic sockets available to customers seated indoors, where they can charge their electronics** corresponds with service:electricity=limited + - **There are no sockets available indoors to customers, but charging might be possible if the staff is asked** corresponds with service:electricity=ask + - **There are a no domestic sockets available to customers seated indoors** corresponds with service:electricity=no + + + + +### dog-access + + + +The question is **Are dogs allowed in this business?** + + + + + + - **Dogs are allowed** corresponds with dog=yes + - **Dogs are not allowed** corresponds with dog=no + - **Dogs are allowed, but they have to be leashed** corresponds with dog=leashed + - **Dogs are allowed and can run around freely** corresponds with dog=unleashed + + + + +### reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/food/food.json \ No newline at end of file diff --git a/Docs/Layers/forest.md b/Docs/Layers/forest.md new file mode 100644 index 0000000000..d92f53c27e --- /dev/null +++ b/Docs/Layers/forest.md @@ -0,0 +1,63 @@ + + + forest +======== + + + + + +Een bos is een verzameling bomen, al dan niet als productiehout. + + + + +## Table of contents + +1. [forest](#forest) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + + + + + - This layer will automatically load [parks](./parks.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _overlapWithUpperLayers) + - This layer will automatically load [nature_reserve_buurtnatuur](./nature_reserve_buurtnatuur.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _overlapWithUpperLayers) + + +[Go to the source code](../assets/layers/forest/forest.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - landuse=forest|natural=wood|natural=scrub + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/forest/forest.json \ No newline at end of file diff --git a/Docs/Layers/fruitboom.md b/Docs/Layers/fruitboom.md new file mode 100644 index 0000000000..0317e6f8ec --- /dev/null +++ b/Docs/Layers/fruitboom.md @@ -0,0 +1,111 @@ + + + fruitboom +=========== + + + + + +Een boom + + + + +## Table of contents + +1. [fruitboom](#fruitboom) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [fruitboom-species:nl](#fruitboom-speciesnl) + + [fruitboom-taxon](#fruitboom-taxon) + + [fruitboom-description](#fruitboom-description) + + [fruitboom-ref](#fruitboom-ref) + + + + + + + + +[Go to the source code](../assets/layers/fruitboom/fruitboom.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - natural=tree + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/species:nl#values) [species:nl](https://wiki.openstreetmap.org/wiki/Key:species:nl) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/taxon#values) [taxon](https://wiki.openstreetmap.org/wiki/Key:taxon) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | + + + + +### fruitboom-species:nl + + + +The question is **Wat is de soort van deze boom (in het Nederlands)?** + +This rendering asks information about the property [species:nl](https://wiki.openstreetmap.org/wiki/Key:species:nl) +This is rendered with `De soort is {species:nl}` + + + +### fruitboom-taxon + + + +The question is **Wat is het taxon (ras) van deze boom?** + +This rendering asks information about the property [taxon](https://wiki.openstreetmap.org/wiki/Key:taxon) +This is rendered with `Het ras (taxon) van deze boom is {taxon}` + + + +### fruitboom-description + + + +The question is **Welke beschrijving past bij deze boom?** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `Beschrijving: {description}` + + + +### fruitboom-ref + + + +The question is **Is er een refernetienummer?** + +This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) +This is rendered with `Referentienummer: {ref}` + +This document is autogenerated from assets/layers/fruitboom/fruitboom.json \ No newline at end of file diff --git a/Docs/Layers/generic_osm_object.md b/Docs/Layers/generic_osm_object.md new file mode 100644 index 0000000000..7c7b1b99c8 --- /dev/null +++ b/Docs/Layers/generic_osm_object.md @@ -0,0 +1,68 @@ + + + generic_osm_object +==================== + + + + + + + + +## Table of contents + +1. [generic_osm_object](#generic_osm_object) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [all_tags](#all_tags) + + + + + + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer is needed as dependency for layer [grb](#grb) + + +[Go to the source code](../assets/layers/generic_osm_object/generic_osm_object.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id~^..*$ + - + - + - + - type!~^boundary$ + - + - |level=0 + - layer=0| + + + + + Supported attributes +---------------------- + + + + + +### all_tags + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/generic_osm_object/generic_osm_object.json \ No newline at end of file diff --git a/Docs/Layers/ghost_bike.md b/Docs/Layers/ghost_bike.md new file mode 100644 index 0000000000..20f519d06b --- /dev/null +++ b/Docs/Layers/ghost_bike.md @@ -0,0 +1,150 @@ + + + ghost_bike +============ + + + + + +A layer showing memorials for cyclists, killed in road accidents + + + + +## Table of contents + +1. [ghost_bike](#ghost_bike) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [ghost-bike-explanation](#ghost-bike-explanation) + + [images](#images) + + [ghost_bike-name](#ghost_bike-name) + + [ghost_bike-source](#ghost_bike-source) + + [ghost_bike-inscription](#ghost_bike-inscription) + + [ghost_bike-start_date](#ghost_bike-start_date) + + + + + + + + + + +#### Themes using this layer + + + + + + - [ghostbikes](https://mapcomplete.osm.be/ghostbikes) + + +[Go to the source code](../assets/layers/ghost_bike/ghost_bike.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - memorial=ghost_bike + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/source#values) [source](https://wiki.openstreetmap.org/wiki/Key:source) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/inscription#values) [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | + + + + +### ghost-bike-explanation + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### ghost_bike-name + + + +The question is **Whom is remembered by this ghost bike?
Please respect privacy - only fill out the name if it is widely published or marked on the cycle. Opt to leave out the family name.
** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `In remembrance of {name}` + + + + - **No name is marked on the bike** corresponds with noname=yes + + + + +### ghost_bike-source + + + +The question is **On what webpage can one find more information about the Ghost bike or the accident?** + +This rendering asks information about the property [source](https://wiki.openstreetmap.org/wiki/Key:source) +This is rendered with `More information is available` + + + +### ghost_bike-inscription + + + +The question is **What is the inscription on this Ghost bike?** + +This rendering asks information about the property [inscription](https://wiki.openstreetmap.org/wiki/Key:inscription) +This is rendered with `{inscription}` + + + +### ghost_bike-start_date + + + +The question is **When was this Ghost bike installed?** + +This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) +This is rendered with `Placed on {start_date}` + +This document is autogenerated from assets/layers/ghost_bike/ghost_bike.json \ No newline at end of file diff --git a/Docs/Layers/gps_location.md b/Docs/Layers/gps_location.md new file mode 100644 index 0000000000..f2ade0f75a --- /dev/null +++ b/Docs/Layers/gps_location.md @@ -0,0 +1,52 @@ + + + gps_location +============== + + + + + +Meta layer showing the current location of the user. Add this to your theme and override the icon to change the appearance of the current location. The object will always have `id=gps` and will have _all_ the properties included in the [`Coordinates`-object](https://developer.mozilla.org/en-US/docs/Web/API/GeolocationCoordinates) returned by the browser. + + + + +## Table of contents + +1. [gps_location](#gps_location) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + + +[Go to the source code](../assets/layers/gps_location/gps_location.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id=gps + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/gps_location/gps_location.json \ No newline at end of file diff --git a/Docs/Layers/gps_location_history.md b/Docs/Layers/gps_location_history.md new file mode 100644 index 0000000000..c7548953b4 --- /dev/null +++ b/Docs/Layers/gps_location_history.md @@ -0,0 +1,53 @@ + + + gps_location_history +====================== + + + + + +Meta layer which contains the previous locations of the user as single points. This is mainly for technical reasons, e.g. to keep match the distance to the modified object + + + + +## Table of contents + +1. [gps_location_history](#gps_location_history) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + +[Go to the source code](../assets/layers/gps_location_history/gps_location_history.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - user:location=yes + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/gps_location_history/gps_location_history.json \ No newline at end of file diff --git a/Docs/Layers/gps_track.md b/Docs/Layers/gps_track.md new file mode 100644 index 0000000000..47d4523c18 --- /dev/null +++ b/Docs/Layers/gps_track.md @@ -0,0 +1,96 @@ + + + gps_track +=========== + + + + + +Meta layer showing the previous locations of the user as single line. Add this to your theme and override the icon to change the appearance of the current location. + + + + +## Table of contents + +1. [gps_track](#gps_track) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [Privacy notice](#privacy-notice) + + [export_as_gpx](#export_as_gpx) + + [minimap](#minimap) + + [delete](#delete) + + + + + + - This layer is not visible by default and must be enabled in the filter by the user. + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + +[Go to the source code](../assets/layers/gps_track/gps_track.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id=location_track + + + + + Supported attributes +---------------------- + + + + + +### Privacy notice + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### export_as_gpx + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### delete + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/gps_track/gps_track.json \ No newline at end of file diff --git a/Docs/Layers/grass_in_parks.md b/Docs/Layers/grass_in_parks.md new file mode 100644 index 0000000000..19e05058c4 --- /dev/null +++ b/Docs/Layers/grass_in_parks.md @@ -0,0 +1,84 @@ + + + grass_in_parks +================ + + + + + +Searches for all accessible grass patches within public parks - these are 'groenzones'" + + + + +## Table of contents + +1. [grass_in_parks](#grass_in_parks) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [explanation](#explanation) + + [grass-in-parks-reviews](#grass-in-parks-reviews) + + + + + + + + +[Go to the source code](../assets/layers/grass_in_parks/grass_in_parks.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - name=Park Oude God|landuse=grass&access=public|access=yes + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### explanation + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### grass-in-parks-reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/grass_in_parks/grass_in_parks.json \ No newline at end of file diff --git a/Docs/Layers/grb.md b/Docs/Layers/grb.md new file mode 100644 index 0000000000..53031f2b45 --- /dev/null +++ b/Docs/Layers/grb.md @@ -0,0 +1,147 @@ + + + grb +===== + + + + + +Geometry which comes from GRB with tools to import them + + + + +## Table of contents + +1. [grb](#grb) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [Import-button](#import-button) + + [Building info](#building-info) + + [overlapping building address](#overlapping-building-address) + + [grb_address_diff](#grb_address_diff) + + [overlapping building type](#overlapping-building-type) + + [apply-id](#apply-id) + + [apply-building-type](#apply-building-type) + + + + + + - This layer is loaded from an external source, namely `https://betadata.grbosm.site/grb?bbox={x_min},{y_min},{x_max},{y_max}` + - This layer will automatically load [osm-buildings](./osm-buildings.md) into the layout as it depends on it: a tagrendering needs this layer (Import-button) + - This layer will automatically load [type_node](./type_node.md) into the layout as it depends on it: a tagrendering needs this layer (Import-button) + - This layer will automatically load [osm-buildings](./osm-buildings.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _overlaps_with_buildings) + - This layer will automatically load [generic_osm_object](./generic_osm_object.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[18] which calculates the value for _intersects_with_other_features) + + +[Go to the source code](../assets/layers/grb/grb.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - HUISNR~^..*$ + - man_made!~^mast$ + + + + + Supported attributes +---------------------- + + + + + +### Import-button + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **{conflate_button(osm-buildings,building=$_target_building_type; source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref; addr:street=$addr:street; addr:housenumber=$addr:housenumber, Replace the geometry in OpenStreetMap and add the address,,_osm_obj:id)}** corresponds with _overlap_percentage>50&_reverse_overlap_percentage>50&_overlaps_with!~^$&addr:street~^..*$&addr:housenumber~^..*$&addr:street!=&addr:housenumber!= + - **{conflate_button(osm-buildings,building=$_target_building_type; source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref, Replace the geometry in OpenStreetMap,,_osm_obj:id)}** corresponds with _overlap_percentage>50&_reverse_overlap_percentage>50&_overlaps_with!~^$ + + + + +### Building info + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### overlapping building address + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **The overlapping openstreetmap-building has address {_osm_obj:addr:street} {_osm_obj:addr:housenumber}** corresponds with _osm_obj:addr:street~^..*$&_osm_obj:addr:housenumber~^..*$ + - **The overlapping building only has a street known: {_osm_obj:addr:street}** corresponds with _osm_obj:addr:street~^..*$ + - **The overlapping building only has a housenumber known: {_osm_obj:addr:housenumber}** corresponds with _osm_obj:addr:housenumber~^..*$ + - **No overlapping OpenStreetMap-building found** corresponds with + + + + +### grb_address_diff + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### overlapping building type + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### apply-id + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### apply-building-type + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/grb/grb.json \ No newline at end of file diff --git a/Docs/Layers/hackerspaces.md b/Docs/Layers/hackerspaces.md new file mode 100644 index 0000000000..c45cc1c3e2 --- /dev/null +++ b/Docs/Layers/hackerspaces.md @@ -0,0 +1,225 @@ + + + hackerspaces +============== + + + + + +Hackerspace + + + + +## Table of contents + +1. [hackerspaces](#hackerspaces) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [is_makerspace](#is_makerspace) + + [hackerspaces-name](#hackerspaces-name) + + [website](#website) + + [email](#email) + + [phone](#phone) + + [hackerspaces-opening_hours](#hackerspaces-opening_hours) + + [wheelchair-access](#wheelchair-access) + + [hs-club-mate](#hs-club-mate) + + [hackerspaces-start_date](#hackerspaces-start_date) + + + + + + + + + + +#### Themes using this layer + + + + + + - [hackerspaces](https://mapcomplete.osm.be/hackerspaces) + + +[Go to the source code](../assets/layers/hackerspaces/hackerspaces.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=hackerspace + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/hackerspace#values) [hackerspace](https://wiki.openstreetmap.org/wiki/Key:hackerspace) | Multiple choice | [makerspace](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3Dmakerspace) [](https://wiki.openstreetmap.org/wiki/Tag:hackerspace%3D) +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/drink:club-mate#values) [drink:club-mate](https://wiki.openstreetmap.org/wiki/Key:drink:club-mate) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:drink:club-mate%3Dno) +[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | + + + + +### is_makerspace + + + +The question is **Is this a hackerspace or a makerspace?** + + + + + + - **This is a makerspace** corresponds with hackerspace=makerspace + - **This is a traditional (software oriented) hackerspace** corresponds with + + + + +### hackerspaces-name + + + +The question is **What is the name of this hackerspace?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `This hackerspace is named {name}` + + + +### website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + + - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + + +### email + + + +The question is **What is the email address of {name}?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + + - **{contact:email}** corresponds with contact:email~^..*$_This option cannot be chosen as answer_ + + + + +### phone + + + +The question is **What is the phone number of {name}?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + + - **{contact:phone}** corresponds with contact:phone~^..*$_This option cannot be chosen as answer_ + + + + +### hackerspaces-opening_hours + + + +The question is **When is this hackerspace opened?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `{opening_hours_table()}` + + + + - **Opened 24/7** corresponds with opening_hours=24/7 + + + + +### wheelchair-access + + + +The question is **Is this place accessible with a wheelchair?** + + + + + + - **This place is specially adapted for wheelchair users** corresponds with wheelchair=designated + - **This place is easily reachable with a wheelchair** corresponds with wheelchair=yes + - **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with wheelchair=limited + - **This place is not reachable with a wheelchair** corresponds with wheelchair=no + + + + +### hs-club-mate + + + +The question is **Does this hackerspace serve Club Mate?** + + + + + + - **This hackerspace serves club mate** corresponds with drink:club-mate=yes + - **This hackerspace does not serve club mate** corresponds with drink:club-mate=no + + + + +### hackerspaces-start_date + + + +The question is **When was this hackerspace founded?** + +This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) +This is rendered with `This hackerspace was founded at {start_date}` + +This document is autogenerated from assets/layers/hackerspaces/hackerspaces.json \ No newline at end of file diff --git a/Docs/Layers/home_location.md b/Docs/Layers/home_location.md new file mode 100644 index 0000000000..fc957cbd46 --- /dev/null +++ b/Docs/Layers/home_location.md @@ -0,0 +1,52 @@ + + + home_location +=============== + + + + + +Meta layer showing the home location of the user. The home location can be set in the [profile settings](https://www.openstreetmap.org/profile/edit) of OpenStreetMap. + + + + +## Table of contents + +1. [home_location](#home_location) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + + +[Go to the source code](../assets/layers/home_location/home_location.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - user:home=yes + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/home_location/home_location.json \ No newline at end of file diff --git a/Docs/Layers/hydrant.md b/Docs/Layers/hydrant.md new file mode 100644 index 0000000000..4f9f96b843 --- /dev/null +++ b/Docs/Layers/hydrant.md @@ -0,0 +1,143 @@ + + + hydrant +========= + + + + + +Map layer to show fire hydrants. + + + + +## Table of contents + +1. [hydrant](#hydrant) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [hydrant-color](#hydrant-color) + + [hydrant-type](#hydrant-type) + + [hydrant-state](#hydrant-state) + + [images](#images) + + + + + + + + + + +#### Themes using this layer + + + + + + - [hailhydrant](https://mapcomplete.osm.be/hailhydrant) + + +[Go to the source code](../assets/layers/hydrant/hydrant.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - emergency=fire_hydrant + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [string](../SpecialInputElements.md#string) | [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) +[](https://taginfo.openstreetmap.org/keys/fire_hydrant:type#values) [fire_hydrant:type](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type) | [string](../SpecialInputElements.md#string) | [pillar](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpillar) [pipe](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dpipe) [wall](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dwall) [underground](https://wiki.openstreetmap.org/wiki/Tag:fire_hydrant:type%3Dunderground) +[](https://taginfo.openstreetmap.org/keys/emergency#values) [emergency](https://wiki.openstreetmap.org/wiki/Key:emergency) | Multiple choice | [fire_hydrant](https://wiki.openstreetmap.org/wiki/Tag:emergency%3Dfire_hydrant) [](https://wiki.openstreetmap.org/wiki/Tag:emergency%3D) [](https://wiki.openstreetmap.org/wiki/Tag:emergency%3D) + + + + +### hydrant-color + + + +The question is **What color is the hydrant?** + +This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour) +This is rendered with `The hydrant color is {colour}` + + + + - **The hydrant color is unknown.** corresponds with _This option cannot be chosen as answer_ + - **The hydrant color is yellow.** corresponds with colour=yellow + - **The hydrant color is red.** corresponds with colour=red + + + + +### hydrant-type + + + +The question is **What type of hydrant is it?** + +This rendering asks information about the property [fire_hydrant:type](https://wiki.openstreetmap.org/wiki/Key:fire_hydrant:type) +This is rendered with ` Hydrant type: {fire_hydrant:type}` + + + + - **The hydrant type is unknown.** corresponds with _This option cannot be chosen as answer_ + - ** Pillar type.** corresponds with fire_hydrant:type=pillar + - ** Pipe type.** corresponds with fire_hydrant:type=pipe + - ** Wall type.** corresponds with fire_hydrant:type=wall + - ** Underground type.** corresponds with fire_hydrant:type=underground + + + + +### hydrant-state + + + +The question is **Is this hydrant still working?** + + + + + + - **The hydrant is (fully or partially) working** corresponds with emergency=fire_hydrant + - **The hydrant is unavailable** corresponds with disused:emergency=fire_hydrant + - **The hydrant has been removed** corresponds with removed:emergency=fire_hydrant + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/hydrant/hydrant.json \ No newline at end of file diff --git a/Docs/Layers/information_board.md b/Docs/Layers/information_board.md new file mode 100644 index 0000000000..d40ce7b3fd --- /dev/null +++ b/Docs/Layers/information_board.md @@ -0,0 +1,74 @@ + + + information_board +=================== + + + + + +A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, ...) + + + + +## Table of contents + +1. [information_board](#information_board) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + + + + + + + + + +#### Themes using this layer + + + + + + - [nature](https://mapcomplete.osm.be/nature) + + +[Go to the source code](../assets/layers/information_board/information_board.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - information=board + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/information_board/information_board.json \ No newline at end of file diff --git a/Docs/Layers/left_right_style.md b/Docs/Layers/left_right_style.md new file mode 100644 index 0000000000..82dc38ec5e --- /dev/null +++ b/Docs/Layers/left_right_style.md @@ -0,0 +1,53 @@ + + + left_right_style +================== + + + + + +Special meta-style which will show one single line, either on the left or on the right depending on the id. This is used in the small popups with left_right roads. Cannot be included in a theme + + + + +## Table of contents + +1. [left_right_style](#left_right_style) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + +[Go to the source code](../assets/layers/left_right_style/left_right_style.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id=left|id=right + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/left_right_style/left_right_style.json \ No newline at end of file diff --git a/Docs/Layers/lit_streets.md b/Docs/Layers/lit_streets.md new file mode 100644 index 0000000000..c9b6198a0c --- /dev/null +++ b/Docs/Layers/lit_streets.md @@ -0,0 +1,92 @@ + + + lit_streets +============= + + + + + + + + +## Table of contents + +1. [lit_streets](#lit_streets) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [lit](#lit) + + + + + + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + + + +#### Themes using this layer + + + + + + - [street_lighting](https://mapcomplete.osm.be/street_lighting) + + +[Go to the source code](../assets/layers/lit_streets/lit_streets.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway!~^$ + - lit!~^no$ + - lit!~^$ + - service!~^driveway$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) [24/7](https://wiki.openstreetmap.org/wiki/Tag:lit%3D24/7) + + + + +### lit + + + +The question is **Is this street lit?** + + + + + + - **This street is lit** corresponds with lit=yes + - **This street is not lit** corresponds with lit=no + - **This street is lit at night** corresponds with lit=sunset-sunrise_This option cannot be chosen as answer_ + - **This street is lit 24/7** corresponds with lit=24/7 + + +This document is autogenerated from assets/layers/lit_streets/lit_streets.json \ No newline at end of file diff --git a/Docs/Layers/map.md b/Docs/Layers/map.md new file mode 100644 index 0000000000..7d81873f76 --- /dev/null +++ b/Docs/Layers/map.md @@ -0,0 +1,122 @@ + + + map +===== + + + + + +A map, meant for tourists which is permanently installed in the public space + + + + +## Table of contents + +1. [map](#map) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [map-map_source](#map-map_source) + + [map-attribution](#map-attribution) + + + + + + + + + + +#### Themes using this layer + + + + + + - [maps](https://mapcomplete.osm.be/maps) + - [nature](https://mapcomplete.osm.be/nature) + + +[Go to the source code](../assets/layers/map/map.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - tourism=map|information=map + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/map_source#values) [map_source](https://wiki.openstreetmap.org/wiki/Key:map_source) | [string](../SpecialInputElements.md#string) | [OpenStreetMap](https://wiki.openstreetmap.org/wiki/Tag:map_source%3DOpenStreetMap) +[](https://taginfo.openstreetmap.org/keys/map_source:attribution#values) [map_source:attribution](https://wiki.openstreetmap.org/wiki/Key:map_source:attribution) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dyes) [incomplete](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dincomplete) [sticker](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dsticker) [none](https://wiki.openstreetmap.org/wiki/Tag:map_source:attribution%3Dnone) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### map-map_source + + + +The question is **On which data is this map based?** + +This rendering asks information about the property [map_source](https://wiki.openstreetmap.org/wiki/Key:map_source) +This is rendered with `This map is based on {map_source}` + + + + - **This map is based on OpenStreetMap** corresponds with map_source=OpenStreetMap + + + + +### map-attribution + + + +The question is **Is the OpenStreetMap-attribution given?** + + + + + + - **OpenStreetMap is clearly attributed, including the ODBL-license** corresponds with map_source:attribution=yes + - **OpenStreetMap is clearly attributed, but the license is not mentioned** corresponds with map_source:attribution=incomplete + - **OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it** corresponds with map_source:attribution=sticker + - **There is no attribution at all** corresponds with map_source:attribution=none + - **There is no attribution at all** corresponds with map_source:attribution=no_This option cannot be chosen as answer_ + + +This document is autogenerated from assets/layers/map/map.json \ No newline at end of file diff --git a/Docs/Layers/matchpoint.md b/Docs/Layers/matchpoint.md new file mode 100644 index 0000000000..e348b4148a --- /dev/null +++ b/Docs/Layers/matchpoint.md @@ -0,0 +1,52 @@ + + + matchpoint +============ + + + + + +The default rendering for a locationInput which snaps onto another object + + + + +## Table of contents + +1. [matchpoint](#matchpoint) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + + +[Go to the source code](../assets/layers/matchpoint/matchpoint.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/matchpoint/matchpoint.json \ No newline at end of file diff --git a/Docs/Layers/maybe_climbing.md b/Docs/Layers/maybe_climbing.md new file mode 100644 index 0000000000..e624240e92 --- /dev/null +++ b/Docs/Layers/maybe_climbing.md @@ -0,0 +1,104 @@ + + + maybe_climbing +================ + + + + + +A climbing opportunity? + + + + +## Table of contents + +1. [maybe_climbing](#maybe_climbing) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [minimap](#minimap) + + [climbing-opportunity-name](#climbing-opportunity-name) + + [climbing-possible](#climbing-possible) + + + + + + + + + + +#### Themes using this layer + + + + + + - [climbing](https://mapcomplete.osm.be/climbing) + + +[Go to the source code](../assets/layers/maybe_climbing/maybe_climbing.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=sports_centre|barrier=wall|barrier=retaining_wall|natural=cliff|natural=rock|natural=stone + - + + + + + Supported attributes +---------------------- + + + + + +### minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### climbing-opportunity-name + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### climbing-possible + + + +The question is **Is climbing possible here?** + + + + + + - **Climbing is not possible here** corresponds with sport!~^climbing$_This option cannot be chosen as answer_ + - **Climbing is possible here** corresponds with sport=climbing + - **Climbing is not possible here** corresponds with climbing=no + + +This document is autogenerated from assets/layers/maybe_climbing/maybe_climbing.json \ No newline at end of file diff --git a/Docs/Layers/named_streets.md b/Docs/Layers/named_streets.md new file mode 100644 index 0000000000..bbbb93ba21 --- /dev/null +++ b/Docs/Layers/named_streets.md @@ -0,0 +1,57 @@ + + + named_streets +=============== + + + + + +Hidden layer with all streets which have a name. Useful to detect addresses + + + + +## Table of contents + +1. [named_streets](#named_streets) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer is not visible by default and must be enabled in the filter by the user. + - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-=true + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer is needed as dependency for layer [address](#address) + + +[Go to the source code](../assets/layers/named_streets/named_streets.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway~^..*$ + - name~^..*$ + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/named_streets/named_streets.json \ No newline at end of file diff --git a/Docs/Layers/nature_reserve.md b/Docs/Layers/nature_reserve.md new file mode 100644 index 0000000000..b984c43ac5 --- /dev/null +++ b/Docs/Layers/nature_reserve.md @@ -0,0 +1,288 @@ + + + nature_reserve +================ + + + + + +Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid. + + + + +## Table of contents + +1. [nature_reserve](#nature_reserve) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [Access tag](#access-tag) + + [Operator tag](#operator-tag) + + [Name:nl-tag](#namenl-tag) + + [Name tag](#name-tag) + + [Dogs?](#dogs) + + [Website](#website) + + [Curator](#curator) + + [Email](#email) + + [phone](#phone) + + [Non-editable description](#non-editable-description) + + [Editable description](#editable-description) + + [Surface area](#surface-area) + + [wikipedia](#wikipedia) + + + + + + + + + + +#### Themes using this layer + + + + + + - [nature](https://mapcomplete.osm.be/nature) + + +[Go to the source code](../assets/layers/nature_reserve/nature_reserve.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=nature_reserve|protect_class!~^98$&boundary=protected_area + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) [Agentschap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgentschap Natuur en Bos) +[](https://taginfo.openstreetmap.org/keys/name:nl#values) [name:nl](https://wiki.openstreetmap.org/wiki/Key:name:nl) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) +[](https://taginfo.openstreetmap.org/keys/dog#values) [dog](https://wiki.openstreetmap.org/wiki/Key:dog) | Multiple choice | [leashed](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dleashed) [no](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:dog%3Dyes) +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/curator#values) [curator](https://wiki.openstreetmap.org/wiki/Key:curator) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/description:0#values) [description:0](https://wiki.openstreetmap.org/wiki/Key:description:0) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/_surface:ha#values) [_surface:ha](https://wiki.openstreetmap.org/wiki/Key:_surface:ha) | Multiple choice | [0](https://wiki.openstreetmap.org/wiki/Tag:_surface:ha%3D0) +[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Access tag + + + +The question is **Is dit gebied toegankelijk?** + +This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) +This is rendered with `De toegankelijkheid van dit gebied is: {access:description}` + + + + - **Vrij toegankelijk** corresponds with access=yes + - **Niet toegankelijk** corresponds with access=no + - **Niet toegankelijk, want privégebied** corresponds with access=private + - **Toegankelijk, ondanks dat het privegebied is** corresponds with access=permissive + - **Enkel toegankelijk met een gids of tijdens een activiteit** corresponds with access=guided + - **Toegankelijk mits betaling** corresponds with access=yes&fee=yes + + + + +### Operator tag + + + +The question is **Wie beheert dit gebied?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Beheer door {operator}` + + + + - **Dit gebied wordt beheerd door Natuurpunt** corresponds with operator=Natuurpunt + - **Dit gebied wordt beheerd door {operator}** corresponds with operator~^(n|N)atuurpunt.*$_This option cannot be chosen as answer_ + - **Dit gebied wordt beheerd door het Agentschap Natuur en Bos** corresponds with operator=Agentschap Natuur en Bos + + + + +### Name:nl-tag + + + +The question is **Wat is de Nederlandstalige naam van dit gebied?** + +This rendering asks information about the property [name:nl](https://wiki.openstreetmap.org/wiki/Key:name:nl) +This is rendered with `Dit gebied heet {name:nl}` + + + +### Name tag + + + +The question is **Wat is de naam van dit gebied?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `Dit gebied heet {name}` + + + + - **Dit gebied heeft geen naam** corresponds with noname=yes + + + + +### Dogs? + + + +The question is **Are dogs allowed in this nature reserve?** + + + + + + - **Dogs have to be leashed** corresponds with dog=leashed + - **No dogs allowed** corresponds with dog=no + - **Dogs are allowed to roam freely** corresponds with dog=yes + + + + +### Website + + + +The question is **On which webpage can one find more information about this nature reserve?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + +### Curator + + + +The question is **Whom is the curator of this nature reserve?
Respect privacy - only fill out a name if this is widely published** + +This rendering asks information about the property [curator](https://wiki.openstreetmap.org/wiki/Key:curator) +This is rendered with `{curator} is the curator of this nature reserve` + + + +### Email + + + +The question is **What email adress can one send to with questions and problems with this nature reserve?
Respect privacy - only fill out a personal email address if this is widely published** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + +### phone + + + +The question is **What phone number can one call to with questions and problems with this nature reserve?
Respect privacy - only fill out a personal phone number address if this is widely published** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + +### Non-editable description + + + +_This tagrendering has no question and is thus read-only_ + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `Extra info: {description}` + + + +### Editable description + + + +The question is **Is er extra info die je kwijt wil?** + +This rendering asks information about the property [description:0](https://wiki.openstreetmap.org/wiki/Key:description:0) +This is rendered with `Extra info: {description:0}` + + + +### Surface area + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **** corresponds with _surface:ha=0 + + + + +### wikipedia + + + +The question is **What is the corresponding Wikidata entity?** + +This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) +This is rendered with `{wikipedia():max-height:25rem}` + + + + - **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_ + + +This document is autogenerated from assets/layers/nature_reserve/nature_reserve.json \ No newline at end of file diff --git a/Docs/Layers/nature_reserve_buurtnatuur.md b/Docs/Layers/nature_reserve_buurtnatuur.md new file mode 100644 index 0000000000..da989bffde --- /dev/null +++ b/Docs/Layers/nature_reserve_buurtnatuur.md @@ -0,0 +1,63 @@ + + + nature_reserve_buurtnatuur +============================ + + + + + +Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid. + + + + +## Table of contents + +1. [nature_reserve_buurtnatuur](#nature_reserve_buurtnatuur) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + + + + + - This layer is needed as dependency for layer [parks](#parks) + - This layer is needed as dependency for layer [forest](#forest) + + +[Go to the source code](../assets/layers/nature_reserve_buurtnatuur/nature_reserve_buurtnatuur.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=nature_reserve|boundary=protected_area + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/nature_reserve_buurtnatuur/nature_reserve_buurtnatuur.json \ No newline at end of file diff --git a/Docs/Layers/node.md b/Docs/Layers/node.md new file mode 100644 index 0000000000..c2e4531410 --- /dev/null +++ b/Docs/Layers/node.md @@ -0,0 +1,99 @@ + + + node +====== + + + + + + + + +## Table of contents + +1. [node](#node) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [node-survey:date](#node-surveydate) + + [node-expected_rcn_route_relations](#node-expected_rcn_route_relations) + + [images](#images) + + + + + + + + +[Go to the source code](../assets/layers/node/node.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - rcn_ref~^..*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) +[](https://taginfo.openstreetmap.org/keys/expected_rcn_route_relations#values) [expected_rcn_route_relations](https://wiki.openstreetmap.org/wiki/Key:expected_rcn_route_relations) | [int](../SpecialInputElements.md#int) | + + + + +### node-survey:date + + + +The question is **When was this cycle node last surveyed?** + +This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) +This is rendered with `This cycle node was last surveyed on {survey:date}` + + + + - **Surveyed today!** corresponds with survey:date= + + + + +### node-expected_rcn_route_relations + + + +The question is **How many other cycle nodes does this node link to?** + +This rendering asks information about the property [expected_rcn_route_relations](https://wiki.openstreetmap.org/wiki/Key:expected_rcn_route_relations) +This is rendered with `This node links to {expected_rcn_route_relations} other cycle nodes.` + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/node/node.json \ No newline at end of file diff --git a/Docs/Layers/node2node.md b/Docs/Layers/node2node.md new file mode 100644 index 0000000000..a0e2ea2a25 --- /dev/null +++ b/Docs/Layers/node2node.md @@ -0,0 +1,88 @@ + + + node2node +=========== + + + + + + + + +## Table of contents + +1. [node2node](#node2node) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [node2node-survey:date](#node2node-surveydate) + + [export_as_gpx](#export_as_gpx) + + + + + + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + +[Go to the source code](../assets/layers/node2node/node2node.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - network=rcn + - network:type=node_network + - route=bicycle + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/survey:date#values) [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) | [date](../SpecialInputElements.md#date) | [](https://wiki.openstreetmap.org/wiki/Tag:survey:date%3D) + + + + +### node2node-survey:date + + + +The question is **When was this node to node link last surveyed?** + +This rendering asks information about the property [survey:date](https://wiki.openstreetmap.org/wiki/Key:survey:date) +This is rendered with `This node to node link was last surveyed on {survey:date}` + + + + - **Surveyed today!** corresponds with survey:date= + + + + +### export_as_gpx + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/node2node/node2node.json \ No newline at end of file diff --git a/Docs/Layers/observation_tower.md b/Docs/Layers/observation_tower.md new file mode 100644 index 0000000000..6812905d04 --- /dev/null +++ b/Docs/Layers/observation_tower.md @@ -0,0 +1,217 @@ + + + observation_tower +=================== + + + + + +Towers with a panoramic view + + + + +## Table of contents + +1. [observation_tower](#observation_tower) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [name](#name) + + [Height](#height) + + [Operator](#operator) + + [website](#website) + + [Fee](#fee) + + [payment-options](#payment-options) + + [wheelchair-access](#wheelchair-access) + + [wikipedia](#wikipedia) + + + + + + + + + + +#### Themes using this layer + + + + + + - [observation_towers](https://mapcomplete.osm.be/observation_towers) + + +[Go to the source code](../assets/layers/observation_tower/observation_tower.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - tower:type=observation + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/height#values) [height](https://wiki.openstreetmap.org/wiki/Key:height) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:charge%3D) +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [designated](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Ddesignated) [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### name + + + +The question is **What is the name of this tower?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `This tower is called {name}` + + + + - **This tower doesn't have a specific name** corresponds with noname=yes + + + + +### Height + + + +The question is **What is the height of this tower?** + +This rendering asks information about the property [height](https://wiki.openstreetmap.org/wiki/Key:height) +This is rendered with `This tower is {height} high` + + + +### Operator + + + +The question is **Who maintains this tower?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Maintained by {operator}` + + + +### website + + + +The question is **What is the website of {name}?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + + - **{contact:website}** corresponds with contact:website~^..*$_This option cannot be chosen as answer_ + + + + +### Fee + + + +The question is **How much does one have to pay to enter this tower?** + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) +This is rendered with `Visiting this tower costs {charge}` + + + + - **Free to visit** corresponds with fee=no + + + + +### payment-options + + + +The question is **Which methods of payment are accepted here?** + + + + + + - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no + - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + + + + +### wheelchair-access + + + +The question is **Is this place accessible with a wheelchair?** + + + + + + - **This place is specially adapted for wheelchair users** corresponds with wheelchair=designated + - **This place is easily reachable with a wheelchair** corresponds with wheelchair=yes + - **It is possible to reach this place in a wheelchair, but it is not easy** corresponds with wheelchair=limited + - **This place is not reachable with a wheelchair** corresponds with wheelchair=no + + + + +### wikipedia + + + +The question is **What is the corresponding Wikidata entity?** + +This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) +This is rendered with `{wikipedia():max-height:25rem}` + + + + - **No Wikipedia page has been linked yet** corresponds with _This option cannot be chosen as answer_ + + +This document is autogenerated from assets/layers/observation_tower/observation_tower.json \ No newline at end of file diff --git a/Docs/Layers/orchards.md b/Docs/Layers/orchards.md new file mode 100644 index 0000000000..c69a435252 --- /dev/null +++ b/Docs/Layers/orchards.md @@ -0,0 +1,60 @@ + + + orchards +========== + + + + + + + + +## Table of contents + +1. [orchards](#orchards) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + + + + + + + +[Go to the source code](../assets/layers/orchards/orchards.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - landuse=orchard + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/orchards/orchards.json \ No newline at end of file diff --git a/Docs/Layers/osm-buildings-fixme.md b/Docs/Layers/osm-buildings-fixme.md new file mode 100644 index 0000000000..2acd195e14 --- /dev/null +++ b/Docs/Layers/osm-buildings-fixme.md @@ -0,0 +1,189 @@ + + + osm-buildings-fixme +===================== + + + + + + + + +## Table of contents + +1. [osm-buildings-fixme](#osm-buildings-fixme) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [building type](#building-type) + + [grb-housenumber](#grb-housenumber) + + [grb-unit](#grb-unit) + + [grb-street](#grb-street) + + [grb-fixme](#grb-fixme) + + [grb-min-level](#grb-min-level) + + [fix_verdieping](#fix_verdieping) + + [all_tags](#all_tags) + + + + + + + + +[Go to the source code](../assets/layers/osm-buildings-fixme/osm-buildings-fixme.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - building~^..*$ + - fixme~^..*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/building#values) [building](https://wiki.openstreetmap.org/wiki/Key:building) | [string](../SpecialInputElements.md#string) | [house](https://wiki.openstreetmap.org/wiki/Tag:building%3Dhouse) [detached](https://wiki.openstreetmap.org/wiki/Tag:building%3Ddetached) [semidetached_house](https://wiki.openstreetmap.org/wiki/Tag:building%3Dsemidetached_house) [apartments](https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments) [office](https://wiki.openstreetmap.org/wiki/Tag:building%3Doffice) [apartments](https://wiki.openstreetmap.org/wiki/Tag:building%3Dapartments) [shed](https://wiki.openstreetmap.org/wiki/Tag:building%3Dshed) [garage](https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarage) [garages](https://wiki.openstreetmap.org/wiki/Tag:building%3Dgarages) [yes](https://wiki.openstreetmap.org/wiki/Tag:building%3Dyes) +[](https://taginfo.openstreetmap.org/keys/addr:housenumber#values) [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D) [](https://wiki.openstreetmap.org/wiki/Tag:addr:housenumber%3D) +[](https://taginfo.openstreetmap.org/keys/addr:unit#values) [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:addr:unit%3D) +[](https://taginfo.openstreetmap.org/keys/addr:street#values) [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/fixme#values) [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:fixme%3D) +[](https://taginfo.openstreetmap.org/keys/building:min_level#values) [building:min_level](https://wiki.openstreetmap.org/wiki/Key:building:min_level) | [pnat](../SpecialInputElements.md#pnat) | + + + + +### building type + + + +The question is **What kind of building is this?** + +This rendering asks information about the property [building](https://wiki.openstreetmap.org/wiki/Key:building) +This is rendered with `The building type is {building}` + + + + - **A normal house** corresponds with building=house + - **A house detached from other building** corresponds with building=detached + - **A house sharing only one wall with another house** corresponds with building=semidetached_house + - **An apartment building - highrise for living** corresponds with building=apartments + - **An office building - highrise for work** corresponds with building=office + - **An apartment building** corresponds with building=apartments + - **A small shed, e.g. in a garden** corresponds with building=shed + - **A single garage to park a car** corresponds with building=garage + - **A building containing only garages; typically they are all identical** corresponds with building=garages + - **A building - no specification** corresponds with building=yes + + + + +### grb-housenumber + + + +The question is **Wat is het huisnummer?** + +This rendering asks information about the property [addr:housenumber](https://wiki.openstreetmap.org/wiki/Key:addr:housenumber) +This is rendered with `Het huisnummer is {addr:housenumber}` + + + + - **Geen huisnummer** corresponds with not:addr:housenumber=yes + - **Het huisnummer is {_grbNumber}, wat overeenkomt met het GRB** corresponds with addr:housenumber= + - **Dit gebouw heeft geen nummer, net zoals in het GRB** corresponds with not:addr:housenumber=yes + + + + +### grb-unit + + + +The question is **Wat is de wooneenheid-aanduiding?** + +This rendering asks information about the property [addr:unit](https://wiki.openstreetmap.org/wiki/Key:addr:unit) +This is rendered with `De wooneenheid-aanduiding is {addr:unit} ` + + + + - **Geen wooneenheid-nummer** corresponds with + + + + +### grb-street + + + +The question is **Wat is de straat?** + +This rendering asks information about the property [addr:street](https://wiki.openstreetmap.org/wiki/Key:addr:street) +This is rendered with `De straat is {addr:street}` + + + +### grb-fixme + + + +The question is **Wat zegt de fixme?** + +This rendering asks information about the property [fixme](https://wiki.openstreetmap.org/wiki/Key:fixme) +This is rendered with `De fixme is {fixme}` + + + + - **Geen fixme** corresponds with + + + + +### grb-min-level + + + +The question is **Hoeveel verdiepingen ontbreken?** + +This rendering asks information about the property [building:min_level](https://wiki.openstreetmap.org/wiki/Key:building:min_level) +This is rendered with `Dit gebouw begint maar op de {building:min_level} verdieping` + + + +### fix_verdieping + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### all_tags + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/osm-buildings-fixme/osm-buildings-fixme.json \ No newline at end of file diff --git a/Docs/Layers/osm-buildings.md b/Docs/Layers/osm-buildings.md new file mode 100644 index 0000000000..f5c8dcc726 --- /dev/null +++ b/Docs/Layers/osm-buildings.md @@ -0,0 +1,72 @@ + + + osm-buildings +=============== + + + + + + + + +## Table of contents + +1. [osm-buildings](#osm-buildings) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [apply_streetname](#apply_streetname) + + + + + + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer will automatically load [crab_address](./crab_address.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedded_crab_addresses) + - This layer will automatically load [named_streets](./named_streets.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[3] which calculates the value for _nearby_street_names) + - This layer is needed as dependency for layer [grb](#grb) + - This layer is needed as dependency for layer [grb](#grb) + + +[Go to the source code](../assets/layers/osm-buildings/osm-buildings.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - building~^..*$ + - addr:housenumber~^..*$ + - + + + + + Supported attributes +---------------------- + + + + + +### apply_streetname + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **No nearby street has the same name. The CRAB-name is {_name_to_apply}** corresponds with _spelling_is_correct=false + - **There are multiple streetnames applicable here** corresponds with _singular_import=false + + +This document is autogenerated from assets/layers/osm-buildings/osm-buildings.json \ No newline at end of file diff --git a/Docs/Layers/parking.md b/Docs/Layers/parking.md new file mode 100644 index 0000000000..540c0687ec --- /dev/null +++ b/Docs/Layers/parking.md @@ -0,0 +1,74 @@ + + + parking +========= + + + + + +A layer showing car parkings + + + + +## Table of contents + +1. [parking](#parking) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + + + + + + + + + +#### Themes using this layer + + + + + + - [parkings](https://mapcomplete.osm.be/parkings) + + +[Go to the source code](../assets/layers/parking/parking.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=parking + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/parking/parking.json \ No newline at end of file diff --git a/Docs/Layers/parks.md b/Docs/Layers/parks.md new file mode 100644 index 0000000000..e131e804fc --- /dev/null +++ b/Docs/Layers/parks.md @@ -0,0 +1,63 @@ + + + parks +======= + + + + + +Een park is een publiek toegankelijke, groene ruimte binnen de stad. Ze is typisch ingericht voor recreatief gebruik, met (verharde) wandelpaden, zitbanken, vuilnisbakken, een gezellig vijvertje, ... + + + + +## Table of contents + +1. [parks](#parks) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + + + + + - This layer will automatically load [nature_reserve_buurtnatuur](./nature_reserve_buurtnatuur.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _overlapWithUpperLayers) + - This layer is needed as dependency for layer [forest](#forest) + + +[Go to the source code](../assets/layers/parks/parks.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=park|landuse=village_green + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/parks/parks.json \ No newline at end of file diff --git a/Docs/Layers/pedestrian_path.md b/Docs/Layers/pedestrian_path.md new file mode 100644 index 0000000000..d61c744af8 --- /dev/null +++ b/Docs/Layers/pedestrian_path.md @@ -0,0 +1,63 @@ + + + pedestrian_path +================= + + + + + +Pedestrian footpaths, especially used for indoor navigation and snapping entrances to this layer + + + + +## Table of contents + +1. [pedestrian_path](#pedestrian_path) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer is needed as dependency for layer [entrance](#entrance) + + + + +#### Themes using this layer + + + + + + - [entrances](https://mapcomplete.osm.be/entrances) + + +[Go to the source code](../assets/layers/pedestrian_path/pedestrian_path.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=footway|highway=path|highway=corridor|highway=steps + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/pedestrian_path/pedestrian_path.json \ No newline at end of file diff --git a/Docs/Layers/picnic_table.md b/Docs/Layers/picnic_table.md new file mode 100644 index 0000000000..cb0e57962f --- /dev/null +++ b/Docs/Layers/picnic_table.md @@ -0,0 +1,90 @@ + + + picnic_table +============== + + + + + +The layer showing picnic tables + + + + +## Table of contents + +1. [picnic_table](#picnic_table) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [picnic_table-material](#picnic_table-material) + + + + + + + + + + +#### Themes using this layer + + + + + + - [benches](https://mapcomplete.osm.be/benches) + + +[Go to the source code](../assets/layers/picnic_table/picnic_table.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=picnic_table + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/material#values) [material](https://wiki.openstreetmap.org/wiki/Key:material) | [string](../SpecialInputElements.md#string) | [wood](https://wiki.openstreetmap.org/wiki/Tag:material%3Dwood) [concrete](https://wiki.openstreetmap.org/wiki/Tag:material%3Dconcrete) + + + + +### picnic_table-material + + + +The question is **What material is this picnic table made of?** + +This rendering asks information about the property [material](https://wiki.openstreetmap.org/wiki/Key:material) +This is rendered with `This picnic table is made of {material}` + + + + - **This is a wooden picnic table** corresponds with material=wood + - **This is a concrete picnic table** corresponds with material=concrete + + +This document is autogenerated from assets/layers/picnic_table/picnic_table.json \ No newline at end of file diff --git a/Docs/Layers/play_forest.md b/Docs/Layers/play_forest.md new file mode 100644 index 0000000000..bde5ec6ff0 --- /dev/null +++ b/Docs/Layers/play_forest.md @@ -0,0 +1,155 @@ + + + play_forest +============= + + + + + +Een speelbos is een vrij toegankelijke zone in een bos + + + + +## Table of contents + +1. [play_forest](#play_forest) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [play_forest-operator](#play_forest-operator) + + [play_forest-opening_hours](#play_forest-opening_hours) + + [play_forest-email](#play_forest-email) + + [play_forest-phone](#play_forest-phone) + + [questions](#questions) + + [play_forest-reviews](#play_forest-reviews) + + + + + + + + +[Go to the source code](../assets/layers/play_forest/play_forest.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - playground=forest + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Agenstchap Natuur en Bos](https://wiki.openstreetmap.org/wiki/Tag:operator%3DAgenstchap Natuur en Bos) +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | Multiple choice | [08:00-22:00](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D08:00-22:00) [Jul-Aug 08:00-22:00](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3DJul-Aug 08:00-22:00) +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### play_forest-operator + + + +The question is **Wie beheert dit gebied?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Dit gebied wordt beheerd door {operator}` + + + + - **Dit gebied wordt beheerd door het Agentschap Natuur en Bos** corresponds with operator~^[aA][nN][bB]$_This option cannot be chosen as answer_ + - **Dit gebied wordt beheerd door het Agentschap Natuur en Bos** corresponds with operator=Agenstchap Natuur en Bos + + + + +### play_forest-opening_hours + + + +The question is **Wanneer is deze speelzone toegankelijk?** + + + + + + - **Het hele jaar door overdag toegankelijk (van 08:00 tot 22:00)** corresponds with opening_hours=08:00-22:00 + - **Enkel in de zomervakantie en overdag toegankelijk (van 1 juli tot 31 augustus, van 08:00 tot 22:00** corresponds with opening_hours=Jul-Aug 08:00-22:00 + + + + +### play_forest-email + + + +The question is **Wie kan men emailen indien er problemen zijn met de speelzone?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `De bevoegde dienst kan bereikt worden via {email}` + + + +### play_forest-phone + + + +The question is **Wie kan men bellen indien er problemen zijn met de speelzone?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `De bevoegde dienst kan getelefoneerd worden via {phone}` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### play_forest-reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/play_forest/play_forest.json \ No newline at end of file diff --git a/Docs/Layers/playground.md b/Docs/Layers/playground.md new file mode 100644 index 0000000000..8d1a099418 --- /dev/null +++ b/Docs/Layers/playground.md @@ -0,0 +1,273 @@ + + + playground +============ + + + + + +Playgrounds + + + + +## Table of contents + +1. [playground](#playground) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [playground-surface](#playground-surface) + + [playground-lit](#playground-lit) + + [playground-min_age](#playground-min_age) + + [playground-max_age](#playground-max_age) + + [playground-operator](#playground-operator) + + [playground-access](#playground-access) + + [playground-email](#playground-email) + + [playground-phone](#playground-phone) + + [Playground-wheelchair](#playground-wheelchair) + + [playground-opening_hours](#playground-opening_hours) + + [questions](#questions) + + [playground-reviews](#playground-reviews) + + + + + + + + + + +#### Themes using this layer + + + + + + - [playgrounds](https://mapcomplete.osm.be/playgrounds) + + +[Go to the source code](../assets/layers/playground/playground.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=playground + - playground!~^forest$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [grass](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass) [sand](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand) [woodchips](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dwoodchips) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) +[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) +[](https://taginfo.openstreetmap.org/keys/min_age#values) [min_age](https://wiki.openstreetmap.org/wiki/Key:min_age) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/max_age#values) [max_age](https://wiki.openstreetmap.org/wiki/Key:max_age) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [students](https://wiki.openstreetmap.org/wiki/Tag:access%3Dstudents) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [limited](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dlimited) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [sunrise-sunset](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3Dsunrise-sunset) [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### playground-surface + + + +The question is **Which is the surface of this playground?
If there are multiple, select the most occuring one** + +This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface) +This is rendered with `The surface is {surface}` + + + + - **The surface is grass** corresponds with surface=grass + - **The surface is sand** corresponds with surface=sand + - **The surface consist of woodchips** corresponds with surface=woodchips + - **The surface is paving stones** corresponds with surface=paving_stones + - **The surface is asphalt** corresponds with surface=asphalt + - **The surface is concrete** corresponds with surface=concrete + - **The surface is unpaved** corresponds with surface=unpaved_This option cannot be chosen as answer_ + - **The surface is paved** corresponds with surface=paved_This option cannot be chosen as answer_ + + + + +### playground-lit + + + +The question is **Is this playground lit at night?** + + + + + + - **This playground is lit at night** corresponds with lit=yes + - **This playground is not lit at night** corresponds with lit=no + + + + +### playground-min_age + + + +The question is **What is the minimum age required to access this playground?** + +This rendering asks information about the property [min_age](https://wiki.openstreetmap.org/wiki/Key:min_age) +This is rendered with `Accessible to kids older than {min_age} years` + + + +### playground-max_age + + + +The question is **What is the maximum age allowed to access this playground?** + +This rendering asks information about the property [max_age](https://wiki.openstreetmap.org/wiki/Key:max_age) +This is rendered with `Accessible to kids of at most {max_age}` + + + +### playground-operator + + + +The question is **Who operates this playground?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Operated by {operator}` + + + +### playground-access + + + +The question is **Is this playground accessible to the general public?** + + + + + + - **Accessible to the general public** corresponds with _This option cannot be chosen as answer_ + - **Accessible to the general public** corresponds with access=yes + - **Only accessible for clients of the operating business** corresponds with access=customers + - **Only accessible to students of the school** corresponds with access=students + - **Not accessible** corresponds with access=private + + + + +### playground-email + + + +The question is **What is the email address of the playground maintainer?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + +### playground-phone + + + +The question is **What is the phone number of the playground maintainer?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + +### Playground-wheelchair + + + +The question is **Is this playground accessible to wheelchair users?** + + + + + + - **Completely accessible for wheelchair users** corresponds with wheelchair=yes + - **Limited accessibility for wheelchair users** corresponds with wheelchair=limited + - **Not accessible for wheelchair users** corresponds with wheelchair=no + + + + +### playground-opening_hours + + + +The question is **When is this playground accessible?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `{opening_hours_table(opening_hours)}` + + + + - **Accessible from sunrise till sunset** corresponds with opening_hours=sunrise-sunset + - **Always accessible** corresponds with opening_hours=24/7 + - **Always accessible** corresponds with _This option cannot be chosen as answer_ + + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### playground-reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/playground/playground.json \ No newline at end of file diff --git a/Docs/Layers/postal_code_boundary.md b/Docs/Layers/postal_code_boundary.md new file mode 100644 index 0000000000..530fb88cfa --- /dev/null +++ b/Docs/Layers/postal_code_boundary.md @@ -0,0 +1,60 @@ + + + postal_code_boundary +====================== + + + + + + + + +## Table of contents + +1. [postal_code_boundary](#postal_code_boundary) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [postal_code](#postal_code) + + + + + + - This layer is needed as dependency for layer [town_hall](#town_hall) + + +[Go to the source code](../assets/layers/postal_code_boundary/postal_code_boundary.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - boundary=postal_code|bounary=administrative&postal_code~^..*$ + + + + + Supported attributes +---------------------- + + + + + +### postal_code + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/postal_code_boundary/postal_code_boundary.json \ No newline at end of file diff --git a/Docs/Layers/postboxes.md b/Docs/Layers/postboxes.md new file mode 100644 index 0000000000..b0b1324bf4 --- /dev/null +++ b/Docs/Layers/postboxes.md @@ -0,0 +1,85 @@ + + + postboxes +=========== + + + + + +The layer showing postboxes. + + + + +## Table of contents + +1. [postboxes](#postboxes) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [minimap](#minimap) + + + + + + + + + + +#### Themes using this layer + + + + + + - [postboxes](https://mapcomplete.osm.be/postboxes) + + +[Go to the source code](../assets/layers/postboxes/postboxes.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=post_box + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_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/layers/postboxes/postboxes.json \ No newline at end of file diff --git a/Docs/Layers/postoffices.md b/Docs/Layers/postoffices.md new file mode 100644 index 0000000000..ab0f619251 --- /dev/null +++ b/Docs/Layers/postoffices.md @@ -0,0 +1,111 @@ + + + postoffices +============= + + + + + +A layer showing post offices. + + + + +## Table of contents + +1. [postoffices](#postoffices) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [minimap](#minimap) + + [OH](#oh) + + + + + + + + + + +#### Themes using this layer + + + + + + - [postboxes](https://mapcomplete.osm.be/postboxes) + + +[Go to the source code](../assets/layers/postoffices/postoffices.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=post_office + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### OH + + + +The question is **What are the opening hours for this post office?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `Opening Hours: {opening_hours_table()}` + + + + - **24/7 opened (including holidays)** corresponds with opening_hours=24/7 + + +This document is autogenerated from assets/layers/postoffices/postoffices.json \ No newline at end of file diff --git a/Docs/Layers/public_bookcase.md b/Docs/Layers/public_bookcase.md new file mode 100644 index 0000000000..6cb9d959d6 --- /dev/null +++ b/Docs/Layers/public_bookcase.md @@ -0,0 +1,256 @@ + + + public_bookcase +================= + + + + + +A streetside cabinet with books, accessible to anyone + + + + +## Table of contents + +1. [public_bookcase](#public_bookcase) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [minimap](#minimap) + + [public_bookcase-name](#public_bookcase-name) + + [public_bookcase-capacity](#public_bookcase-capacity) + + [bookcase-booktypes](#bookcase-booktypes) + + [bookcase-is-indoors](#bookcase-is-indoors) + + [bookcase-is-accessible](#bookcase-is-accessible) + + [public_bookcase-operator](#public_bookcase-operator) + + [public_bookcase-brand](#public_bookcase-brand) + + [public_bookcase-ref](#public_bookcase-ref) + + [public_bookcase-start_date](#public_bookcase-start_date) + + [public_bookcase-website](#public_bookcase-website) + + + + + + - This layer is needed as dependency for layer [note_import](#note_import) + + + + +#### Themes using this layer + + + + + + - [bookcases](https://mapcomplete.osm.be/bookcases) + + +[Go to the source code](../assets/layers/public_bookcase/public_bookcase.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=public_bookcase + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) +[](https://taginfo.openstreetmap.org/keys/capacity#values) [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) | [nat](../SpecialInputElements.md#nat) | +[](https://taginfo.openstreetmap.org/keys/books#values) [books](https://wiki.openstreetmap.org/wiki/Key:books) | Multiple choice | [children](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren) [adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dadults) [children;adults](https://wiki.openstreetmap.org/wiki/Tag:books%3Dchildren;adults) +[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) +[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/brand#values) [brand](https://wiki.openstreetmap.org/wiki/Key:brand) | [string](../SpecialInputElements.md#string) | [Little Free Library](https://wiki.openstreetmap.org/wiki/Tag:brand%3DLittle Free Library) [](https://wiki.openstreetmap.org/wiki/Tag:brand%3D) +[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:ref%3D) +[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### public_bookcase-name + + + +The question is **What is the name of this public bookcase?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `The name of this bookcase is {name}` + + + + - **This bookcase doesn't have a name** corresponds with noname=yes + + + + +### public_bookcase-capacity + + + +The question is **How many books fit into this public bookcase?** + +This rendering asks information about the property [capacity](https://wiki.openstreetmap.org/wiki/Key:capacity) +This is rendered with `{capacity} books fit in this bookcase` + + + +### bookcase-booktypes + + + +The question is **What kind of books can be found in this public bookcase?** + + + + + + - **Mostly children books** corresponds with books=children + - **Mostly books for adults** corresponds with books=adults + - **Both books for kids and adults** corresponds with books=children;adults + + + + +### bookcase-is-indoors + + + +The question is **Is this bookcase located outdoors?** + + + + + + - **This bookcase is located indoors** corresponds with indoor=yes + - **This bookcase is located outdoors** corresponds with indoor=no + - **This bookcase is located outdoors** corresponds with _This option cannot be chosen as answer_ + + + + +### bookcase-is-accessible + + + +The question is **Is this public bookcase freely accessible?** + + + + + + - **Publicly accessible** corresponds with access=yes + - **Only accessible to customers** corresponds with access=customers + + + + +### public_bookcase-operator + + + +The question is **Who maintains this public bookcase?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Operated by {operator}` + + + +### public_bookcase-brand + + + +The question is **Is this public bookcase part of a bigger network?** + +This rendering asks information about the property [brand](https://wiki.openstreetmap.org/wiki/Key:brand) +This is rendered with `This public bookcase is part of {brand}` + + + + - **Part of the network 'Little Free Library'** corresponds with brand=Little Free Library + - **This public bookcase is not part of a bigger network** corresponds with nobrand=yes + + + + +### public_bookcase-ref + + + +The question is **What is the reference number of this public bookcase?** + +This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) +This is rendered with `The reference number of this public bookcase within {brand} is {ref}` + + + + - **This bookcase is not part of a bigger network** corresponds with nobrand=yes + + + + +### public_bookcase-start_date + + + +The question is **When was this public bookcase installed?** + +This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) +This is rendered with `Installed on {start_date}` + + + +### public_bookcase-website + + + +The question is **Is there a website with more information about this public bookcase?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `More info on the website` + +This document is autogenerated from assets/layers/public_bookcase/public_bookcase.json \ No newline at end of file diff --git a/Docs/Layers/raw_inspire_polygons.md b/Docs/Layers/raw_inspire_polygons.md new file mode 100644 index 0000000000..d4124edd23 --- /dev/null +++ b/Docs/Layers/raw_inspire_polygons.md @@ -0,0 +1,54 @@ + + + raw_inspire_polygons +====================== + + + + + + + + +## Table of contents + +1. [raw_inspire_polygons](#raw_inspire_polygons) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer is loaded from an external source, namely `https://osm-uk-addresses.russss.dev/inspire/{z}/{x}/{y}.json` + - This layer will automatically load [address](./address.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _has_address) + - This layer is needed as dependency for layer [to_import](#to_import) + + +[Go to the source code](../assets/layers/raw_inspire_polygons/raw_inspire_polygons.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - inspireid~^..*$ + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/raw_inspire_polygons/raw_inspire_polygons.json \ No newline at end of file diff --git a/Docs/Layers/service_ways.md b/Docs/Layers/service_ways.md new file mode 100644 index 0000000000..f05a2f385d --- /dev/null +++ b/Docs/Layers/service_ways.md @@ -0,0 +1,51 @@ + + + service_ways +============== + + + + + +A seperate layer with service roads, as to remove them from the intersection testing + + + + +## Table of contents + +1. [service_ways](#service_ways) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + +[Go to the source code](../assets/layers/service_ways/service_ways.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=service + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/service_ways/service_ways.json \ No newline at end of file diff --git a/Docs/Layers/shadow.md b/Docs/Layers/shadow.md new file mode 100644 index 0000000000..4ff88b4682 --- /dev/null +++ b/Docs/Layers/shadow.md @@ -0,0 +1,52 @@ + + + shadow +======== + + + + + + + + +## Table of contents + +1. [shadow](#shadow) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete/master/assets/themes/speelplekken/shadow.geojson` + + +[Go to the source code](../assets/layers/shadow/shadow.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - shadow=yes + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/shadow/shadow.json \ No newline at end of file diff --git a/Docs/Layers/shops.md b/Docs/Layers/shops.md new file mode 100644 index 0000000000..d219205ba2 --- /dev/null +++ b/Docs/Layers/shops.md @@ -0,0 +1,193 @@ + + + shops +======= + + + + + +A shop + + + + +## Table of contents + +1. [shops](#shops) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [shops-name](#shops-name) + + [shops-shop](#shops-shop) + + [shops-phone](#shops-phone) + + [shops-website](#shops-website) + + [shops-email](#shops-email) + + [shops-opening_hours](#shops-opening_hours) + + [questions](#questions) + + [reviews](#reviews) + + + + + + + + + + +#### Themes using this layer + + + + + + - [shops](https://mapcomplete.osm.be/shops) + + +[Go to the source code](../assets/layers/shops/shops.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - shop~^..*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/shop#values) [shop](https://wiki.openstreetmap.org/wiki/Key:shop) | [string](../SpecialInputElements.md#string) | [convenience](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dconvenience) [supermarket](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dsupermarket) [clothes](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dclothes) [hairdresser](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dhairdresser) [bakery](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dbakery) [car_repair](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar_repair) [car](https://wiki.openstreetmap.org/wiki/Tag:shop%3Dcar) +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### shops-name + + + +The question is **What is the name of this shop?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `This shop is called {name}` + + + +### shops-shop + + + +The question is **What does this shop sell?** + +This rendering asks information about the property [shop](https://wiki.openstreetmap.org/wiki/Key:shop) +This is rendered with `This shop sells {shop}` + + + + - **Convenience store** corresponds with shop=convenience + - **Supermarket** corresponds with shop=supermarket + - **Clothing store** corresponds with shop=clothes + - **Hairdresser** corresponds with shop=hairdresser + - **Bakery** corresponds with shop=bakery + - **Car repair (garage)** corresponds with shop=car_repair + - **Car dealer** corresponds with shop=car + + + + +### shops-phone + + + +The question is **What is the phone number?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + +### shops-website + + + +The question is **What is the website of this shop?** + +This rendering asks information about the property [website](https://wiki.openstreetmap.org/wiki/Key:website) +This is rendered with `{website}` + + + +### shops-email + + + +The question is **What is the email address of this shop?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + +### shops-opening_hours + + + +The question is **What are the opening hours of this shop?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `{opening_hours_table(opening_hours)}` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/shops/shops.json \ No newline at end of file diff --git a/Docs/Layers/sidewalks.md b/Docs/Layers/sidewalks.md new file mode 100644 index 0000000000..1b5690bd81 --- /dev/null +++ b/Docs/Layers/sidewalks.md @@ -0,0 +1,176 @@ + + + sidewalks +=========== + + + + + +Layer showing sidewalks of highways + + + + +## Table of contents + +1. [sidewalks](#sidewalks) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [streetname](#streetname) + + [left-sidewalk_minimap](#left-sidewalk_minimap) + + [left-has_sidewalk](#left-has_sidewalk) + + [left-sidewalk_width](#left-sidewalk_width) + + [questions](#questions) + + [right-sidewalk_minimap](#right-sidewalk_minimap) + + [right-has_sidewalk](#right-has_sidewalk) + + [right-sidewalk_width](#right-sidewalk_width) + + [questions](#questions) + + + + + + + + +[Go to the source code](../assets/layers/sidewalks/sidewalks.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=residential|highway=unclassified|highway=tertiary|highway=secondary + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/sidewalk:left#values) [sidewalk:left](https://wiki.openstreetmap.org/wiki/Key:sidewalk:left) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:left%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:left%3Dno) +[](https://taginfo.openstreetmap.org/keys/sidewalk:left:width#values) [sidewalk:left:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:left:width) | [length](../SpecialInputElements.md#length) | +[](https://taginfo.openstreetmap.org/keys/sidewalk:right#values) [sidewalk:right](https://wiki.openstreetmap.org/wiki/Key:sidewalk:right) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:right%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:sidewalk:right%3Dno) +[](https://taginfo.openstreetmap.org/keys/sidewalk:right:width#values) [sidewalk:right:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:right:width) | [length](../SpecialInputElements.md#length) | + + + + +### streetname + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### left-sidewalk_minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### left-has_sidewalk + + + +The question is **Is there a sidewalk on this side of the road?** + + + + + + - **Yes, there is a sidewalk on this side of the road** corresponds with sidewalk:left=yes + - **No, there is no seperated sidewalk to walk on** corresponds with sidewalk:left=no + + + + +### left-sidewalk_width + + + +The question is **What is the width of the sidewalk on this side of the road?** + +This rendering asks information about the property [sidewalk:left:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:left:width) +This is rendered with `This sidewalk is {sidewalk:left:width}m wide` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### right-sidewalk_minimap + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### right-has_sidewalk + + + +The question is **Is there a sidewalk on this side of the road?** + + + + + + - **Yes, there is a sidewalk on this side of the road** corresponds with sidewalk:right=yes + - **No, there is no seperated sidewalk to walk on** corresponds with sidewalk:right=no + + + + +### right-sidewalk_width + + + +The question is **What is the width of the sidewalk on this side of the road?** + +This rendering asks information about the property [sidewalk:right:width](https://wiki.openstreetmap.org/wiki/Key:sidewalk:right:width) +This is rendered with `This sidewalk is {sidewalk:right:width}m wide` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/sidewalks/sidewalks.json \ No newline at end of file diff --git a/Docs/Layers/slow_roads.md b/Docs/Layers/slow_roads.md new file mode 100644 index 0000000000..88948e17d1 --- /dev/null +++ b/Docs/Layers/slow_roads.md @@ -0,0 +1,137 @@ + + + slow_roads +============ + + + + + +All carfree roads + + + + +## Table of contents + +1. [slow_roads](#slow_roads) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [explanation](#explanation) + + [slow_roads-surface](#slow_roads-surface) + + [slow_road_is_lit](#slow_road_is_lit) + + + + + + + + +[Go to the source code](../assets/layers/slow_roads/slow_roads.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=pedestrian|highway=footway|highway=path|highway=bridleway|highway=living_street|highway=track + - access!~^no$ + - access!~^private$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/highway#values) [highway](https://wiki.openstreetmap.org/wiki/Key:highway) | Multiple choice | [living_street](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dliving_street) [pedestrian](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpedestrian) [footway](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dfootway) [path](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dpath) [bridleway](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dbridleway) [track](https://wiki.openstreetmap.org/wiki/Tag:highway%3Dtrack) +[](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [grass](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass) [ground](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dground) [sand](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) +[](https://taginfo.openstreetmap.org/keys/lit#values) [lit](https://wiki.openstreetmap.org/wiki/Key:lit) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:lit%3Dno) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### explanation + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **
Dit is een woonerf:
  • Voetgangers mogen hier de volledige breedte van de straat gebruiken
  • Gemotoriseerd verkeer mag maximaal 20km/h rijden
** corresponds with highway=living_street + - **Dit is een brede, autovrije straat** corresponds with highway=pedestrian + - **Dit is een voetpaadje** corresponds with highway=footway + - **Dit is een wegeltje of bospad** corresponds with highway=path + - **Dit is een ruiterswegel** corresponds with highway=bridleway + - **Dit is een tractorspoor of weg om landbouwgrond te bereikken** corresponds with highway=track + + + + +### slow_roads-surface + + + +The question is **Wat is de wegverharding van dit pad?** + +This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface) +This is rendered with `The surface is {surface}` + + + + - **The surface is grass** corresponds with surface=grass + - **The surface is ground** corresponds with surface=ground + - **The surface is unpaved** corresponds with surface=unpaved_This option cannot be chosen as answer_ + - **The surface is sand** corresponds with surface=sand + - **The surface is paving stones** corresponds with surface=paving_stones + - **The surface is asphalt** corresponds with surface=asphalt + - **The surface is concrete** corresponds with surface=concrete + - **The surface is paved** corresponds with surface=paved_This option cannot be chosen as answer_ + + + + +### slow_road_is_lit + + + +The question is **Is deze weg 's nachts verlicht?** + + + + + + - **'s nachts verlicht** corresponds with lit=yes + - **Niet verlicht** corresponds with lit=no + + +This document is autogenerated from assets/layers/slow_roads/slow_roads.json \ No newline at end of file diff --git a/Docs/Layers/split_point.md b/Docs/Layers/split_point.md new file mode 100644 index 0000000000..e586d794ee --- /dev/null +++ b/Docs/Layers/split_point.md @@ -0,0 +1,51 @@ + + + split_point +============= + + + + + +Layer rendering the little scissors for the minimap in the 'splitRoadWizard' + + + + +## Table of contents + +1. [split_point](#split_point) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + + + +[Go to the source code](../assets/layers/split_point/split_point.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - _split_point=yes + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/split_point/split_point.json \ No newline at end of file diff --git a/Docs/Layers/sport_pitch.md b/Docs/Layers/sport_pitch.md new file mode 100644 index 0000000000..24d94802e6 --- /dev/null +++ b/Docs/Layers/sport_pitch.md @@ -0,0 +1,234 @@ + + + sport_pitch +============= + + + + + +A sport pitch + + + + +## Table of contents + +1. [sport_pitch](#sport_pitch) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [sport_pitch-sport](#sport_pitch-sport) + + [sport_pitch-surface](#sport_pitch-surface) + + [sport-pitch-access](#sport-pitch-access) + + [sport-pitch-reservation](#sport-pitch-reservation) + + [sport_pitch-phone](#sport_pitch-phone) + + [sport_pitch-email](#sport_pitch-email) + + [sport_pitch-opening_hours](#sport_pitch-opening_hours) + + [questions](#questions) + + [sport-pitch-reviews](#sport-pitch-reviews) + + + + + + + + + + +#### Themes using this layer + + + + + + - [sport_pitches](https://mapcomplete.osm.be/sport_pitches) + + +[Go to the source code](../assets/layers/sport_pitch/sport_pitch.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - leisure=pitch + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/sport#values) [sport](https://wiki.openstreetmap.org/wiki/Key:sport) | [string](../SpecialInputElements.md#string) | [basketball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dbasketball) [soccer](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dsoccer) [table_tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtable_tennis) [tennis](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dtennis) [korfball](https://wiki.openstreetmap.org/wiki/Tag:sport%3Dkorfball) +[](https://taginfo.openstreetmap.org/keys/surface#values) [surface](https://wiki.openstreetmap.org/wiki/Key:surface) | [string](../SpecialInputElements.md#string) | [grass](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dgrass) [sand](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dsand) [paving_stones](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dpaving_stones) [asphalt](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dasphalt) [concrete](https://wiki.openstreetmap.org/wiki/Tag:surface%3Dconcrete) +[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [public](https://wiki.openstreetmap.org/wiki/Tag:access%3Dpublic) [limited](https://wiki.openstreetmap.org/wiki/Tag:access%3Dlimited) [members](https://wiki.openstreetmap.org/wiki/Tag:access%3Dmembers) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) +[](https://taginfo.openstreetmap.org/keys/reservation#values) [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) +[](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/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### sport_pitch-sport + + + +The question is **Which sport can be played here?** + +This rendering asks information about the property [sport](https://wiki.openstreetmap.org/wiki/Key:sport) +This is rendered with `{sport} is played here` + + + + - **Basketball is played here** corresponds with sport=basketball + - **Soccer is played here** corresponds with sport=soccer + - **This is a pingpong table** corresponds with sport=table_tennis + - **Tennis is played here** corresponds with sport=tennis + - **Korfball is played here** corresponds with sport=korfball + - **Basketball is played here** corresponds with sport=basket_This option cannot be chosen as answer_ + + + + +### sport_pitch-surface + + + +The question is **Which is the surface of this sport pitch?** + +This rendering asks information about the property [surface](https://wiki.openstreetmap.org/wiki/Key:surface) +This is rendered with `The surface is {surface}` + + + + - **The surface is grass** corresponds with surface=grass + - **The surface is sand** corresponds with surface=sand + - **The surface is paving stones** corresponds with surface=paving_stones + - **The surface is asphalt** corresponds with surface=asphalt + - **The surface is concrete** corresponds with surface=concrete + + + + +### sport-pitch-access + + + +The question is **Is this sport pitch publicly accessible?** + + + + + + - **Public access** corresponds with access=public + - **Limited access (e.g. only with an appointment, during certain hours, ...)** corresponds with access=limited + - **Only accessible for members of the club** corresponds with access=members + - **Private - not accessible to the public** corresponds with access=private + + + + +### sport-pitch-reservation + + + +The question is **Does one have to make an appointment to use this sport pitch?** + + + + + + - **Making an appointment is obligatory to use this sport pitch** corresponds with reservation=required + - **Making an appointment is recommended when using this sport pitch** corresponds with reservation=recommended + - **Making an appointment is possible, but not necessary to use this sport pitch** corresponds with reservation=yes + - **Making an appointment is not possible** corresponds with reservation=no + + + + +### sport_pitch-phone + + + +The question is **What is the phone number of the operator?** + +This rendering asks information about the property [phone](https://wiki.openstreetmap.org/wiki/Key:phone) +This is rendered with `{phone}` + + + +### sport_pitch-email + + + +The question is **What is the email address of the operator?** + +This rendering asks information about the property [email](https://wiki.openstreetmap.org/wiki/Key:email) +This is rendered with `{email}` + + + +### sport_pitch-opening_hours + + + +The question is **When is this pitch accessible?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `Openingsuren: {opening_hours_table()}` + + + + - **24/7 toegankelijk** corresponds with _This option cannot be chosen as answer_ + - **Always accessible** corresponds with opening_hours=24/7 + + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### sport-pitch-reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/sport_pitch/sport_pitch.json \ No newline at end of file diff --git a/Docs/Layers/street_lamps.md b/Docs/Layers/street_lamps.md new file mode 100644 index 0000000000..18e4426318 --- /dev/null +++ b/Docs/Layers/street_lamps.md @@ -0,0 +1,225 @@ + + + street_lamps +============== + + + + + +A layer showing street lights + + + + +## Table of contents + +1. [street_lamps](#street_lamps) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [ref](#ref) + + [support](#support) + + [lamp_mount](#lamp_mount) + + [method](#method) + + [colour](#colour) + + [count](#count) + + [lit](#lit) + + [direction](#direction) + + + + + + + + + + +#### Themes using this layer + + + + + + - [street_lighting](https://mapcomplete.osm.be/street_lighting) + + +[Go to the source code](../assets/layers/street_lamps/street_lamps.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - highway=street_lamp + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/support#values) [support](https://wiki.openstreetmap.org/wiki/Key:support) | Multiple choice | [catenary](https://wiki.openstreetmap.org/wiki/Tag:support%3Dcatenary) [ceiling](https://wiki.openstreetmap.org/wiki/Tag:support%3Dceiling) [ground](https://wiki.openstreetmap.org/wiki/Tag:support%3Dground) [pedestal](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpedestal) [pole](https://wiki.openstreetmap.org/wiki/Tag:support%3Dpole) [wall](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall) [wall_mount](https://wiki.openstreetmap.org/wiki/Tag:support%3Dwall_mount) +[](https://taginfo.openstreetmap.org/keys/lamp_mount#values) [lamp_mount](https://wiki.openstreetmap.org/wiki/Key:lamp_mount) | Multiple choice | [straight_mast](https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dstraight_mast) [bent_mast](https://wiki.openstreetmap.org/wiki/Tag:lamp_mount%3Dbent_mast) +[](https://taginfo.openstreetmap.org/keys/light:method#values) [light:method](https://wiki.openstreetmap.org/wiki/Key:light:method) | Multiple choice | [LED](https://wiki.openstreetmap.org/wiki/Tag:light:method%3DLED) [incandescent](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dincandescent) [halogen](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhalogen) [discharge](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Ddischarge) [mercury](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmercury) [metal-halide](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dmetal-halide) [fluorescent](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dfluorescent) [sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dsodium) [low_pressure_sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dlow_pressure_sodium) [high_pressure_sodium](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dhigh_pressure_sodium) [gas](https://wiki.openstreetmap.org/wiki/Tag:light:method%3Dgas) +[](https://taginfo.openstreetmap.org/keys/light:colour#values) [light:colour](https://wiki.openstreetmap.org/wiki/Key:light:colour) | [color](../SpecialInputElements.md#color) | [white](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dwhite) [green](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dgreen) [orange](https://wiki.openstreetmap.org/wiki/Tag:light:colour%3Dorange) +[](https://taginfo.openstreetmap.org/keys/light:count#values) [light:count](https://wiki.openstreetmap.org/wiki/Key:light:count) | [pnat](../SpecialInputElements.md#pnat) | [1](https://wiki.openstreetmap.org/wiki/Tag:light:count%3D1) [2](https://wiki.openstreetmap.org/wiki/Tag:light:count%3D2) +[](https://taginfo.openstreetmap.org/keys/light:lit#values) [light:lit](https://wiki.openstreetmap.org/wiki/Key:light:lit) | Multiple choice | [dusk-dawn](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddusk-dawn) [24/7](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3D24/7) [motion](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Dmotion) [demand](https://wiki.openstreetmap.org/wiki/Tag:light:lit%3Ddemand) +[](https://taginfo.openstreetmap.org/keys/light:direction#values) [light:direction](https://wiki.openstreetmap.org/wiki/Key:light:direction) | [direction](../SpecialInputElements.md#direction) | + + + + +### ref + + + +The question is **What is the reference number of this street lamp?** + +This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) +This is rendered with `This street lamp has the reference number {ref}` + + + +### support + + + +The question is **How is this street lamp mounted?** + + + + + + - **This lamp is suspended using cables** corresponds with support=catenary + - **This lamp is mounted on a ceiling** corresponds with support=ceiling + - **This lamp is mounted in the ground** corresponds with support=ground + - **This lamp is mounted on a short pole (mostly < 1.5m)** corresponds with support=pedestal + - **This lamp is mounted on a pole** corresponds with support=pole + - **This lamp is mounted directly to the wall** corresponds with support=wall + - **This lamp is mounted to the wall using a metal bar** corresponds with support=wall_mount + + + + +### lamp_mount + + + +The question is **How is this lamp mounted to the pole?** + + + + + + - **This lamp sits atop of a straight mast** corresponds with lamp_mount=straight_mast + - **This lamp sits at the end of a bent mast** corresponds with lamp_mount=bent_mast + + + + +### method + + + +The question is **What kind of lighting does this lamp use?** + + + + + + - **This lamp is lit electrically** corresponds with light:method=electric_This option cannot be chosen as answer_ + - **This lamp uses LEDs** corresponds with light:method=LED + - **This lamp uses incandescent lighting** corresponds with light:method=incandescent + - **This lamp uses halogen lighting** corresponds with light:method=halogen + - **This lamp uses discharge lamps (unknown type)** corresponds with light:method=discharge + - **This lamp uses a mercury-vapour lamp (lightly blueish)** corresponds with light:method=mercury + - **This lamp uses metal-halide lamps (bright white)** corresponds with light:method=metal-halide + - **This lamp uses fluorescent lighting** corresponds with light:method=fluorescent + - **This lamp uses sodium lamps (unknown type)** corresponds with light:method=sodium + - **This lamp uses low pressure sodium lamps (monochrome orange)** corresponds with light:method=low_pressure_sodium + - **This lamp uses high pressure sodium lamps (orange with white)** corresponds with light:method=high_pressure_sodium + - **This lamp is lit using gas** corresponds with light:method=gas + + + + +### colour + + + +The question is **What colour light does this lamp emit?** + +This rendering asks information about the property [light:colour](https://wiki.openstreetmap.org/wiki/Key:light:colour) +This is rendered with `This lamp emits {light:colour} light` + + + + - **This lamp emits white light** corresponds with light:colour=white + - **This lamp emits green light** corresponds with light:colour=green + - **This lamp emits orange light** corresponds with light:colour=orange + + + + +### count + + + +The question is **How many fixtures does this light have?** + +This rendering asks information about the property [light:count](https://wiki.openstreetmap.org/wiki/Key:light:count) +This is rendered with `This lamp has {light:count} fixtures` + + + + - **This lamp has 1 fixture** corresponds with light:count=1 + - **This lamp has 2 fixtures** corresponds with light:count=2 + + + + +### lit + + + +The question is **When is this lamp lit?** + + + + + + - **This lamp is lit at night** corresponds with light:lit=dusk-dawn + - **This lamp is lit 24/7** corresponds with light:lit=24/7 + - **This lamp is lit based on motion** corresponds with light:lit=motion + - **This lamp is lit based on demand (e.g. with a pushbutton)** corresponds with light:lit=demand + + + + +### direction + + + +The question is **Where does this lamp point to?** + +This rendering asks information about the property [light:direction](https://wiki.openstreetmap.org/wiki/Key:light:direction) +This is rendered with `This lamp points towards {light:direction}` + +This document is autogenerated from assets/layers/street_lamps/street_lamps.json \ No newline at end of file diff --git a/Docs/Layers/surveillance_camera.md b/Docs/Layers/surveillance_camera.md new file mode 100644 index 0000000000..5067b7c944 --- /dev/null +++ b/Docs/Layers/surveillance_camera.md @@ -0,0 +1,227 @@ + + + surveillance_camera +===================== + + + + + +This layer shows surveillance cameras and allows a contributor to update information and add new cameras + + + + +## Table of contents + +1. [surveillance_camera](#surveillance_camera) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [Camera type: fixed; panning; dome](#camera-type-fixed;-panning;-dome) + + [camera_direction](#camera_direction) + + [Operator](#operator) + + [Surveillance type: public, outdoor, indoor](#surveillance-type-public,-outdoor,-indoor) + + [is_indoor](#is_indoor) + + [Level](#level) + + [Surveillance:zone](#surveillancezone) + + [camera:mount](#cameramount) + + + + + + - This layer will automatically load [walls_and_buildings](./walls_and_buildings.md) into the layout as it depends on it: a preset snaps to this layer (presets[1]) + + + + +#### Themes using this layer + + + + + + - [surveillance](https://mapcomplete.osm.be/surveillance) + + +[Go to the source code](../assets/layers/surveillance_camera/surveillance_camera.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - man_made=surveillance + - surveillance:type=camera|surveillance:type=ALPR|surveillance:type=ANPR + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/camera:type#values) [camera:type](https://wiki.openstreetmap.org/wiki/Key:camera:type) | Multiple choice | [fixed](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dfixed) [dome](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Ddome) [panning](https://wiki.openstreetmap.org/wiki/Tag:camera:type%3Dpanning) +[](https://taginfo.openstreetmap.org/keys/camera:direction#values) [camera:direction](https://wiki.openstreetmap.org/wiki/Key:camera:direction) | [direction](../SpecialInputElements.md#direction) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/surveillance#values) [surveillance](https://wiki.openstreetmap.org/wiki/Key:surveillance) | Multiple choice | [public](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dpublic) [outdoor](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Doutdoor) [indoor](https://wiki.openstreetmap.org/wiki/Tag:surveillance%3Dindoor) +[](https://taginfo.openstreetmap.org/keys/indoor#values) [indoor](https://wiki.openstreetmap.org/wiki/Key:indoor) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:indoor%3Dno) +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [nat](../SpecialInputElements.md#nat) | +[](https://taginfo.openstreetmap.org/keys/surveillance:zone#values) [surveillance:zone](https://wiki.openstreetmap.org/wiki/Key:surveillance:zone) | [string](../SpecialInputElements.md#string) | [parking](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dparking) [traffic](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dtraffic) [entrance](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dentrance) [corridor](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dcorridor) [public_transport_platform](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dpublic_transport_platform) [shop](https://wiki.openstreetmap.org/wiki/Tag:surveillance:zone%3Dshop) +[](https://taginfo.openstreetmap.org/keys/camera:mount#values) [camera:mount](https://wiki.openstreetmap.org/wiki/Key:camera:mount) | [string](../SpecialInputElements.md#string) | [wall](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dwall) [pole](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dpole) [ceiling](https://wiki.openstreetmap.org/wiki/Tag:camera:mount%3Dceiling) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Camera type: fixed; panning; dome + + + +The question is **What kind of camera is this?** + + + + + + - **A fixed (non-moving) camera** corresponds with camera:type=fixed + - **A dome camera (which can turn)** corresponds with camera:type=dome + - **A panning camera** corresponds with camera:type=panning + + + + +### camera_direction + + + +The question is **In which geographical direction does this camera film?** + +This rendering asks information about the property [camera:direction](https://wiki.openstreetmap.org/wiki/Key:camera:direction) +This is rendered with `Films to a compass heading of {camera:direction}` + + + + - **Films to a compass heading of {direction}** corresponds with direction~^..*$_This option cannot be chosen as answer_ + + + + +### Operator + + + +The question is **Who operates this CCTV?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Operated by {operator}` + + + +### Surveillance type: public, outdoor, indoor + + + +The question is **What kind of surveillance is this camera** + + + + + + - **A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel,...** corresponds with surveillance=public + - **An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, ...)** corresponds with surveillance=outdoor + - **A private indoor area is surveilled, e.g. a shop, a private underground parking, ...** corresponds with surveillance=indoor + + + + +### is_indoor + + + +The question is **Is the public space surveilled by this camera an indoor or outdoor space?** + + + + + + - **This camera is located indoors** corresponds with indoor=yes + - **This camera is located outdoors** corresponds with indoor=no + - **This camera is probably located outdoors** corresponds with _This option cannot be chosen as answer_ + + + + +### Level + + + +The question is **On which level is this camera located?** + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) +This is rendered with `Located on level {level}` + + + +### Surveillance:zone + + + +The question is **What exactly is surveilled here?** + +This rendering asks information about the property [surveillance:zone](https://wiki.openstreetmap.org/wiki/Key:surveillance:zone) +This is rendered with ` Surveills a {surveillance:zone}` + + + + - **Surveills a parking** corresponds with surveillance:zone=parking + - **Surveills the traffic** corresponds with surveillance:zone=traffic + - **Surveills an entrance** corresponds with surveillance:zone=entrance + - **Surveills a corridor** corresponds with surveillance:zone=corridor + - **Surveills a public tranport platform** corresponds with surveillance:zone=public_transport_platform + - **Surveills a shop** corresponds with surveillance:zone=shop + + + + +### camera:mount + + + +The question is **How is this camera placed?** + +This rendering asks information about the property [camera:mount](https://wiki.openstreetmap.org/wiki/Key:camera:mount) +This is rendered with `Mounting method: {camera:mount}` + + + + - **This camera is placed against a wall** corresponds with camera:mount=wall + - **This camera is placed one a pole** corresponds with camera:mount=pole + - **This camera is placed on the ceiling** corresponds with camera:mount=ceiling + + +This document is autogenerated from assets/layers/surveillance_camera/surveillance_camera.json \ No newline at end of file diff --git a/Docs/Layers/to_import.md b/Docs/Layers/to_import.md new file mode 100644 index 0000000000..e138d0c0d2 --- /dev/null +++ b/Docs/Layers/to_import.md @@ -0,0 +1,102 @@ + + + to_import +=========== + + + + + +Alamat + + + + +## Table of contents + +1. [to_import](#to_import) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [uk_addresses_explanation](#uk_addresses_explanation) + + [uk_addresses_embedding_outline](#uk_addresses_embedding_outline) + + [uk_addresses_import_button](#uk_addresses_import_button) + + + + + + - This layer is loaded from an external source, namely `https://osm-uk-addresses.russss.dev/addresses/{z}/{x}/{y}.json` + - This layer will automatically load [address](./address.md) into the layout as it depends on it: a tagrendering needs this layer (uk_addresses_import_button) + - This layer will automatically load [address](./address.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _embedding_object) + - This layer will automatically load [raw_inspire_polygons](./raw_inspire_polygons.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[3] which calculates the value for _embedding_inspire_polygon_has_address) + + +[Go to the source code](../assets/layers/to_import/to_import.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - inspireid~^..*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/_embedding_object:id#values) [_embedding_object:id](https://wiki.openstreetmap.org/wiki/Key:_embedding_object:id) | Multiple choice | [true](https://wiki.openstreetmap.org/wiki/Tag:_embedding_object:id%3Dtrue) [false](https://wiki.openstreetmap.org/wiki/Tag:_embedding_object:id%3Dfalse) + + + + +### uk_addresses_explanation + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### uk_addresses_embedding_outline + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **The INSPIRE-polygon containing this point has at least one address contained** corresponds with _embedding_object:id=true + - **The INSPIRE-polygon containing this point has no addresses contained** corresponds with _embedding_object:id=false + + + + +### uk_addresses_import_button + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/to_import/to_import.json \ No newline at end of file diff --git a/Docs/Layers/toekomstige_fietsstraat.md b/Docs/Layers/toekomstige_fietsstraat.md new file mode 100644 index 0000000000..5fd14bafb5 --- /dev/null +++ b/Docs/Layers/toekomstige_fietsstraat.md @@ -0,0 +1,74 @@ + + + toekomstige_fietsstraat +========================= + + + + + +This street will become a cyclestreet soon + + + + +## Table of contents + +1. [toekomstige_fietsstraat](#toekomstige_fietsstraat) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + + + + + + + + + +#### Themes using this layer + + + + + + - [cyclestreets](https://mapcomplete.osm.be/cyclestreets) + + +[Go to the source code](../assets/layers/toekomstige_fietsstraat/toekomstige_fietsstraat.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - proposed:cyclestreet=yes + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/toekomstige_fietsstraat/toekomstige_fietsstraat.json \ No newline at end of file diff --git a/Docs/Layers/toilet.md b/Docs/Layers/toilet.md new file mode 100644 index 0000000000..d8dc96068d --- /dev/null +++ b/Docs/Layers/toilet.md @@ -0,0 +1,317 @@ + + + toilet +======== + + + + + +A layer showing (public) toilets + + + + +## Table of contents + +1. [toilet](#toilet) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [toilet-access](#toilet-access) + + [toilets-fee](#toilets-fee) + + [toilet-charge](#toilet-charge) + + [payment-options](#payment-options) + + [Opening-hours](#opening-hours) + + [toilets-wheelchair](#toilets-wheelchair) + + [toilets-type](#toilets-type) + + [toilets-changing-table](#toilets-changing-table) + + [toilet-changing_table:location](#toilet-changing_tablelocation) + + [toilet-handwashing](#toilet-handwashing) + + [toilet-has-paper](#toilet-has-paper) + + [level](#level) + + [description](#description) + + + + + + + + + + +#### Themes using this layer + + + + + + - [toilets](https://mapcomplete.osm.be/toilets) + + +[Go to the source code](../assets/layers/toilet/toilet.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=toilets + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | [string](../SpecialInputElements.md#string) | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [customers](https://wiki.openstreetmap.org/wiki/Tag:access%3Dcustomers) [no](https://wiki.openstreetmap.org/wiki/Tag:access%3Dno) [key](https://wiki.openstreetmap.org/wiki/Tag:access%3Dkey) +[](https://taginfo.openstreetmap.org/keys/fee#values) [fee](https://wiki.openstreetmap.org/wiki/Key:fee) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:fee%3Dno) +[](https://taginfo.openstreetmap.org/keys/charge#values) [charge](https://wiki.openstreetmap.org/wiki/Key:charge) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | [24/7](https://wiki.openstreetmap.org/wiki/Tag:opening_hours%3D24/7) +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/toilets:position#values) [toilets:position](https://wiki.openstreetmap.org/wiki/Key:toilets:position) | Multiple choice | [seated](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated) [urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Durinal) [squat](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dsquat) [seated;urinal](https://wiki.openstreetmap.org/wiki/Tag:toilets:position%3Dseated;urinal) +[](https://taginfo.openstreetmap.org/keys/changing_table#values) [changing_table](https://wiki.openstreetmap.org/wiki/Key:changing_table) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:changing_table%3Dno) +[](https://taginfo.openstreetmap.org/keys/changing_table:location#values) [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) | [string](../SpecialInputElements.md#string) | [female_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dfemale_toilet) [male_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dmale_toilet) [wheelchair_toilet](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Dwheelchair_toilet) [dedicated_room](https://wiki.openstreetmap.org/wiki/Tag:changing_table:location%3Ddedicated_room) +[](https://taginfo.openstreetmap.org/keys/toilets:handwashing#values) [toilets:handwashing](https://wiki.openstreetmap.org/wiki/Key:toilets:handwashing) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:handwashing%3Dno) +[](https://taginfo.openstreetmap.org/keys/toilets:paper_supplied#values) [toilets:paper_supplied](https://wiki.openstreetmap.org/wiki/Key:toilets:paper_supplied) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets:paper_supplied%3Dno) +[](https://taginfo.openstreetmap.org/keys/level#values) [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### toilet-access + + + +The question is **Are these toilets publicly accessible?** + +This rendering asks information about the property [access](https://wiki.openstreetmap.org/wiki/Key:access) +This is rendered with `Access is {access}` + + + + - **Public access** corresponds with access=yes + - **Only access to customers** corresponds with access=customers + - **Not accessible** corresponds with access=no + - **Accessible, but one has to ask a key to enter** corresponds with access=key + - **Public access** corresponds with access=public_This option cannot be chosen as answer_ + + + + +### toilets-fee + + + +The question is **Are these toilets free to use?** + + + + + + - **These are paid toilets** corresponds with fee=yes + - **Free to use** corresponds with fee=no + + + + +### toilet-charge + + + +The question is **How much does one have to pay for these toilets?** + +This rendering asks information about the property [charge](https://wiki.openstreetmap.org/wiki/Key:charge) +This is rendered with `The fee is {charge}` + + + +### payment-options + + + +The question is **Which methods of payment are accepted here?** + + + + + + - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no + - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + + + + +### Opening-hours + + + +The question is **When are these toilets opened?** + +This rendering asks information about the property [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) +This is rendered with `{opening_hours_table()}` + + + + - **Opened 24/7** corresponds with opening_hours=24/7 + + + + +### toilets-wheelchair + + + +The question is **Is there a dedicated toilet for wheelchair users** + + + + + + - **There is a dedicated toilet for wheelchair users** corresponds with wheelchair=yes + - **No wheelchair access** corresponds with wheelchair=no + + + + +### toilets-type + + + +The question is **Which kind of toilets are this?** + + + + + + - **There are only seated toilets** corresponds with toilets:position=seated + - **There are only urinals here** corresponds with toilets:position=urinal + - **There are only squat toilets here** corresponds with toilets:position=squat + - **Both seated toilets and urinals are available here** corresponds with toilets:position=seated;urinal + + + + +### toilets-changing-table + + + +The question is **Is a changing table (to change diapers) available?** + + + + + + - **A changing table is available** corresponds with changing_table=yes + - **No changing table is available** corresponds with changing_table=no + + + + +### toilet-changing_table:location + + + +The question is **Where is the changing table located?** + +This rendering asks information about the property [changing_table:location](https://wiki.openstreetmap.org/wiki/Key:changing_table:location) +This is rendered with `The changing table is located at {changing_table:location}` + + + + - **The changing table is in the toilet for women. ** corresponds with changing_table:location=female_toilet + - **The changing table is in the toilet for men. ** corresponds with changing_table:location=male_toilet + - **The changing table is in the toilet for wheelchair users. ** corresponds with changing_table:location=wheelchair_toilet + - **The changing table is in a dedicated room. ** corresponds with changing_table:location=dedicated_room + + + + +### toilet-handwashing + + + +The question is **Do these toilets have a sink to wash your hands?** + + + + + + - **This toilets have a sink to wash your hands** corresponds with toilets:handwashing=yes + - **This toilets don't have a sink to wash your hands** corresponds with toilets:handwashing=no + + + + +### toilet-has-paper + + + +The question is **Does one have to bring their own toilet paper to this toilet?** + + + + + + - **This toilet is equipped with toilet paper** corresponds with toilets:paper_supplied=yes + - **You have to bring your own toilet paper to this toilet** corresponds with toilets:paper_supplied=no + + + + +### level + + + +The question is **On what level is this feature located?** + +This rendering asks information about the property [level](https://wiki.openstreetmap.org/wiki/Key:level) +This is rendered with `Located on the {level}th floor` + + + + - **Located underground** corresponds with location=underground_This option cannot be chosen as answer_ + - **Located on the ground floor** corresponds with level=0 + - **Located on the ground floor** corresponds with _This option cannot be chosen as answer_ + - **Located on the first floor** corresponds with level=1 + + + + +### description + + + +The question is **Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `{description}` + +This document is autogenerated from assets/layers/toilet/toilet.json \ No newline at end of file diff --git a/Docs/Layers/town_hall.md b/Docs/Layers/town_hall.md new file mode 100644 index 0000000000..ca36b4926e --- /dev/null +++ b/Docs/Layers/town_hall.md @@ -0,0 +1,49 @@ + + + town_hall +=========== + + + + + + + + +## Table of contents + +1. [town_hall](#town_hall) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer will automatically load [postal_code_boundary](./postal_code_boundary.md) into the layout as it depends on it: A calculated tag loads features from this layer (calculatedTag[0] which calculates the value for _postal_code_properties) + + +[Go to the source code](../assets/layers/town_hall/town_hall.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=townhall|building=church + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/town_hall/town_hall.json \ No newline at end of file diff --git a/Docs/Layers/trail.md b/Docs/Layers/trail.md new file mode 100644 index 0000000000..a594dcbc7a --- /dev/null +++ b/Docs/Layers/trail.md @@ -0,0 +1,170 @@ + + + trail +======= + + + + + +Aangeduide wandeltochten + + + + +## Table of contents + +1. [trail](#trail) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [trail-length](#trail-length) + + [Name](#name) + + [Operator tag](#operator-tag) + + [Color](#color) + + [Wheelchair access](#wheelchair-access) + + [pushchair access](#pushchair-access) + + + + + + + + +[Go to the source code](../assets/layers/trail/trail.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - route=hiking|route=bycicle|route=horse + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) +[](https://taginfo.openstreetmap.org/keys/colour#values) [colour](https://wiki.openstreetmap.org/wiki/Key:colour) | [color](../SpecialInputElements.md#color) | [blue](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dblue) [red](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dred) [green](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dgreen) [yellow](https://wiki.openstreetmap.org/wiki/Tag:colour%3Dyellow) +[](https://taginfo.openstreetmap.org/keys/wheelchair#values) [wheelchair](https://wiki.openstreetmap.org/wiki/Key:wheelchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:wheelchair%3Dno) +[](https://taginfo.openstreetmap.org/keys/pushchair#values) [pushchair](https://wiki.openstreetmap.org/wiki/Key:pushchair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:pushchair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:pushchair%3Dno) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### trail-length + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Name + + + +The question is **Wat is de naam van deze wandeling?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `Deze wandeling heet {name}` + + + +### Operator tag + + + +The question is **Wie beheert deze wandeltocht?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Beheer door {operator}` + + + + - **Dit gebied wordt beheerd door Natuurpunt** corresponds with operator=Natuurpunt + - **Dit gebied wordt beheerd door {operator}** corresponds with operator~^(n|N)atuurpunt.*$_This option cannot be chosen as answer_ + + + + +### Color + + + +The question is **Welke kleur heeft deze wandeling?** + +This rendering asks information about the property [colour](https://wiki.openstreetmap.org/wiki/Key:colour) +This is rendered with `Deze wandeling heeft kleur {colour}` + + + + - **Blue trail** corresponds with colour=blue + - **Red trail** corresponds with colour=red + - **Green trail** corresponds with colour=green + - **Yellow trail** corresponds with colour=yellow + + + + +### Wheelchair access + + + +The question is **Is deze wandeling toegankelijk met de rolstoel?** + + + + + + - **deze wandeltocht is toegankelijk met de rolstoel** corresponds with wheelchair=yes + - **deze wandeltocht is niet toegankelijk met de rolstoel** corresponds with wheelchair=no + + + + +### pushchair access + + + +The question is **Is deze wandeltocht toegankelijk met de buggy?** + + + + + + - **deze wandeltocht is toegankelijk met de buggy** corresponds with pushchair=yes + - **deze wandeltocht is niet toegankelijk met de buggy** corresponds with pushchair=no + + +This document is autogenerated from assets/layers/trail/trail.json \ No newline at end of file diff --git a/Docs/Layers/tree_node.md b/Docs/Layers/tree_node.md new file mode 100644 index 0000000000..3b9c2edf82 --- /dev/null +++ b/Docs/Layers/tree_node.md @@ -0,0 +1,225 @@ + + + tree_node +=========== + + + + + +A layer showing trees + + + + +## Table of contents + +1. [tree_node](#tree_node) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [tree-height](#tree-height) + + [tree-leaf_type](#tree-leaf_type) + + [tree-denotation](#tree-denotation) + + [tree-decidouous](#tree-decidouous) + + [tree_node-name](#tree_node-name) + + [tree-heritage](#tree-heritage) + + [tree_node-ref:OnroerendErfgoed](#tree_node-refonroerenderfgoed) + + [tree_node-wikidata](#tree_node-wikidata) + + + + + + + + + + +#### Themes using this layer + + + + + + - [trees](https://mapcomplete.osm.be/trees) + + +[Go to the source code](../assets/layers/tree_node/tree_node.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - natural=tree + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/height#values) [height](https://wiki.openstreetmap.org/wiki/Key:height) | Multiple choice | +[](https://taginfo.openstreetmap.org/keys/leaf_type#values) [leaf_type](https://wiki.openstreetmap.org/wiki/Key:leaf_type) | Multiple choice | [broadleaved](https://wiki.openstreetmap.org/wiki/Tag:leaf_type%3Dbroadleaved) [needleleaved](https://wiki.openstreetmap.org/wiki/Tag:leaf_type%3Dneedleleaved) +[](https://taginfo.openstreetmap.org/keys/denotation#values) [denotation](https://wiki.openstreetmap.org/wiki/Key:denotation) | Multiple choice | [landmark](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dlandmark) [natural_monument](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dnatural_monument) [agricultural](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dagricultural) [park](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dpark) [garden](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dgarden) [avenue](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Davenue) [urban](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Durban) [none](https://wiki.openstreetmap.org/wiki/Tag:denotation%3Dnone) +[](https://taginfo.openstreetmap.org/keys/leaf_cycle#values) [leaf_cycle](https://wiki.openstreetmap.org/wiki/Key:leaf_cycle) | Multiple choice | [deciduous](https://wiki.openstreetmap.org/wiki/Tag:leaf_cycle%3Ddeciduous) [evergreen](https://wiki.openstreetmap.org/wiki/Tag:leaf_cycle%3Devergreen) +[](https://taginfo.openstreetmap.org/keys/name#values) [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:name%3D) +[](https://taginfo.openstreetmap.org/keys/heritage#values) [heritage](https://wiki.openstreetmap.org/wiki/Key:heritage) | Multiple choice | [4](https://wiki.openstreetmap.org/wiki/Tag:heritage%3D4) [4](https://wiki.openstreetmap.org/wiki/Tag:heritage%3D4) [yes](https://wiki.openstreetmap.org/wiki/Tag:heritage%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:heritage%3Dno) +[](https://taginfo.openstreetmap.org/keys/ref:OnroerendErfgoed#values) [ref:OnroerendErfgoed](https://wiki.openstreetmap.org/wiki/Key:ref:OnroerendErfgoed) | [nat](../SpecialInputElements.md#nat) | +[](https://taginfo.openstreetmap.org/keys/wikidata#values) [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) | [wikidata](../SpecialInputElements.md#wikidata) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### tree-height + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **Height: {height} m** corresponds with height~^^[0-9.]+$$ + + + + +### tree-leaf_type + + + +The question is **Is this a broadleaved or needleleaved tree?** + + + + + + - ** Broadleaved** corresponds with leaf_type=broadleaved + - ** Needleleaved** corresponds with leaf_type=needleleaved + - ** Permanently leafless** corresponds with leaf_type=leafless_This option cannot be chosen as answer_ + + + + +### tree-denotation + + + +The question is **How significant is this tree? Choose the first answer that applies.** + + + + + + - **The tree is remarkable due to its size or prominent location. It is useful for navigation.** corresponds with denotation=landmark + - **The tree is a natural monument, e.g. because it is especially old, or of a valuable species.** corresponds with denotation=natural_monument + - **The tree is used for agricultural purposes, e.g. in an orchard.** corresponds with denotation=agricultural + - **The tree is in a park or similar (cemetery, school grounds, …).** corresponds with denotation=park + - **The tree is a residential garden.** corresponds with denotation=garden + - **This is a tree along an avenue.** corresponds with denotation=avenue + - **The tree is an urban area.** corresponds with denotation=urban + - **The tree is outside of an urban area.** corresponds with denotation=none + + + + +### tree-decidouous + + + +The question is **Is this tree evergreen or deciduous?** + + + + + + - **Deciduous: the tree loses its leaves for some time of the year.** corresponds with leaf_cycle=deciduous + - **Evergreen.** corresponds with leaf_cycle=evergreen + + + + +### tree_node-name + + + +The question is **Does the tree have a name?** + +This rendering asks information about the property [name](https://wiki.openstreetmap.org/wiki/Key:name) +This is rendered with `Name: {name}` + + + + - **The tree does not have a name.** corresponds with noname=yes + + + + +### tree-heritage + + + +The question is **Is this tree registered heritage?** + + + + + + - ** Registered as heritage by Onroerend Erfgoed Flanders** corresponds with heritage=4&heritage:operator=OnroerendErfgoed + - **Registered as heritage by Direction du Patrimoine culturel Brussels** corresponds with heritage=4&heritage:operator=aatl + - **Registered as heritage by a different organisation** corresponds with heritage=yes + - **Not registered as heritage** corresponds with heritage=no + - **Registered as heritage by a different organisation** corresponds with heritage~^..*$_This option cannot be chosen as answer_ + + + + +### tree_node-ref:OnroerendErfgoed + + + +The question is **What is the ID issued by Onroerend Erfgoed Flanders?** + +This rendering asks information about the property [ref:OnroerendErfgoed](https://wiki.openstreetmap.org/wiki/Key:ref:OnroerendErfgoed) +This is rendered with ` Onroerend Erfgoed ID: {ref:OnroerendErfgoed}` + + + +### tree_node-wikidata + + + +The question is **What is the Wikidata ID for this tree?** + +This rendering asks information about the property [wikidata](https://wiki.openstreetmap.org/wiki/Key:wikidata) +This is rendered with ` Wikidata: {wikidata}` + +This document is autogenerated from assets/layers/tree_node/tree_node.json \ No newline at end of file diff --git a/Docs/Layers/type_node.md b/Docs/Layers/type_node.md new file mode 100644 index 0000000000..46d4029928 --- /dev/null +++ b/Docs/Layers/type_node.md @@ -0,0 +1,52 @@ + + + type_node +=========== + + + + + +This is a priviliged meta_layer which exports _every_ point in OSM. This only works if zoomed below the point that the full tile is loaded (and not loaded via Overpass). Note that this point will also contain a property `parent_ways` which contains all the ways this node is part of as a list. This is mainly used for extremely specialized themes, which do advanced conflations. Expert use only. + + + + +## Table of contents + +1. [type_node](#type_node) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer is needed as dependency for layer [grb](#grb) + + +[Go to the source code](../assets/layers/type_node/type_node.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - id~^node\/.*$ + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/type_node/type_node.json \ No newline at end of file diff --git a/Docs/Layers/viewpoint.md b/Docs/Layers/viewpoint.md new file mode 100644 index 0000000000..8b2bcac359 --- /dev/null +++ b/Docs/Layers/viewpoint.md @@ -0,0 +1,83 @@ + + + viewpoint +=========== + + + + + +A nice viewpoint or nice view. Ideal to add an image if no other category fits + + + + +## Table of contents + +1. [viewpoint](#viewpoint) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [viewpoint-description](#viewpoint-description) + + + + + + + + +[Go to the source code](../assets/layers/viewpoint/viewpoint.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - tourism=viewpoint + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### viewpoint-description + + + +The question is **Do you want to add a description?** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `{description}` + +This document is autogenerated from assets/layers/viewpoint/viewpoint.json \ No newline at end of file diff --git a/Docs/Layers/village_green.md b/Docs/Layers/village_green.md new file mode 100644 index 0000000000..fbc8ce8eee --- /dev/null +++ b/Docs/Layers/village_green.md @@ -0,0 +1,84 @@ + + + village_green +=============== + + + + + +A layer showing village-green (which are communal green areas, but not quite parks" + + + + +## Table of contents + +1. [village_green](#village_green) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [village_green-explanation](#village_green-explanation) + + [village_green-reviews](#village_green-reviews) + + + + + + + + +[Go to the source code](../assets/layers/village_green/village_green.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - landuse=village_green + + + + + Supported attributes +---------------------- + + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### village_green-explanation + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### village_green-reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/village_green/village_green.json \ No newline at end of file diff --git a/Docs/Layers/visitor_information_centre.md b/Docs/Layers/visitor_information_centre.md new file mode 100644 index 0000000000..06f61cf60a --- /dev/null +++ b/Docs/Layers/visitor_information_centre.md @@ -0,0 +1,51 @@ + + + visitor_information_centre +============================ + + + + + +A visitor center offers information about a specific attraction or place of interest where it is located. + + + + +## Table of contents + +1. [visitor_information_centre](#visitor_information_centre) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + + + +[Go to the source code](../assets/layers/visitor_information_centre/visitor_information_centre.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - information=visitor_centre|information=office + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/visitor_information_centre/visitor_information_centre.json \ No newline at end of file diff --git a/Docs/Layers/walking_routes.md b/Docs/Layers/walking_routes.md new file mode 100644 index 0000000000..910fb7a8ae --- /dev/null +++ b/Docs/Layers/walking_routes.md @@ -0,0 +1,154 @@ + + + walking_routes +================ + + + + + +Walking routes by 'provincie Antwerpen' + + + + +## Table of contents + +1. [walking_routes](#walking_routes) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [walk-length](#walk-length) + + [walk-type](#walk-type) + + [walk-description](#walk-description) + + [walk-operator](#walk-operator) + + [walk-operator-email](#walk-operator-email) + + [questions](#questions) + + [reviews](#reviews) + + + + + + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer is loaded from an external source, namely `https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson` + + +[Go to the source code](../assets/layers/walking_routes/walking_routes.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - type=route + - route=foot + - operator~^[pP]rovincie Antwerpen$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/route#values) [route](https://wiki.openstreetmap.org/wiki/Key:route) | Multiple choice | [iwn](https://wiki.openstreetmap.org/wiki/Tag:route%3Diwn) [nwn](https://wiki.openstreetmap.org/wiki/Tag:route%3Dnwn) [rwn](https://wiki.openstreetmap.org/wiki/Tag:route%3Drwn) [lwn](https://wiki.openstreetmap.org/wiki/Tag:route%3Dlwn) +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [text](../SpecialInputElements.md#text) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/operator:email#values) [operator:email](https://wiki.openstreetmap.org/wiki/Key:operator:email) | [email](../SpecialInputElements.md#email) | + + + + +### walk-length + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### walk-type + + + +_This tagrendering has no question and is thus read-only_ + + + + + + - **Dit is een internationale wandelroute** corresponds with route=iwn + - **Dit is een nationale wandelroute** corresponds with route=nwn + - **Dit is een regionale wandelroute** corresponds with route=rwn + - **Dit is een lokale wandelroute** corresponds with route=lwn + + + + +### walk-description + + + +The question is **Geef een korte beschrijving van de wandeling (max 255 tekens)** + +This rendering asks information about the property [description](https://wiki.openstreetmap.org/wiki/Key:description) +This is rendered with `

Korte beschrijving:

{description}` + + + +### walk-operator + + + +The question is **Wie beheert deze wandeling en plaatst dus de signalisatiebordjes?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Signalisatie geplaatst door {operator}` + + + +### walk-operator-email + + + +The question is **Naar wie kan men emailen bij problemen rond signalisatie?** + +This rendering asks information about the property [operator:email](https://wiki.openstreetmap.org/wiki/Key:operator:email) +This is rendered with `Bij problemen met signalisatie kan men emailen naar {operator:email}` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### reviews + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/walking_routes/walking_routes.json \ No newline at end of file diff --git a/Docs/Layers/walls_and_buildings.md b/Docs/Layers/walls_and_buildings.md new file mode 100644 index 0000000000..8b9f9ec476 --- /dev/null +++ b/Docs/Layers/walls_and_buildings.md @@ -0,0 +1,70 @@ + + + walls_and_buildings +===================== + + + + + +Special builtin layer providing all walls and buildings. This layer is useful in presets for objects which can be placed against walls (e.g. AEDs, postboxes, entrances, addresses, surveillance cameras, ...). This layer is invisible by default and not toggleable by the user. + + + + +## Table of contents + +1. [walls_and_buildings](#walls_and_buildings) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - This layer is not visible by default and must be enabled in the filter by the user. + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + - This layer is needed as dependency for layer [defibrillator](#defibrillator) + - This layer is needed as dependency for layer [entrance](#entrance) + - This layer is needed as dependency for layer [surveillance_camera](#surveillance_camera) + + + + +#### Themes using this layer + + + + + + - [aed](https://mapcomplete.osm.be/aed) + - [entrances](https://mapcomplete.osm.be/entrances) + - [surveillance](https://mapcomplete.osm.be/surveillance) + + +[Go to the source code](../assets/layers/walls_and_buildings/walls_and_buildings.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - barrier=wall|building~^..*$ + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/walls_and_buildings/walls_and_buildings.json \ No newline at end of file diff --git a/Docs/Layers/waste_basket.md b/Docs/Layers/waste_basket.md new file mode 100644 index 0000000000..efcb5e86fc --- /dev/null +++ b/Docs/Layers/waste_basket.md @@ -0,0 +1,112 @@ + + + waste_basket +============== + + + + + +This is a public waste basket, thrash can, where you can throw away your thrash. + + + + +## Table of contents + +1. [waste_basket](#waste_basket) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [waste-basket-waste-types](#waste-basket-waste-types) + + [dispensing_dog_bags](#dispensing_dog_bags) + + + + + + + + + + +#### Themes using this layer + + + + + + - [waste_basket](https://mapcomplete.osm.be/waste_basket) + + +[Go to the source code](../assets/layers/waste_basket/waste_basket.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=waste_basket + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/waste#values) [waste](https://wiki.openstreetmap.org/wiki/Key:waste) | Multiple choice | [trash](https://wiki.openstreetmap.org/wiki/Tag:waste%3Dtrash) [dog_excrement](https://wiki.openstreetmap.org/wiki/Tag:waste%3Ddog_excrement) [cigarettes](https://wiki.openstreetmap.org/wiki/Tag:waste%3Dcigarettes) [drugs](https://wiki.openstreetmap.org/wiki/Tag:waste%3Ddrugs) [sharps](https://wiki.openstreetmap.org/wiki/Tag:waste%3Dsharps) +[](https://taginfo.openstreetmap.org/keys/vending#values) [vending](https://wiki.openstreetmap.org/wiki/Key:vending) | Multiple choice | [dog_excrement_bag](https://wiki.openstreetmap.org/wiki/Tag:vending%3Ddog_excrement_bag) [](https://wiki.openstreetmap.org/wiki/Tag:vending%3D) [](https://wiki.openstreetmap.org/wiki/Tag:vending%3D) + + + + +### waste-basket-waste-types + + + +The question is **What kind of waste basket is this?** + + + + + + - **A waste basket for general waste** corresponds with _This option cannot be chosen as answer_ + - **A waste basket for general waste** corresponds with waste=trash + - **A waste basket for dog excrements** corresponds with waste=dog_excrement + - **A waste basket for cigarettes** corresponds with waste=cigarettes + - **A waste basket for drugs** corresponds with waste=drugs + - **A waste basket for needles and other sharp objects** corresponds with waste=sharps + + + + +### dispensing_dog_bags + + + +The question is **Does this waste basket have a dispenser for dog excrement bags?** + + + + + + - **This waste basket has a dispenser for (dog) excrement bags** corresponds with vending=dog_excrement_bag + - **This waste basket does not have a dispenser for (dog) excrement bags** corresponds with not:vending=dog_excrement_bag + - **This waste basket does not have a dispenser for (dog) excrement bags** corresponds with + + +This document is autogenerated from assets/layers/waste_basket/waste_basket.json \ No newline at end of file diff --git a/Docs/Layers/watermill.md b/Docs/Layers/watermill.md new file mode 100644 index 0000000000..a69c90700e --- /dev/null +++ b/Docs/Layers/watermill.md @@ -0,0 +1,112 @@ + + + watermill +=========== + + + + + +Watermolens + + + + +## Table of contents + +1. [watermill](#watermill) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [images](#images) + + [Access tag](#access-tag) + + [Operator tag](#operator-tag) + + + + + + + + +[Go to the source code](../assets/layers/watermill/watermill.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - man_made=watermill + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/access:description#values) [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | [Natuurpunt](https://wiki.openstreetmap.org/wiki/Tag:operator%3DNatuurpunt) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### Access tag + + + +The question is **Is dit gebied toegankelijk?** + +This rendering asks information about the property [access:description](https://wiki.openstreetmap.org/wiki/Key:access:description) +This is rendered with `De toegankelijkheid van dit gebied is: {access:description}` + + + + - **Vrij toegankelijk** corresponds with access=yes + - **Niet toegankelijk** corresponds with access=no + - **Niet toegankelijk, want privégebied** corresponds with access=private + - **Toegankelijk, ondanks dat het privegebied is** corresponds with access=permissive + - **Enkel toegankelijk met een gids of tijdens een activiteit** corresponds with access=guided + - **Toegankelijk mits betaling** corresponds with access=yes&fee=yes + + + + +### Operator tag + + + +The question is **Wie beheert dit pad?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `Beheer door {operator}` + + + + - **Dit gebied wordt beheerd door Natuurpunt** corresponds with operator=Natuurpunt + - **Dit gebied wordt beheerd door {operator}** corresponds with operator~^(n|N)atuurpunt.*$_This option cannot be chosen as answer_ + + +This document is autogenerated from assets/layers/watermill/watermill.json \ No newline at end of file diff --git a/Docs/Layers/windturbine.md b/Docs/Layers/windturbine.md new file mode 100644 index 0000000000..4a9af8b3e4 --- /dev/null +++ b/Docs/Layers/windturbine.md @@ -0,0 +1,145 @@ + + + windturbine +============= + + + + + + + + +## Table of contents + +1. [windturbine](#windturbine) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [turbine-output](#turbine-output) + + [turbine-operator](#turbine-operator) + + [turbine-height](#turbine-height) + + [turbine-diameter](#turbine-diameter) + + [turbine-start-date](#turbine-start-date) + + [images](#images) + + + + + + + + + + +#### Themes using this layer + + + + + + - [openwindpowermap](https://mapcomplete.osm.be/openwindpowermap) + + +[Go to the source code](../assets/layers/windturbine/windturbine.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - generator:source=wind + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/generator:output:electricity#values) [generator:output:electricity](https://wiki.openstreetmap.org/wiki/Key:generator:output:electricity) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/height#values) [height](https://wiki.openstreetmap.org/wiki/Key:height) | [pfloat](../SpecialInputElements.md#pfloat) | +[](https://taginfo.openstreetmap.org/keys/rotor:diameter#values) [rotor:diameter](https://wiki.openstreetmap.org/wiki/Key:rotor:diameter) | [float](../SpecialInputElements.md#float) | +[](https://taginfo.openstreetmap.org/keys/start_date#values) [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) | [date](../SpecialInputElements.md#date) | + + + + +### turbine-output + + + +The question is **What is the power output of this wind turbine? (e.g. 2.3 MW)** + +This rendering asks information about the property [generator:output:electricity](https://wiki.openstreetmap.org/wiki/Key:generator:output:electricity) +This is rendered with `The power output of this wind turbine is {generator:output:electricity}.` + + + +### turbine-operator + + + +The question is **Who operates this wind turbine?** + +This rendering asks information about the property [operator](https://wiki.openstreetmap.org/wiki/Key:operator) +This is rendered with `This wind turbine is operated by {operator}.` + + + +### turbine-height + + + +The question is **What is the total height of this wind turbine (including rotor radius), in metres?** + +This rendering asks information about the property [height](https://wiki.openstreetmap.org/wiki/Key:height) +This is rendered with `The total height (including rotor radius) of this wind turbine is {height} metres.` + + + +### turbine-diameter + + + +The question is **What is the rotor diameter of this wind turbine, in metres?** + +This rendering asks information about the property [rotor:diameter](https://wiki.openstreetmap.org/wiki/Key:rotor:diameter) +This is rendered with `The rotor diameter of this wind turbine is {rotor:diameter} metres.` + + + +### turbine-start-date + + + +The question is **When did this wind turbine go into operation?** + +This rendering asks information about the property [start_date](https://wiki.openstreetmap.org/wiki/Key:start_date) +This is rendered with `This wind turbine went into operation on/in {start_date}.` + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from assets/layers/windturbine/windturbine.json \ No newline at end of file diff --git a/Docs/Layers/wrong_postal_code.md b/Docs/Layers/wrong_postal_code.md new file mode 100644 index 0000000000..a3d603d367 --- /dev/null +++ b/Docs/Layers/wrong_postal_code.md @@ -0,0 +1,51 @@ + + + wrong_postal_code +=================== + + + + + + + + +## Table of contents + +1. [wrong_postal_code](#wrong_postal_code) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + + + + + - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` + - Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings` + + +[Go to the source code](../assets/layers/wrong_postal_code/wrong_postal_code.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - boundary~^..*$ + - addr:postcode~^..*$ + + + + + Supported attributes +---------------------- + + + +This document is autogenerated from assets/layers/wrong_postal_code/wrong_postal_code.json \ No newline at end of file diff --git a/Docs/Making_Your_Own_Theme.md b/Docs/Making_Your_Own_Theme.md index 9b206e4452..37a81548b2 100644 --- a/Docs/Making_Your_Own_Theme.md +++ b/Docs/Making_Your_Own_Theme.md @@ -110,7 +110,7 @@ A JSON-schema file is available in Docs/Schemas - use LayoutConfig.schema.json t ### MetaTags There are few tags available that are calculated for convenience - e.g. the country an object is located -at. [An overview of all these metatags is available here](Docs/CalculatedTags.md) +at. [An overview of all these metatags is available here](CalculatedTags.md) ### TagRendering groups diff --git a/Docs/Misc/geolocation_button.gv.svg b/Docs/Misc/geolocation_button.gv.svg index fed1344bf0..52384ae204 100644 --- a/Docs/Misc/geolocation_button.gv.svg +++ b/Docs/Misc/geolocation_button.gv.svg @@ -1,5 +1,5 @@ - + diff --git a/Docs/SpecialInputElements.md b/Docs/SpecialInputElements.md index 0209e28d08..2ed9307d0e 100644 --- a/Docs/SpecialInputElements.md +++ b/Docs/SpecialInputElements.md @@ -3,7 +3,9 @@ Available types for text fields ================================= - ## Table of contents + + +## Table of contents 1. [Available types for text fields](#available-types-for-text-fields) + [string](#string) @@ -23,37 +25,51 @@ + [opening_hours](#opening_hours) + [color](#color) - The listed types here trigger a special input element. Use them in `tagrendering.freeform.type` of your tagrendering to activate them + + +The listed types here trigger a special input element. Use them in `tagrendering.freeform.type` of your tagrendering to activate them + + ### string -A basic string +A basic string + + ### text -A string, but allows input of longer strings more comfortably and supports newlines (a text area) +A string, but allows input of longer strings more comfortably and supports newlines (a text area) + + ### date -A date +A date + + ### direction -A geographical direction, in degrees. 0° is north, 90° is east, ... Will return a value between 0 (incl) and 360 (excl) +A geographical direction, in degrees. 0° is north, 90° is east, ... Will return a value between 0 (incl) and 360 (excl) + + ### length -A geographical length in meters (rounded at two points). Will give an extra minimap with a measurement tool. Arguments: [ zoomlevel, preferredBackgroundMapType (comma separated) ], e.g. `["21", "map,photo"] +A geographical length in meters (rounded at two points). Will give an extra minimap with a measurement tool. Arguments: [ zoomlevel, preferredBackgroundMapType (comma separated) ], e.g. `["21", "map,photo"] + + ### wikidata @@ -98,55 +114,73 @@ removePostfixes | remove these snippets of text from the end of the passed strin } ] } -``` +``` + + ### int -A number +A number + + ### nat -A positive number or zero +A positive number or zero + + ### pnat -A strict positive number +A strict positive number + + ### float -A decimal +A decimal + + ### pfloat -A positive decimal (incl zero) +A positive decimal (incl zero) + + ### email -An email adress +An email adress + + ### url -A url +A url + + ### phone -A phone number +A phone number + + ### opening_hours @@ -187,7 +221,9 @@ postfix | Piece of text that will always be added to the end of the generated op } ``` -*Don't forget to pass the prefix and postfix in the rendering as well*: `{opening_hours_table(opening_hours,yes @ &LPARENS, &RPARENS )` +*Don't forget to pass the prefix and postfix in the rendering as well*: `{opening_hours_table(opening_hours,yes @ &LPARENS, &RPARENS )` + + ### color diff --git a/Docs/SpecialRenderings.md b/Docs/SpecialRenderings.md index ba5b54f54b..1c2931f242 100644 --- a/Docs/SpecialRenderings.md +++ b/Docs/SpecialRenderings.md @@ -3,7 +3,9 @@ Special tag renderings ======================== - ## Table of contents + + +## Table of contents 1. [Special tag renderings](#special-tag-renderings) + [all_tags](#all_tags) @@ -48,10 +50,24 @@ * [Example usage of open_in_iD](#example-usage-of-open_in_id) + [clear_location_history](#clear_location_history) * [Example usage of clear_location_history](#example-usage-of-clear_location_history) + + [close_note](#close_note) + * [Example usage of close_note](#example-usage-of-close_note) + + [add_note_comment](#add_note_comment) + * [Example usage of add_note_comment](#example-usage-of-add_note_comment) + + [visualize_note_comments](#visualize_note_comments) + * [Example usage of visualize_note_comments](#example-usage-of-visualize_note_comments) + + [add_image_to_note](#add_image_to_note) + * [Example usage of add_image_to_note](#example-usage-of-add_image_to_note) + [auto_apply](#auto_apply) * [Example usage of auto_apply](#example-usage-of-auto_apply) - In a tagrendering, some special values are substituted by an advanced UI-element. This allows advanced features and visualizations to be reused by custom themes or even to query third-party API's. General usage is `{func_name()}`, `{func_name(arg, someotherarg)}` or `{func_name(args):cssStyle}`. Note that you _do not_ need to use quotes around your arguments, the comma is enough to separate them. This also implies you cannot use a comma in your args + + +In a tagrendering, some special values are substituted by an advanced UI-element. This allows advanced features and visualizations to be reused by custom themes or even to query third-party API's. + +General usage is `{func_name()}`, `{func_name(arg, someotherarg)}` or `{func_name(args):cssStyle}`. Note that you _do not_ need to use quotes around your arguments, the comma is enough to separate them. This also implies you cannot use a comma in your args + + ### all_tags @@ -59,7 +75,9 @@ #### Example usage of all_tags - `{all_tags()}` + `{all_tags()}` + + ### image_carousel @@ -72,7 +90,9 @@ image key/prefix (multiple values allowed if comma-seperated) | image,mapillary, #### Example usage of image_carousel - `{image_carousel(image,mapillary,image,wikidata,wikimedia_commons,image,image)}` + `{image_carousel(image,mapillary,image,wikidata,wikimedia_commons,image,image)}` + + ### image_upload @@ -86,7 +106,9 @@ label | Add image | The text to show on the button #### Example usage of image_upload - `{image_upload(image,Add image)}` + `{image_upload(image,Add image)}` + + ### wikipedia @@ -99,7 +121,9 @@ keyToShowWikipediaFor | wikidata | Use the wikidata entry from this key to show #### Example usage of wikipedia - `{wikipedia()}` is a basic example, `{wikipedia(name:etymology:wikidata)}` to show the wikipedia page of whom the feature was named after. Also remember that these can be styled, e.g. `{wikipedia():max-height: 10rem}` to limit the height + `{wikipedia()}` is a basic example, `{wikipedia(name:etymology:wikidata)}` to show the wikipedia page of whom the feature was named after. Also remember that these can be styled, e.g. `{wikipedia():max-height: 10rem}` to limit the height + + ### minimap @@ -113,7 +137,9 @@ idKey | id | (Matches all resting arguments) This argument should be the key of #### Example usage of minimap - `{minimap()}`, `{minimap(17, id, _list_of_embedded_feature_ids_calculated_by_calculated_tag):height:10rem; border: 2px solid black}` + `{minimap()}`, `{minimap(17, id, _list_of_embedded_feature_ids_calculated_by_calculated_tag):height:10rem; border: 2px solid black}` + + ### sided_minimap @@ -126,7 +152,9 @@ side | _undefined_ | The side to show, either `left` or `right` #### Example usage of sided_minimap - `{sided_minimap(left)}` + `{sided_minimap(left)}` + + ### reviews @@ -140,7 +168,9 @@ fallback | _undefined_ | The identifier to use, if tags[subjectKey] as sp #### Example usage of reviews - `{reviews()}` for a vanilla review, `{reviews(name, play_forest)}` to review a play forest. If a name is known, the name will be used as identifier, otherwise 'play_forest' is used + `{reviews()}` for a vanilla review, `{reviews(name, play_forest)}` to review a play forest. If a name is known, the name will be used as identifier, otherwise 'play_forest' is used + + ### opening_hours_table @@ -155,7 +185,9 @@ postfix | _empty string_ | Remove this string from the end of the value before p #### Example usage of opening_hours_table - A normal opening hours table can be invoked with `{opening_hours_table()}`. A table for e.g. conditional access with opening hours can be `{opening_hours_table(access:conditional, no @ &LPARENS, &RPARENS)}` + A normal opening hours table can be invoked with `{opening_hours_table()}`. A table for e.g. conditional access with opening hours can be `{opening_hours_table(access:conditional, no @ &LPARENS, &RPARENS)}` + + ### live @@ -170,7 +202,9 @@ path | _undefined_ | The path (or shorthand) that should be returned #### Example usage of live - {live({url},{url:format},hour)} {live(https://data.mobility.brussels/bike/api/counts/?request=live&featureID=CB2105,hour:data.hour_cnt;day:data.day_cnt;year:data.year_cnt,hour)} + {live({url},{url:format},hour)} {live(https://data.mobility.brussels/bike/api/counts/?request=live&featureID=CB2105,hour:data.hour_cnt;day:data.day_cnt;year:data.year_cnt,hour)} + + ### histogram @@ -186,7 +220,9 @@ colors* | _undefined_ | (Matches all resting arguments - optional) Matches a reg #### Example usage of histogram - `{histogram('some_key')}` with properties being `{some_key: ['a','b','a','c']} to create a histogram + `{histogram('some_key')}` with properties being `{some_key: ['a','b','a','c']} to create a histogram + + ### share_link @@ -199,7 +235,9 @@ url | _undefined_ | The url to share (default: current URL) #### Example usage of share_link - {share_link()} to share the current page, {share_link()} to share the given url + {share_link()} to share the current page, {share_link()} to share the given url + + ### canonical @@ -212,7 +250,9 @@ key | _undefined_ | The key of the tag to give the canonical text for #### Example usage of canonical - {canonical(length)} will give 42 metre (in french) + {canonical(length)} will give 42 metre (in french) + + ### import_button @@ -223,7 +263,7 @@ It is only functional in official themes, but can be tested in unoffical themes. #### Specifying which tags to copy or add -The argument `tags` of the import button takes a `;`-seperated list of tags to add. +The argument `tags` of the import button takes a `;`-seperated list of tags to add (or the name of a property which contains a JSON-list of properties). These can either be a tag to add, such as `amenity=fast_food` or can use a substitution, e.g. `addr:housenumber=$number`. This new point will then have the tags `amenity=fast_food` and `addr:housenumber` with the value that was saved in `number` in the original feature. @@ -264,16 +304,19 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be name | default | description ------ | --------- | ------------- targetLayer | _undefined_ | The id of the layer where this point should end up. This is not very strict, it will simply result in checking that this layer is shown preventing possible duplicate elements -tags | _undefined_ | The tags to add onto the new object - see specification above +tags | _undefined_ | The tags to add onto the new object - see specification above. If this is a key (a single word occuring in the properties of the object), the corresponding value is taken and expanded instead text | Import this data into OpenStreetMap | The text to show on the button icon | ./assets/svg/addSmall.svg | A nice icon to show in the button snap_onto_layers | _undefined_ | If a way of the given layer(s) is closeby, will snap the new point onto this way (similar as preset might snap). To show multiple layers to snap onto, use a `;`-seperated list max_snap_distance | 5 | The maximum distance that the imported point will be moved to snap onto a way in an already existing layer (in meters). This is previewed to the contributor, similar to the 'add new point'-action of MapComplete +note_id | _undefined_ | If given, this key will be read. The corresponding note on OSM will be closed, stating 'imported' #### Example usage of import_button - `{import_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,,5)}` + `{import_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,,5,)}` + + ### import_way_button @@ -284,7 +327,7 @@ It is only functional in official themes, but can be tested in unoffical themes. #### Specifying which tags to copy or add -The argument `tags` of the import button takes a `;`-seperated list of tags to add. +The argument `tags` of the import button takes a `;`-seperated list of tags to add (or the name of a property which contains a JSON-list of properties). These can either be a tag to add, such as `amenity=fast_food` or can use a substitution, e.g. `addr:housenumber=$number`. This new point will then have the tags `amenity=fast_food` and `addr:housenumber` with the value that was saved in `number` in the original feature. @@ -325,7 +368,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be name | default | description ------ | --------- | ------------- targetLayer | _undefined_ | The id of the layer where this point should end up. This is not very strict, it will simply result in checking that this layer is shown preventing possible duplicate elements -tags | _undefined_ | The tags to add onto the new object - see specification above +tags | _undefined_ | The tags to add onto the new object - see specification above. If this is a key (a single word occuring in the properties of the object), the corresponding value is taken and expanded instead text | Import this data into OpenStreetMap | The text to show on the button icon | ./assets/svg/addSmall.svg | A nice icon to show in the button snap_to_point_if | _undefined_ | Points with the given tags will be snapped to or moved @@ -338,7 +381,9 @@ snap_to_layer_max_distance | 0.1 | Distance to distort the geometry to snap to t #### Example usage of import_way_button - `{import_way_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,,5,,1,,0.1)}` + `{import_way_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,,5,,1,,0.1)}` + + ### conflate_button @@ -349,7 +394,7 @@ It is only functional in official themes, but can be tested in unoffical themes. #### Specifying which tags to copy or add -The argument `tags` of the import button takes a `;`-seperated list of tags to add. +The argument `tags` of the import button takes a `;`-seperated list of tags to add (or the name of a property which contains a JSON-list of properties). These can either be a tag to add, such as `amenity=fast_food` or can use a substitution, e.g. `addr:housenumber=$number`. This new point will then have the tags `amenity=fast_food` and `addr:housenumber` with the value that was saved in `number` in the original feature. @@ -390,7 +435,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be name | default | description ------ | --------- | ------------- targetLayer | _undefined_ | The id of the layer where this point should end up. This is not very strict, it will simply result in checking that this layer is shown preventing possible duplicate elements -tags | _undefined_ | The tags to add onto the new object - see specification above +tags | _undefined_ | The tags to add onto the new object - see specification above. If this is a key (a single word occuring in the properties of the object), the corresponding value is taken and expanded instead text | Import this data into OpenStreetMap | The text to show on the button icon | ./assets/svg/addSmall.svg | A nice icon to show in the button way_to_conflate | _undefined_ | The key, of which the corresponding value is the id of the OSM-way that must be conflated; typically a calculatedTag @@ -398,7 +443,9 @@ way_to_conflate | _undefined_ | The key, of which the corresponding value is the #### Example usage of conflate_button - `{conflate_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,)}` + `{conflate_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,)}` + + ### multi_apply @@ -415,7 +462,9 @@ overwrite | _undefined_ | If set to 'true', the tags on the other objects will a #### Example usage of multi_apply - {multi_apply(_features_with_the_same_name_within_100m, name:etymology:wikidata;name:etymology, Apply etymology information on all nearby objects with the same name)} + {multi_apply(_features_with_the_same_name_within_100m, name:etymology:wikidata;name:etymology, Apply etymology information on all nearby objects with the same name)} + + ### tag_apply @@ -444,7 +493,9 @@ id_of_object_to_apply_this_one | _undefined_ | If specified, applies the the tag #### Example usage of tag_apply - `{tag_apply(survey_date=$_now:date, Surveyed today!)}`, `{tag_apply(addr:street=$addr:street, Apply the address, apply_icon.svg, _closest_osm_id) + `{tag_apply(survey_date=$_now:date, Surveyed today!)}`, `{tag_apply(addr:street=$addr:street, Apply the address, apply_icon.svg, _closest_osm_id) + + ### export_as_gpx @@ -452,7 +503,9 @@ id_of_object_to_apply_this_one | _undefined_ | If specified, applies the the tag #### Example usage of export_as_gpx - `{export_as_gpx()}` + `{export_as_gpx()}` + + ### export_as_geojson @@ -460,7 +513,9 @@ id_of_object_to_apply_this_one | _undefined_ | If specified, applies the the tag #### Example usage of export_as_geojson - `{export_as_geojson()}` + `{export_as_geojson()}` + + ### open_in_iD @@ -468,7 +523,9 @@ id_of_object_to_apply_this_one | _undefined_ | If specified, applies the the tag #### Example usage of open_in_iD - `{open_in_iD()}` + `{open_in_iD()}` + + ### clear_location_history @@ -476,7 +533,73 @@ id_of_object_to_apply_this_one | _undefined_ | If specified, applies the the tag #### Example usage of clear_location_history - `{clear_location_history()}` + `{clear_location_history()}` + + + +### close_note + + Button to close a note. A predifined text can be defined to close the note with. If the note is already closed, will show a small text. + +name | default | description +------ | --------- | ------------- +text | _undefined_ | Text to show on this button +icon | checkmark.svg | Icon to show +Id-key | id | The property name where the ID of the note to close can be found +comment | _undefined_ | Text to add onto the note when closing + + +#### Example usage of close_note + + `{close_note(,checkmark.svg,id,)}` + + + +### add_note_comment + + A textfield to add a comment to a node (with the option to close the note). + +name | default | description +------ | --------- | ------------- +Id-key | id | The property name where the ID of the note to close can be found + + +#### Example usage of add_note_comment + + `{add_note_comment(id)}` + + + +### visualize_note_comments + + Visualises the comments for notes + +name | default | description +------ | --------- | ------------- +commentsKey | comments | The property name of the comments, which should be stringified json +start | 0 | Drop the first 'start' comments + + +#### Example usage of visualize_note_comments + + `{visualize_note_comments(comments,0)}` + + + +### add_image_to_note + + Adds an image to a node + +name | default | description +------ | --------- | ------------- +Id-key | id | The property name where the ID of the note to close can be found + + +#### Example usage of add_image_to_note + + `{add_image_to_note(id)}` + + ### auto_apply diff --git a/Docs/TagInfo/mapcomplete_aed.json b/Docs/TagInfo/mapcomplete_aed.json index 3e5655917a..8003a6d061 100644 --- a/Docs/TagInfo/mapcomplete_aed.json +++ b/Docs/TagInfo/mapcomplete_aed.json @@ -72,7 +72,7 @@ }, { "key": "defibrillator", - "description": "Layer 'Defibrillators' shows defibrillator with a fixed text, namely 'There is no info about the type of device' (in the MapComplete.osm.be theme 'Open AED Map') Picking this answer will delete the key defibrillator.", + "description": "Layer 'Defibrillators' shows with a fixed text, namely 'There is no info about the type of device' (in the MapComplete.osm.be theme 'Open AED Map') Picking this answer will delete the key defibrillator.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_bicyclelib.json b/Docs/TagInfo/mapcomplete_bicyclelib.json index 9120a4b0a2..cd9e68bd31 100644 --- a/Docs/TagInfo/mapcomplete_bicyclelib.json +++ b/Docs/TagInfo/mapcomplete_bicyclelib.json @@ -39,14 +39,26 @@ "key": "website", "description": "Layer 'Bicycle library' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Bicycle libraries')" }, + { + "key": "contact:website", + "description": "Layer 'Bicycle library' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Bicycle libraries')" + }, { "key": "phone", "description": "Layer 'Bicycle library' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Bicycle libraries')" }, + { + "key": "contact:phone", + "description": "Layer 'Bicycle library' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Bicycle libraries')" + }, { "key": "email", "description": "Layer 'Bicycle library' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Bicycle libraries')" }, + { + "key": "contact:email", + "description": "Layer 'Bicycle library' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Bicycle libraries')" + }, { "key": "opening_hours", "description": "Layer 'Bicycle library' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Bicycle libraries')" @@ -57,12 +69,12 @@ }, { "key": "fee", - "description": "Layer 'Bicycle library' shows fee=no&charge with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle libraries')", + "description": "Layer 'Bicycle library' shows fee=no with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle libraries')", "value": "no" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows fee=no&charge with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle libraries') Picking this answer will delete the key charge.", + "description": "Layer 'Bicycle library' shows fee=no with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle libraries') Picking this answer will delete the key charge.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_binoculars.json b/Docs/TagInfo/mapcomplete_binoculars.json index e02b95dcbd..11114fb8e1 100644 --- a/Docs/TagInfo/mapcomplete_binoculars.json +++ b/Docs/TagInfo/mapcomplete_binoculars.json @@ -37,12 +37,12 @@ }, { "key": "fee", - "description": "Layer 'Binoculars' shows fee=no&charge with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Binoculars')", + "description": "Layer 'Binoculars' 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 'Binoculars')", "value": "no" }, { "key": "charge", - "description": "Layer 'Binoculars' shows fee=no&charge with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Binoculars') Picking this answer will delete the key charge.", + "description": "Layer 'Binoculars' 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 'Binoculars') Picking this answer will delete the key charge.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_bookcases.json b/Docs/TagInfo/mapcomplete_bookcases.json index 6ae753d18a..ddba7cb5d9 100644 --- a/Docs/TagInfo/mapcomplete_bookcases.json +++ b/Docs/TagInfo/mapcomplete_bookcases.json @@ -2,7 +2,7 @@ "data_format": 1, "project": { "name": "MapComplete Open Bookcase Map", - "description": "A public bookcase is a small streetside cabinet, box, old phone boot or some other objects where books are stored", + "description": "A public bookcase is a small streetside cabinet, box, old phone booth or some other objects where books are stored", "project_url": "https://mapcomplete.osm.be/bookcases", "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", "icon_url": "https://mapcomplete.osm.be/assets/themes/bookcases/bookcase.svg", @@ -37,12 +37,12 @@ }, { "key": "noname", - "description": "Layer 'Bookcases' shows noname=yes&name with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", + "description": "Layer 'Bookcases' shows noname=yes with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", "value": "yes" }, { "key": "name", - "description": "Layer 'Bookcases' shows noname=yes&name with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key name.", + "description": "Layer 'Bookcases' shows noname=yes with a fixed text, namely 'This bookcase doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key name.", "value": "" }, { @@ -76,7 +76,7 @@ }, { "key": "indoor", - "description": "Layer 'Bookcases' shows indoor with a fixed text, namely 'This bookcase is located outdoors' (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key indoor.", + "description": "Layer 'Bookcases' shows with a fixed text, namely 'This bookcase is located outdoors' (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key indoor.", "value": "" }, { @@ -99,22 +99,22 @@ }, { "key": "brand", - "description": "Layer 'Bookcases' shows brand=Little Free Library&nobrand with a fixed text, namely 'Part of the network 'Little Free Library'' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", + "description": "Layer 'Bookcases' shows brand=Little Free Library with a fixed text, namely 'Part of the network 'Little Free Library'' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", "value": "Little Free Library" }, { "key": "nobrand", - "description": "Layer 'Bookcases' shows brand=Little Free Library&nobrand with a fixed text, namely 'Part of the network 'Little Free Library'' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key nobrand.", + "description": "Layer 'Bookcases' shows brand=Little Free Library with a fixed text, namely 'Part of the network 'Little Free Library'' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key nobrand.", "value": "" }, { "key": "nobrand", - "description": "Layer 'Bookcases' shows nobrand=yes&brand with a fixed text, namely 'This public bookcase is not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", + "description": "Layer 'Bookcases' shows nobrand=yes with a fixed text, namely 'This public bookcase is not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", "value": "yes" }, { "key": "brand", - "description": "Layer 'Bookcases' shows nobrand=yes&brand with a fixed text, namely 'This public bookcase is not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key brand.", + "description": "Layer 'Bookcases' shows nobrand=yes with a fixed text, namely 'This public bookcase is not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key brand.", "value": "" }, { @@ -123,17 +123,17 @@ }, { "key": "nobrand", - "description": "Layer 'Bookcases' shows nobrand=yes&brand&ref with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", + "description": "Layer 'Bookcases' shows nobrand=yes with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map')", "value": "yes" }, { "key": "brand", - "description": "Layer 'Bookcases' shows nobrand=yes&brand&ref with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key brand.", + "description": "Layer 'Bookcases' shows nobrand=yes with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key brand.", "value": "" }, { "key": "ref", - "description": "Layer 'Bookcases' shows nobrand=yes&brand&ref with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key ref.", + "description": "Layer 'Bookcases' shows nobrand=yes with a fixed text, namely 'This bookcase is not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Bookcase Map') Picking this answer will delete the key ref.", "value": "" }, { @@ -144,6 +144,10 @@ "key": "website", "description": "Layer 'Bookcases' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Open Bookcase Map')" }, + { + "key": "id", + "description": "The MapComplete theme Open Bookcase Map has a layer Possible bookcases showing features with this tag" + }, { "key": "id", "description": "The MapComplete theme Open Bookcase Map has a layer Your track showing features with this tag", diff --git a/Docs/TagInfo/mapcomplete_cafes_and_pubs.json b/Docs/TagInfo/mapcomplete_cafes_and_pubs.json index 7e152fb841..87d1edc2b8 100644 --- a/Docs/TagInfo/mapcomplete_cafes_and_pubs.json +++ b/Docs/TagInfo/mapcomplete_cafes_and_pubs.json @@ -83,14 +83,26 @@ "key": "website", "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cafés and pubs')" }, + { + "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 'Cafés and pubs')" + }, { "key": "email", "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cafés and pubs')" }, + { + "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 'Cafés and pubs')" + }, { "key": "phone", "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cafés and pubs')" }, + { + "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 'Cafés and pubs')" + }, { "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 'Cafés and pubs')", diff --git a/Docs/TagInfo/mapcomplete_campersite.json b/Docs/TagInfo/mapcomplete_campersite.json index 26721d0c3d..959fc26873 100644 --- a/Docs/TagInfo/mapcomplete_campersite.json +++ b/Docs/TagInfo/mapcomplete_campersite.json @@ -42,12 +42,12 @@ }, { "key": "fee", - "description": "Layer 'Camper sites' shows fee=no&charge with a fixed text, namely 'Can be used for free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')", + "description": "Layer 'Camper sites' shows fee=no with a fixed text, namely 'Can be used for free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')", "value": "no" }, { "key": "charge", - "description": "Layer 'Camper sites' shows fee=no&charge with a fixed text, namely 'Can be used for free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites') Picking this answer will delete the key charge.", + "description": "Layer 'Camper sites' shows fee=no with a fixed text, namely 'Can be used for free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites') Picking this answer will delete the key charge.", "value": "" }, { @@ -136,20 +136,6 @@ "key": "description", "description": "Layer 'Camper sites' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Campersites')" }, - { - "key": "operator", - "description": "Layer 'Camper sites' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Campersites')" - }, - { - "key": "power_supply", - "description": "Layer 'Camper sites' shows power_supply=yes with a fixed text, namely 'This place has a power supply' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')", - "value": "yes" - }, - { - "key": "power_supply", - "description": "Layer 'Camper sites' shows power_supply=no with a fixed text, namely 'This place does not have power supply' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')", - "value": "no" - }, { "key": "amenity", "description": "The MapComplete theme Campersites has a layer Sanitary dump stations showing features with this tag", @@ -239,20 +225,6 @@ "key": "network", "description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'network' (in the MapComplete.osm.be theme 'Campersites')" }, - { - "key": "operator", - "description": "Layer 'Sanitary dump stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Campersites')" - }, - { - "key": "power_supply", - "description": "Layer 'Sanitary dump stations' shows power_supply=yes with a fixed text, namely 'This place has a power supply' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')", - "value": "yes" - }, - { - "key": "power_supply", - "description": "Layer 'Sanitary dump stations' shows power_supply=no with a fixed text, namely 'This place does not have power supply' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Campersites')", - "value": "no" - }, { "key": "id", "description": "The MapComplete theme Campersites has a layer Your track showing features with this tag", diff --git a/Docs/TagInfo/mapcomplete_charging_stations.json b/Docs/TagInfo/mapcomplete_charging_stations.json index a816304f6a..4fdb903d94 100644 --- a/Docs/TagInfo/mapcomplete_charging_stations.json +++ b/Docs/TagInfo/mapcomplete_charging_stations.json @@ -895,42 +895,42 @@ }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no&fee:conditional&charge&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "no" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=no&fee:conditional&charge&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key fee:conditional.", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key fee:conditional.", "value": "" }, { "key": "charge", - "description": "Layer 'Charging stations' shows fee=no&fee:conditional&charge&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key charge.", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key charge.", "value": "" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows fee=no&fee:conditional&charge&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "yes" }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=no&fee:conditional&charge&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "no" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=no&fee:conditional&charge&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key fee:conditional.", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key fee:conditional.", "value": "" }, { "key": "charge", - "description": "Layer 'Charging stations' shows fee=no&fee:conditional&charge&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key charge.", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key charge.", "value": "" }, { "key": "authentication:none", - "description": "Layer 'Charging stations' shows fee=no&fee:conditional&charge&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "no" }, { @@ -945,12 +945,12 @@ }, { "key": "fee", - "description": "Layer 'Charging stations' shows fee=yes&fee:conditional with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "yes" }, { "key": "fee:conditional", - "description": "Layer 'Charging stations' shows fee=yes&fee:conditional with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key fee:conditional.", + "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key fee:conditional.", "value": "" }, { @@ -967,16 +967,6 @@ "description": "Layer 'Charging stations' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "yes" }, - { - "key": "payment:app", - "description": "Layer 'Charging stations' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "yes" - }, - { - "key": "payment:membership_card", - "description": "Layer 'Charging stations' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "yes" - }, { "key": "authentication:membership_card", "description": "Layer 'Charging stations' shows authentication:membership_card=yes with a fixed text, namely 'Authentication by a membership card' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", @@ -1111,7 +1101,7 @@ }, { "key": "level", - "description": "Layer 'Charging stations' shows level with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key level.", + "description": "Layer 'Charging stations' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key level.", "value": "" }, { @@ -1125,127 +1115,127 @@ }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity&operational_status&amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.", "value": "" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity&operational_status&amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.", "value": "" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity&operational_status&amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.", "value": "" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity&operational_status&amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.", "value": "" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity&operational_status&amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "charging_station" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity&operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.", "value": "" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity&operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.", "value": "" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity&operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.", "value": "" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity&operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "broken" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity&operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "charging_station" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station&construction:amenity&disused:amenity&operational_status&amenity with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "charging_station" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station&construction:amenity&disused:amenity&operational_status&amenity with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.", "value": "" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station&construction:amenity&disused:amenity&operational_status&amenity with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.", "value": "" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station&construction:amenity&disused:amenity&operational_status&amenity with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.", "value": "" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity=charging_station&construction:amenity&disused:amenity&operational_status&amenity with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key amenity.", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key amenity.", "value": "" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity=charging_station&disused:amenity&operational_status&amenity with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.", "value": "" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity=charging_station&disused:amenity&operational_status&amenity with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "charging_station" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity=charging_station&disused:amenity&operational_status&amenity with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.", "value": "" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity=charging_station&disused:amenity&operational_status&amenity with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.", "value": "" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity=charging_station&disused:amenity&operational_status&amenity with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key amenity.", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key amenity.", "value": "" }, { "key": "planned:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity=charging_station&operational_status&amenity with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.", "value": "" }, { "key": "construction:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity=charging_station&operational_status&amenity with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.", "value": "" }, { "key": "disused:amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity=charging_station&operational_status&amenity with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "charging_station" }, { "key": "operational_status", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity=charging_station&operational_status&amenity with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key operational_status.", "value": "" }, { "key": "amenity", - "description": "Layer 'Charging stations' shows planned:amenity&construction:amenity&disused:amenity=charging_station&operational_status&amenity with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key amenity.", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key amenity.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_climbing.json b/Docs/TagInfo/mapcomplete_climbing.json index 66a6de3dbe..022b0b987f 100644 --- a/Docs/TagInfo/mapcomplete_climbing.json +++ b/Docs/TagInfo/mapcomplete_climbing.json @@ -36,138 +36,30 @@ "key": "website", "description": "Layer 'Climbing club' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, + { + "key": "contact:website", + "description": "Layer 'Climbing club' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Open Climbing Map')" + }, { "key": "email", "description": "Layer 'Climbing club' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, + { + "key": "contact:email", + "description": "Layer 'Climbing club' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Open Climbing Map')" + }, { "key": "phone", "description": "Layer 'Climbing club' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, + { + "key": "contact:phone", + "description": "Layer 'Climbing club' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Open Climbing Map')" + }, { "key": "opening_hours", "description": "Layer 'Climbing club' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, - { - "key": "url", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "access", - "description": "Layer 'Climbing club' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "access", - "description": "Layer 'Climbing club' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "permit" - }, - { - "key": "access", - "description": "Layer 'Climbing club' shows access=customers with a fixed text, namely 'Only custumers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "customers" - }, - { - "key": "access", - "description": "Layer 'Climbing club' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "members" - }, - { - "key": "access", - "description": "Layer 'Climbing club' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "access:description", - "description": "Layer 'Climbing club' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:length", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:min", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'climbing:grade:french:min' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:max", - "description": "Layer 'Climbing club' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing club' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing club' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing club' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "limited" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing club' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing club' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing club' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing club' shows climbing:toprope~^..*$ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing club' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing club' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing club' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing club' shows climbing:traditional=yes with a fixed text, namely 'Traditional climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing club' shows climbing:traditional=no with a fixed text, namely 'Traditional climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing club' shows climbing:traditional~^..*$ with a fixed text, namely 'There are {climbing:traditional} traditional climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing club' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing club' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing club' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "sport", "description": "The MapComplete theme Open Climbing Map has a layer Climbing gyms showing features with this tag", @@ -202,138 +94,30 @@ "key": "website", "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, + { + "key": "contact:website", + "description": "Layer 'Climbing gyms' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Open Climbing Map')" + }, { "key": "phone", "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, + { + "key": "contact:phone", + "description": "Layer 'Climbing gyms' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Open Climbing Map')" + }, { "key": "email", "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, + { + "key": "contact:email", + "description": "Layer 'Climbing gyms' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Open Climbing Map')" + }, { "key": "opening_hours", "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, - { - "key": "url", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "access", - "description": "Layer 'Climbing gyms' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "access", - "description": "Layer 'Climbing gyms' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "permit" - }, - { - "key": "access", - "description": "Layer 'Climbing gyms' shows access=customers with a fixed text, namely 'Only custumers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "customers" - }, - { - "key": "access", - "description": "Layer 'Climbing gyms' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "members" - }, - { - "key": "access", - "description": "Layer 'Climbing gyms' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "access:description", - "description": "Layer 'Climbing gyms' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:length", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:min", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:grade:french:min' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:max", - "description": "Layer 'Climbing gyms' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing gyms' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing gyms' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing gyms' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "limited" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing gyms' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing gyms' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing gyms' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing gyms' shows climbing:toprope~^..*$ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing gyms' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing gyms' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing gyms' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing gyms' shows climbing:traditional=yes with a fixed text, namely 'Traditional climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing gyms' shows climbing:traditional=no with a fixed text, namely 'Traditional climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing gyms' shows climbing:traditional~^..*$ with a fixed text, namely 'There are {climbing:traditional} traditional climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing gyms' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing gyms' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing gyms' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "climbing", "description": "The MapComplete theme Open Climbing Map has a layer Climbing routes showing features with this tag", @@ -361,12 +145,12 @@ }, { "key": "noname", - "description": "Layer 'Climbing routes' shows noname=yes&name with a fixed text, namely 'This climbing route doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "description": "Layer 'Climbing routes' shows noname=yes with a fixed text, namely 'This climbing route doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "yes" }, { "key": "name", - "description": "Layer 'Climbing routes' shows noname=yes&name with a fixed text, namely 'This climbing route doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') Picking this answer will delete the key name.", + "description": "Layer 'Climbing routes' shows noname=yes with a fixed text, namely 'This climbing route doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') Picking this answer will delete the key name.", "value": "" }, { @@ -395,126 +179,6 @@ "key": "description", "description": "Layer 'Climbing routes' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Open Climbing Map')" }, - { - "key": "url", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "access", - "description": "Layer 'Climbing routes' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "access", - "description": "Layer 'Climbing routes' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "permit" - }, - { - "key": "access", - "description": "Layer 'Climbing routes' shows access=customers with a fixed text, namely 'Only custumers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "customers" - }, - { - "key": "access", - "description": "Layer 'Climbing routes' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "members" - }, - { - "key": "access", - "description": "Layer 'Climbing routes' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "access:description", - "description": "Layer 'Climbing routes' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:length", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:min", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:grade:french:min' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:max", - "description": "Layer 'Climbing routes' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing routes' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing routes' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing routes' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "limited" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing routes' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing routes' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing routes' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing routes' shows climbing:toprope~^..*$ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing routes' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing routes' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing routes' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing routes' shows climbing:traditional=yes with a fixed text, namely 'Traditional climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing routes' shows climbing:traditional=no with a fixed text, namely 'Traditional climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing routes' shows climbing:traditional~^..*$ with a fixed text, namely 'There are {climbing:traditional} traditional climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing routes' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing routes' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing routes' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "sport", "description": "The MapComplete theme Open Climbing Map has a layer Climbing opportunities showing features with this tag", @@ -542,12 +206,12 @@ }, { "key": "noname", - "description": "Layer 'Climbing opportunities' shows noname=yes&name with a fixed text, namely 'This climbing opportunity doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", + "description": "Layer 'Climbing opportunities' shows noname=yes with a fixed text, namely 'This climbing opportunity doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "yes" }, { "key": "name", - "description": "Layer 'Climbing opportunities' shows noname=yes&name with a fixed text, namely 'This climbing opportunity doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') Picking this answer will delete the key name.", + "description": "Layer 'Climbing opportunities' shows noname=yes with a fixed text, namely 'This climbing opportunity doesn't have a name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map') Picking this answer will delete the key name.", "value": "" }, { @@ -574,126 +238,6 @@ "description": "Layer 'Climbing opportunities' shows rock=limestone with a fixed text, namely 'Limestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "limestone" }, - { - "key": "url", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "access", - "description": "Layer 'Climbing opportunities' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "access", - "description": "Layer 'Climbing opportunities' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "permit" - }, - { - "key": "access", - "description": "Layer 'Climbing opportunities' shows access=customers with a fixed text, namely 'Only custumers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "customers" - }, - { - "key": "access", - "description": "Layer 'Climbing opportunities' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "members" - }, - { - "key": "access", - "description": "Layer 'Climbing opportunities' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "access:description", - "description": "Layer 'Climbing opportunities' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:length", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:min", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'climbing:grade:french:min' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:max", - "description": "Layer 'Climbing opportunities' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "limited" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities' shows climbing:toprope~^..*$ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities' shows climbing:traditional=yes with a fixed text, namely 'Traditional climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities' shows climbing:traditional=no with a fixed text, namely 'Traditional climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities' shows climbing:traditional~^..*$ with a fixed text, namely 'There are {climbing:traditional} traditional climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "leisure", "description": "The MapComplete theme Open Climbing Map has a layer Climbing opportunities? showing features with this tag", @@ -739,126 +283,6 @@ "description": "Layer 'Climbing opportunities?' shows climbing=no with a fixed text, namely 'Climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "no" }, - { - "key": "url", - "description": "Layer 'Climbing opportunities?' shows and asks freeform values for key 'url' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "access", - "description": "Layer 'Climbing opportunities?' shows access=yes with a fixed text, namely 'Publicly accessible to anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "access", - "description": "Layer 'Climbing opportunities?' shows access=permit with a fixed text, namely 'You need a permit to access here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "permit" - }, - { - "key": "access", - "description": "Layer 'Climbing opportunities?' shows access=customers with a fixed text, namely 'Only custumers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "customers" - }, - { - "key": "access", - "description": "Layer 'Climbing opportunities?' shows access=members with a fixed text, namely 'Only club members' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "members" - }, - { - "key": "access", - "description": "Layer 'Climbing opportunities?' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "access:description", - "description": "Layer 'Climbing opportunities?' shows values with key 'access:description' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:length", - "description": "Layer 'Climbing opportunities?' shows and asks freeform values for key 'climbing:length' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:min", - "description": "Layer 'Climbing opportunities?' shows and asks freeform values for key 'climbing:grade:french:min' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:grade:french:max", - "description": "Layer 'Climbing opportunities?' shows and asks freeform values for key 'climbing:grade:french:max' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities?' shows climbing:boulder=yes with a fixed text, namely 'Bouldering is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities?' shows climbing:boulder=no with a fixed text, namely 'Bouldering is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities?' shows climbing:boulder=limited with a fixed text, namely 'Bouldering is possible, allthough there are only a few routes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "limited" - }, - { - "key": "climbing:boulder", - "description": "Layer 'Climbing opportunities?' shows climbing:boulder~^..*$ with a fixed text, namely 'There are {climbing:boulder} boulder routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities?' shows climbing:toprope=yes with a fixed text, namely 'Toprope climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities?' shows climbing:toprope=no with a fixed text, namely 'Toprope climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:toprope", - "description": "Layer 'Climbing opportunities?' shows climbing:toprope~^..*$ with a fixed text, namely 'There are {climbing:toprope} toprope routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities?' shows climbing:sport=yes with a fixed text, namely 'Sport climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities?' shows climbing:sport=no with a fixed text, namely 'Sport climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:sport", - "description": "Layer 'Climbing opportunities?' shows climbing:sport~^..*$ with a fixed text, namely 'There are {climbing:sport} sport climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities?' shows climbing:traditional=yes with a fixed text, namely 'Traditional climbing is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities?' shows climbing:traditional=no with a fixed text, namely 'Traditional climbing is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:traditional", - "description": "Layer 'Climbing opportunities?' shows climbing:traditional~^..*$ with a fixed text, namely 'There are {climbing:traditional} traditional climbing routes' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities?' shows climbing:speed=yes with a fixed text, namely 'There is a speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "yes" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities?' shows climbing:speed=no with a fixed text, namely 'There is no speed climbing wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", - "value": "no" - }, - { - "key": "climbing:speed", - "description": "Layer 'Climbing opportunities?' shows climbing:speed~^..*$ with a fixed text, namely 'There are {climbing:speed} speed climbing walls' (in the MapComplete.osm.be theme 'Open Climbing Map')" - }, { "key": "id", "description": "The MapComplete theme Open Climbing Map has a layer Your track showing features with this tag", diff --git a/Docs/TagInfo/mapcomplete_cycle_infra.json b/Docs/TagInfo/mapcomplete_cycle_infra.json index a101c3e332..6f060da3be 100644 --- a/Docs/TagInfo/mapcomplete_cycle_infra.json +++ b/Docs/TagInfo/mapcomplete_cycle_infra.json @@ -132,7 +132,7 @@ }, { "key": "cyclestreet", - "description": "Layer 'Cycleways and roads' shows cyclestreet 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 'Bicycle infrastructure') Picking this answer will delete the 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 'Bicycle infrastructure') Picking this answer will delete the key cyclestreet.", "value": "" }, { @@ -568,6 +568,16 @@ "description": "Layer 'Barriers' shows bicycle=no with a fixed text, namely 'A cyclist can not go past this.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", "value": "no" }, + { + "key": "barrier", + "description": "Layer 'Barriers' shows barrier=bollard with a fixed text, namely 'This is a single bollard in the road' (in the MapComplete.osm.be theme 'Bicycle infrastructure')", + "value": "bollard" + }, + { + "key": "barrier", + "description": "Layer 'Barriers' shows barrier=cycle_barrier with a fixed text, namely 'This is a cycle barrier slowing down cyclists' (in the MapComplete.osm.be theme 'Bicycle infrastructure')", + "value": "cycle_barrier" + }, { "key": "bollard", "description": "Layer 'Barriers' shows bollard=removable with a fixed text, namely 'Removable bollard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", @@ -594,23 +604,23 @@ "value": "rising" }, { - "key": "cycle_barrier:type", - "description": "Layer 'Barriers' shows cycle_barrier:type=single with a fixed text, namely 'Single, just two barriers with a space inbetween ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", + "key": "cycle_barrier", + "description": "Layer 'Barriers' shows cycle_barrier=single with a fixed text, namely 'Single, just two barriers with a space inbetween ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", "value": "single" }, { - "key": "cycle_barrier:type", - "description": "Layer 'Barriers' shows cycle_barrier:type=double with a fixed text, namely 'Double, two barriers behind each other ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", + "key": "cycle_barrier", + "description": "Layer 'Barriers' shows cycle_barrier=double with a fixed text, namely 'Double, two barriers behind each other ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", "value": "double" }, { - "key": "cycle_barrier:type", - "description": "Layer 'Barriers' shows cycle_barrier:type=triple with a fixed text, namely 'Triple, three barriers behind each other ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", + "key": "cycle_barrier", + "description": "Layer 'Barriers' shows cycle_barrier=triple with a fixed text, namely 'Triple, three barriers behind each other ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", "value": "triple" }, { - "key": "cycle_barrier:type", - "description": "Layer 'Barriers' shows cycle_barrier:type=squeeze with a fixed text, namely 'Squeeze gate, gap is smaller at top, than at the bottom ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", + "key": "cycle_barrier", + "description": "Layer 'Barriers' shows cycle_barrier=squeeze with a fixed text, namely 'Squeeze gate, gap is smaller at top, than at the bottom ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", "value": "squeeze" }, { @@ -654,6 +664,11 @@ "description": "Layer 'Crossings' shows crossing=zebra with a fixed text, namely 'Zebra crossing' (in the MapComplete.osm.be theme 'Bicycle infrastructure')", "value": "zebra" }, + { + "key": "crossing", + "description": "Layer 'Crossings' shows crossing=unmarked with a fixed text, namely 'Crossing without crossing markings' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", + "value": "unmarked" + }, { "key": "crossing_ref", "description": "Layer 'Crossings' shows crossing_ref=zebra with a fixed text, namely 'This is a zebra crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", @@ -661,7 +676,7 @@ }, { "key": "crossing_ref", - "description": "Layer 'Crossings' shows crossing_ref with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure') Picking this answer will delete the key crossing_ref.", + "description": "Layer 'Crossings' shows with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure') Picking this answer will delete the key crossing_ref.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_cyclestreets.json b/Docs/TagInfo/mapcomplete_cyclestreets.json index a85c107e46..f661dbf580 100644 --- a/Docs/TagInfo/mapcomplete_cyclestreets.json +++ b/Docs/TagInfo/mapcomplete_cyclestreets.json @@ -31,65 +31,6 @@ "key": "wikipedia", "description": "The layer 'Cyclestreets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, - { - "key": "cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "maxspeed", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "30" - }, - { - "key": "overtaking:motor_vehicle", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "no" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet' (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet=yes&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet' (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet&proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclstreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet&proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclstreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet&proposed:cyclestreet&overtaking:motor_vehicle with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Cyclestreets' shows cyclestreet&proposed:cyclestreet&overtaking:motor_vehicle with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "overtaking:motor_vehicle", - "description": "Layer 'Cyclestreets' shows cyclestreet&proposed:cyclestreet&overtaking:motor_vehicle with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.", - "value": "" - }, - { - "key": "cyclestreet:start_date", - "description": "Layer 'Cyclestreets' shows and asks freeform values for key 'cyclestreet:start_date' (in the MapComplete.osm.be theme 'Cyclestreets')" - }, { "key": "proposed:cyclestreet", "description": "The MapComplete theme Cyclestreets has a layer Future cyclestreet showing features with this tag", @@ -111,65 +52,6 @@ "key": "wikipedia", "description": "The layer 'Future cyclestreet allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, - { - "key": "cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "maxspeed", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "30" - }, - { - "key": "overtaking:motor_vehicle", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "no" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet' (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet' (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet&proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclstreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet&proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclstreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet&proposed:cyclestreet&overtaking:motor_vehicle with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'Future cyclestreet' shows cyclestreet&proposed:cyclestreet&overtaking:motor_vehicle with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "overtaking:motor_vehicle", - "description": "Layer 'Future cyclestreet' shows cyclestreet&proposed:cyclestreet&overtaking:motor_vehicle with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.", - "value": "" - }, - { - "key": "cyclestreet:start_date", - "description": "Layer 'Future cyclestreet' shows and asks freeform values for key 'cyclestreet:start_date' (in the MapComplete.osm.be theme 'Cyclestreets')" - }, { "key": "highway", "description": "The MapComplete theme Cyclestreets has a layer All streets showing features with this tag", @@ -201,65 +83,6 @@ "key": "wikipedia", "description": "The layer 'All streets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, - { - "key": "cyclestreet", - "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "maxspeed", - "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "30" - }, - { - "key": "overtaking:motor_vehicle", - "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "no" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet (and has a speed limit of 30 km/h)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "cyclestreet", - "description": "Layer 'All streets' shows cyclestreet=yes&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet' (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'All streets' shows cyclestreet=yes&proposed:cyclestreet with a fixed text, namely 'This street is a cyclestreet' (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "cyclestreet", - "description": "Layer 'All streets' shows cyclestreet&proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclstreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'All streets' shows cyclestreet&proposed:cyclestreet=yes with a fixed text, namely 'This street will become a cyclstreet soon' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets')", - "value": "yes" - }, - { - "key": "cyclestreet", - "description": "Layer 'All streets' shows cyclestreet&proposed:cyclestreet&overtaking:motor_vehicle with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key cyclestreet.", - "value": "" - }, - { - "key": "proposed:cyclestreet", - "description": "Layer 'All streets' shows cyclestreet&proposed:cyclestreet&overtaking:motor_vehicle with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key proposed:cyclestreet.", - "value": "" - }, - { - "key": "overtaking:motor_vehicle", - "description": "Layer 'All streets' shows cyclestreet&proposed:cyclestreet&overtaking:motor_vehicle with a fixed text, namely 'This street is not a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclestreets') Picking this answer will delete the key overtaking:motor_vehicle.", - "value": "" - }, - { - "key": "cyclestreet:start_date", - "description": "Layer 'All streets' shows and asks freeform values for key 'cyclestreet:start_date' (in the MapComplete.osm.be theme 'Cyclestreets')" - }, { "key": "id", "description": "The MapComplete theme Cyclestreets has a layer Your track showing features with this tag", diff --git a/Docs/TagInfo/mapcomplete_cyclofix.json b/Docs/TagInfo/mapcomplete_cyclofix.json index 69e50e9ec4..22513e9520 100644 --- a/Docs/TagInfo/mapcomplete_cyclofix.json +++ b/Docs/TagInfo/mapcomplete_cyclofix.json @@ -343,14 +343,26 @@ "key": "website", "description": "Layer 'Bicycle library' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, + { + "key": "contact:website", + "description": "Layer 'Bicycle library' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, { "key": "phone", "description": "Layer 'Bicycle library' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, + { + "key": "contact:phone", + "description": "Layer 'Bicycle library' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, { "key": "email", "description": "Layer 'Bicycle library' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, + { + "key": "contact:email", + "description": "Layer 'Bicycle library' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, { "key": "opening_hours", "description": "Layer 'Bicycle library' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" @@ -361,12 +373,12 @@ }, { "key": "fee", - "description": "Layer 'Bicycle library' shows fee=no&charge with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle library' shows fee=no with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "no" }, { "key": "charge", - "description": "Layer 'Bicycle library' shows fee=no&charge with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key charge.", + "description": "Layer 'Bicycle library' shows fee=no with a fixed text, namely 'Lending a bicycle is free' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key charge.", "value": "" }, { @@ -477,7 +489,7 @@ }, { "key": "opening_hours", - "description": "Layer 'Bike stations (repair, pump or both)' shows opening_hours with a fixed text, namely 'Always open' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key opening_hours.", + "description": "Layer 'Bike stations (repair, pump or both)' shows with a fixed text, namely 'Always open' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key opening_hours.", "value": "" }, { @@ -507,7 +519,7 @@ }, { "key": "service:bicycle:pump:operational_status", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:pump:operational_status 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 'Cyclofix - an open map for cyclists') Picking this answer will delete the key service:bicycle:pump:operational_status.", + "description": "Layer 'Bike stations (repair, pump or both)' shows 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 'Cyclofix - an open map for cyclists') Picking this answer will delete the key service:bicycle:pump:operational_status.", "value": "" }, { @@ -570,7 +582,7 @@ }, { "key": "level", - "description": "Layer 'Bike stations (repair, pump or both)' shows level with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key level.", + "description": "Layer 'Bike stations (repair, pump or both)' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key level.", "value": "" }, { @@ -609,7 +621,7 @@ }, { "key": "operational_status", - "description": "Layer 'Bicycle tube vending machine' shows operational_status with a fixed text, namely 'This vending machine works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.", + "description": "Layer 'Bicycle tube vending machine' shows with a fixed text, namely 'This vending machine works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.", "value": "" }, { @@ -721,7 +733,7 @@ }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.", + "description": "Layer 'Drinking water' shows with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key operational_status.", "value": "" }, { @@ -813,14 +825,26 @@ "key": "website", "description": "Layer 'Bike related object' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, + { + "key": "contact:website", + "description": "Layer 'Bike related object' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, { "key": "email", "description": "Layer 'Bike related object' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, + { + "key": "contact:email", + "description": "Layer 'Bike related object' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, { "key": "phone", "description": "Layer 'Bike related object' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, + { + "key": "contact:phone", + "description": "Layer 'Bike related object' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, { "key": "opening_hours", "description": "Layer 'Bike related object' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" @@ -976,7 +1000,7 @@ }, { "key": "location", - "description": "Layer 'Bike parking' shows location with a fixed text, namely 'Surface level parking' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key location.", + "description": "Layer 'Bike parking' shows with a fixed text, namely 'Surface level parking' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key location.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_drinking_water.json b/Docs/TagInfo/mapcomplete_drinking_water.json index 9adab82b3d..ee53cb101c 100644 --- a/Docs/TagInfo/mapcomplete_drinking_water.json +++ b/Docs/TagInfo/mapcomplete_drinking_water.json @@ -37,7 +37,7 @@ }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Drinking Water') Picking this answer will delete the key operational_status.", + "description": "Layer 'Drinking water' shows with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Drinking Water') Picking this answer will delete the key operational_status.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_entrances.json b/Docs/TagInfo/mapcomplete_entrances.json index 1fa4ed60c9..350ee1f840 100644 --- a/Docs/TagInfo/mapcomplete_entrances.json +++ b/Docs/TagInfo/mapcomplete_entrances.json @@ -62,82 +62,82 @@ }, { "key": "entrance", - "description": "Layer 'Entrance' shows entrance&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 'Entrances') Picking this answer will delete the 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 'Entrances') Picking this answer will delete the key entrance.", "value": "" }, { "key": "indoor", - "description": "Layer 'Entrance' shows entrance&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 'Entrances')", + "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 'Entrances')", "value": "door" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor&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 'Entrances') Picking this answer will delete the 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 'Entrances') Picking this answer will delete the key indoor.", "value": "" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor&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 'Entrances')", + "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 'Entrances')", "value": "main" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor&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 'Entrances') Picking this answer will delete the 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 'Entrances') Picking this answer will delete the key indoor.", "value": "" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor&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 'Entrances')", + "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 'Entrances')", "value": "secondary" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor&entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", "value": "" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor&entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", "value": "service" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor&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 'Entrances') Picking this answer will delete the 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 'Entrances') Picking this answer will delete the key indoor.", "value": "" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor&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 'Entrances')", + "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 'Entrances')", "value": "exit" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor&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 'Entrances') Picking this answer will delete the 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 'Entrances') Picking this answer will delete the key indoor.", "value": "" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor&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 'Entrances')", + "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 'Entrances')", "value": "entrance" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor&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 'Entrances') Picking this answer will delete the 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 'Entrances') Picking this answer will delete the key indoor.", "value": "" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor&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 'Entrances')", + "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 'Entrances')", "value": "emergency" }, { "key": "indoor", - "description": "Layer 'Entrance' shows indoor&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 'Entrances') Picking this answer will delete the 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 'Entrances') Picking this answer will delete the key indoor.", "value": "" }, { "key": "entrance", - "description": "Layer 'Entrance' shows indoor&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 'Entrances')", + "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 'Entrances')", "value": "home" }, { diff --git a/Docs/TagInfo/mapcomplete_food.json b/Docs/TagInfo/mapcomplete_food.json index 429f7579a7..fd1efec039 100644 --- a/Docs/TagInfo/mapcomplete_food.json +++ b/Docs/TagInfo/mapcomplete_food.json @@ -58,14 +58,26 @@ "key": "website", "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Restaurants and fast food')" }, + { + "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 'Restaurants and fast food')" + }, { "key": "email", "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Restaurants and fast food')" }, + { + "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 'Restaurants and fast food')" + }, { "key": "phone", "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Restaurants and fast food')" }, + { + "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 'Restaurants and fast food')" + }, { "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 'Restaurants and fast food')", diff --git a/Docs/TagInfo/mapcomplete_fritures.json b/Docs/TagInfo/mapcomplete_fritures.json index 3a9d48c659..4544e6d296 100644 --- a/Docs/TagInfo/mapcomplete_fritures.json +++ b/Docs/TagInfo/mapcomplete_fritures.json @@ -63,14 +63,26 @@ "key": "website", "description": "Layer 'Fries shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Friturenkaart')" }, + { + "key": "contact:website", + "description": "Layer 'Fries shop' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Friturenkaart')" + }, { "key": "email", "description": "Layer 'Fries shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Friturenkaart')" }, + { + "key": "contact:email", + "description": "Layer 'Fries shop' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Friturenkaart')" + }, { "key": "phone", "description": "Layer 'Fries shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Friturenkaart')" }, + { + "key": "contact:phone", + "description": "Layer 'Fries shop' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Friturenkaart')" + }, { "key": "payment:cash", "description": "Layer 'Fries 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 'Friturenkaart')", @@ -398,14 +410,26 @@ "key": "website", "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Friturenkaart')" }, + { + "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 'Friturenkaart')" + }, { "key": "email", "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Friturenkaart')" }, + { + "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 'Friturenkaart')" + }, { "key": "phone", "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Friturenkaart')" }, + { + "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 'Friturenkaart')" + }, { "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 'Friturenkaart')", diff --git a/Docs/TagInfo/mapcomplete_hackerspaces.json b/Docs/TagInfo/mapcomplete_hackerspaces.json index 800086b201..729ccf73da 100644 --- a/Docs/TagInfo/mapcomplete_hackerspaces.json +++ b/Docs/TagInfo/mapcomplete_hackerspaces.json @@ -22,7 +22,7 @@ }, { "key": "hackerspace", - "description": "Layer 'Hackerspace' shows hackerspace with a fixed text, namely 'This is a traditional (software oriented) hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hackerspaces') Picking this answer will delete the key hackerspace.", + "description": "Layer 'Hackerspace' shows with a fixed text, namely 'This is a traditional (software oriented) hackerspace' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hackerspaces') Picking this answer will delete the key hackerspace.", "value": "" }, { @@ -33,14 +33,26 @@ "key": "website", "description": "Layer 'Hackerspace' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Hackerspaces')" }, + { + "key": "contact:website", + "description": "Layer 'Hackerspace' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Hackerspaces')" + }, { "key": "email", "description": "Layer 'Hackerspace' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Hackerspaces')" }, + { + "key": "contact:email", + "description": "Layer 'Hackerspace' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Hackerspaces')" + }, { "key": "phone", "description": "Layer 'Hackerspace' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Hackerspaces')" }, + { + "key": "contact:phone", + "description": "Layer 'Hackerspace' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Hackerspaces')" + }, { "key": "opening_hours", "description": "Layer 'Hackerspace' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Hackerspaces')" diff --git a/Docs/TagInfo/mapcomplete_hailhydrant.json b/Docs/TagInfo/mapcomplete_hailhydrant.json index 48f1fc0d60..f7bc882ad0 100644 --- a/Docs/TagInfo/mapcomplete_hailhydrant.json +++ b/Docs/TagInfo/mapcomplete_hailhydrant.json @@ -21,7 +21,7 @@ }, { "key": "colour", - "description": "Layer 'Map of hydrants' shows colour with a fixed text, namely 'The hydrant color is unknown.' (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.') Picking this answer will delete the key colour.", + "description": "Layer 'Map of hydrants' shows with a fixed text, namely 'The hydrant color is unknown.' (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.') Picking this answer will delete the key colour.", "value": "" }, { @@ -40,7 +40,7 @@ }, { "key": "fire_hydrant:type", - "description": "Layer 'Map of hydrants' shows fire_hydrant:type with a fixed text, namely 'The hydrant type is unknown.' (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.') Picking this answer will delete the key fire_hydrant:type.", + "description": "Layer 'Map of hydrants' shows with a fixed text, namely 'The hydrant type is unknown.' (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.') Picking this answer will delete the key fire_hydrant:type.", "value": "" }, { @@ -70,22 +70,22 @@ }, { "key": "disused:emergency", - "description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant&emergency with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.')", + "description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.')", "value": "fire_hydrant" }, { "key": "emergency", - "description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant&emergency with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.') Picking this answer will delete the key emergency.", + "description": "Layer 'Map of hydrants' shows disused:emergency=fire_hydrant with a fixed text, namely 'The hydrant is unavailable' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.') Picking this answer will delete the key emergency.", "value": "" }, { "key": "removed:emergency", - "description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant&emergency with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.')", + "description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.')", "value": "fire_hydrant" }, { "key": "emergency", - "description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant&emergency with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.') Picking this answer will delete the key emergency.", + "description": "Layer 'Map of hydrants' shows removed:emergency=fire_hydrant with a fixed text, namely 'The hydrant has been removed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.') Picking this answer will delete the key emergency.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_maps.json b/Docs/TagInfo/mapcomplete_maps.json index 3890e93361..a930aa1b78 100644 --- a/Docs/TagInfo/mapcomplete_maps.json +++ b/Docs/TagInfo/mapcomplete_maps.json @@ -42,12 +42,12 @@ }, { "key": "map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap&not:map_source with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'A map of maps')", + "description": "Layer 'Maps' shows map_source=OpenStreetMap with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'A map of maps')", "value": "OpenStreetMap" }, { "key": "not:map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap&not:map_source with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'A map of maps') Picking this answer will delete the key not:map_source.", + "description": "Layer 'Maps' shows map_source=OpenStreetMap with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'A map of maps') Picking this answer will delete the key not:map_source.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_nature.json b/Docs/TagInfo/mapcomplete_nature.json index 3ab3c58606..db56810a20 100644 --- a/Docs/TagInfo/mapcomplete_nature.json +++ b/Docs/TagInfo/mapcomplete_nature.json @@ -37,7 +37,7 @@ }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key operational_status.", + "description": "Layer 'Drinking water' shows with a fixed text, namely 'This drinking water works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key operational_status.", "value": "" }, { @@ -83,17 +83,17 @@ }, { "key": "shelter", - "description": "Layer 'Vogelkijkhutten' shows shelter=no&building&amenity with a fixed text, namely 'Vogelkijkwand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows shelter=no with a fixed text, namely 'Vogelkijkwand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", "value": "no" }, { "key": "building", - "description": "Layer 'Vogelkijkhutten' shows shelter=no&building&amenity with a fixed text, namely 'Vogelkijkwand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key building.", + "description": "Layer 'Vogelkijkhutten' shows shelter=no with a fixed text, namely 'Vogelkijkwand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key building.", "value": "" }, { "key": "amenity", - "description": "Layer 'Vogelkijkhutten' shows shelter=no&building&amenity with a fixed text, namely 'Vogelkijkwand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key amenity.", + "description": "Layer 'Vogelkijkhutten' shows shelter=no with a fixed text, namely 'Vogelkijkwand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key amenity.", "value": "" }, { @@ -202,12 +202,12 @@ }, { "key": "map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap&not:map_source with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Maps' shows map_source=OpenStreetMap with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", "value": "OpenStreetMap" }, { "key": "not:map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap&not:map_source with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key not:map_source.", + "description": "Layer 'Maps' shows map_source=OpenStreetMap with a fixed text, namely 'This map is based on OpenStreetMap' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key not:map_source.", "value": "" }, { @@ -288,52 +288,52 @@ }, { "key": "access", - "description": "Layer 'Natuurgebied' shows access=yes&fee with a fixed text, namely 'Vrij toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows access=yes with a fixed text, namely 'Vrij toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", "value": "yes" }, { "key": "fee", - "description": "Layer 'Natuurgebied' shows access=yes&fee with a fixed text, namely 'Vrij toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key fee.", + "description": "Layer 'Natuurgebied' shows access=yes with a fixed text, namely 'Vrij toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key fee.", "value": "" }, { "key": "access", - "description": "Layer 'Natuurgebied' shows access=no&fee with a fixed text, namely 'Niet toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows access=no with a fixed text, namely 'Niet toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", "value": "no" }, { "key": "fee", - "description": "Layer 'Natuurgebied' shows access=no&fee with a fixed text, namely 'Niet toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key fee.", + "description": "Layer 'Natuurgebied' shows access=no with a fixed text, namely 'Niet toegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key fee.", "value": "" }, { "key": "access", - "description": "Layer 'Natuurgebied' shows access=private&fee with a fixed text, namely 'Niet toegankelijk, want privégebied' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows access=private with a fixed text, namely 'Niet toegankelijk, want privégebied' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", "value": "private" }, { "key": "fee", - "description": "Layer 'Natuurgebied' shows access=private&fee with a fixed text, namely 'Niet toegankelijk, want privégebied' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key fee.", + "description": "Layer 'Natuurgebied' shows access=private with a fixed text, namely 'Niet toegankelijk, want privégebied' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key fee.", "value": "" }, { "key": "access", - "description": "Layer 'Natuurgebied' shows access=permissive&fee with a fixed text, namely 'Toegankelijk, ondanks dat het privegebied is' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows access=permissive with a fixed text, namely 'Toegankelijk, ondanks dat het privegebied is' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", "value": "permissive" }, { "key": "fee", - "description": "Layer 'Natuurgebied' shows access=permissive&fee with a fixed text, namely 'Toegankelijk, ondanks dat het privegebied is' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key fee.", + "description": "Layer 'Natuurgebied' shows access=permissive with a fixed text, namely 'Toegankelijk, ondanks dat het privegebied is' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key fee.", "value": "" }, { "key": "access", - "description": "Layer 'Natuurgebied' shows access=guided&fee with a fixed text, namely 'Enkel toegankelijk met een gids of tijdens een activiteit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows access=guided with a fixed text, namely 'Enkel toegankelijk met een gids of tijdens een activiteit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", "value": "guided" }, { "key": "fee", - "description": "Layer 'Natuurgebied' shows access=guided&fee with a fixed text, namely 'Enkel toegankelijk met een gids of tijdens een activiteit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key fee.", + "description": "Layer 'Natuurgebied' shows access=guided with a fixed text, namely 'Enkel toegankelijk met een gids of tijdens een activiteit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key fee.", "value": "" }, { @@ -374,12 +374,12 @@ }, { "key": "noname", - "description": "Layer 'Natuurgebied' shows noname=yes&name with a fixed text, namely 'Dit gebied heeft geen naam' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows noname=yes with a fixed text, namely 'Dit gebied heeft geen naam' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", "value": "yes" }, { "key": "name", - "description": "Layer 'Natuurgebied' shows noname=yes&name with a fixed text, namely 'Dit gebied heeft geen naam' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key name.", + "description": "Layer 'Natuurgebied' shows noname=yes with a fixed text, namely 'Dit gebied heeft geen naam' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key name.", "value": "" }, { @@ -427,7 +427,7 @@ }, { "key": "wikidata", - "description": "Layer 'Natuurgebied' shows wikidata with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key wikidata.", + "description": "Layer 'Natuurgebied' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'De Natuur in') Picking this answer will delete the key wikidata.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_notes.json b/Docs/TagInfo/mapcomplete_notes.json new file mode 100644 index 0000000000..580b68620a --- /dev/null +++ b/Docs/TagInfo/mapcomplete_notes.json @@ -0,0 +1,23 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Notes on OpenStreetMap", + "description": "A note is a pin on the map with some text to indicate something wrong", + "project_url": "https://mapcomplete.osm.be/notes", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/svg/resolved.svg", + "contact_name": "Pieter Vander Vennet, MapComplete", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "id", + "description": "The MapComplete theme Notes on OpenStreetMap has a layer OpenStreetMap notes showing features with this tag" + }, + { + "key": "id", + "description": "The MapComplete theme Notes on OpenStreetMap has a layer Your track showing features with this tag", + "value": "location_track" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_observation_towers.json b/Docs/TagInfo/mapcomplete_observation_towers.json index b24590b65d..54cd526c00 100644 --- a/Docs/TagInfo/mapcomplete_observation_towers.json +++ b/Docs/TagInfo/mapcomplete_observation_towers.json @@ -52,18 +52,22 @@ "key": "website", "description": "Layer 'Observation towers' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Observation towers')" }, + { + "key": "contact:website", + "description": "Layer 'Observation towers' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Observation towers')" + }, { "key": "charge", "description": "Layer 'Observation towers' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Observation towers')" }, { "key": "fee", - "description": "Layer 'Observation towers' shows fee=no&charge with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers')", + "description": "Layer 'Observation towers' shows fee=no with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers')", "value": "no" }, { "key": "charge", - "description": "Layer 'Observation towers' shows fee=no&charge with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers') Picking this answer will delete the key charge.", + "description": "Layer 'Observation towers' shows fee=no with a fixed text, namely 'Free to visit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers') Picking this answer will delete the key charge.", "value": "" }, { @@ -102,7 +106,7 @@ }, { "key": "wikidata", - "description": "Layer 'Observation towers' shows wikidata with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Observation towers') Picking this answer will delete the key wikidata.", + "description": "Layer 'Observation towers' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Observation towers') Picking this answer will delete the key wikidata.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_playgrounds.json b/Docs/TagInfo/mapcomplete_playgrounds.json index 6e333859fb..08803526aa 100644 --- a/Docs/TagInfo/mapcomplete_playgrounds.json +++ b/Docs/TagInfo/mapcomplete_playgrounds.json @@ -99,7 +99,7 @@ }, { "key": "access", - "description": "Layer 'Playgrounds' shows access with a fixed text, namely 'Accessible to the general public' (in the MapComplete.osm.be theme 'Playgrounds') Picking this answer will delete the key access.", + "description": "Layer 'Playgrounds' shows with a fixed text, namely 'Accessible to the general public' (in the MapComplete.osm.be theme 'Playgrounds') Picking this answer will delete the key access.", "value": "" }, { @@ -161,7 +161,7 @@ }, { "key": "opening_hours", - "description": "Layer 'Playgrounds' shows opening_hours with a fixed text, namely 'Always accessible' (in the MapComplete.osm.be theme 'Playgrounds') Picking this answer will delete the key opening_hours.", + "description": "Layer 'Playgrounds' shows with a fixed text, namely 'Always accessible' (in the MapComplete.osm.be theme 'Playgrounds') Picking this answer will delete the key opening_hours.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_sport_pitches.json b/Docs/TagInfo/mapcomplete_sport_pitches.json index 7654c2cfef..1a5ceff5b8 100644 --- a/Docs/TagInfo/mapcomplete_sport_pitches.json +++ b/Docs/TagInfo/mapcomplete_sport_pitches.json @@ -148,7 +148,7 @@ }, { "key": "opening_hours", - "description": "Layer 'Sport pitches' shows opening_hours with a fixed text, namely '24/7 toegankelijk' (in the MapComplete.osm.be theme 'Sport pitches') Picking this answer will delete the key opening_hours.", + "description": "Layer 'Sport pitches' shows with a fixed text, namely '24/7 toegankelijk' (in the MapComplete.osm.be theme 'Sport pitches') Picking this answer will delete the key opening_hours.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_surveillance.json b/Docs/TagInfo/mapcomplete_surveillance.json index d6bc9d84c0..4223f2a7b9 100644 --- a/Docs/TagInfo/mapcomplete_surveillance.json +++ b/Docs/TagInfo/mapcomplete_surveillance.json @@ -75,12 +75,12 @@ }, { "key": "camera:direction", - "description": "Layer 'Surveillance camera's' shows camera:direction&direction~^..*$ with a fixed text, namely 'Films to a compass heading of {direction}' (in the MapComplete.osm.be theme 'Surveillance under Surveillance') Picking this answer will delete the key camera:direction.", + "description": "Layer 'Surveillance camera's' shows direction~^..*$ with a fixed text, namely 'Films to a compass heading of {direction}' (in the MapComplete.osm.be theme 'Surveillance under Surveillance') Picking this answer will delete the key camera:direction.", "value": "" }, { "key": "direction", - "description": "Layer 'Surveillance camera's' shows camera:direction&direction~^..*$ with a fixed text, namely 'Films to a compass heading of {direction}' (in the MapComplete.osm.be theme 'Surveillance under Surveillance')" + "description": "Layer 'Surveillance camera's' shows direction~^..*$ with a fixed text, namely 'Films to a compass heading of {direction}' (in the MapComplete.osm.be theme 'Surveillance under Surveillance')" }, { "key": "operator", @@ -113,7 +113,7 @@ }, { "key": "indoor", - "description": "Layer 'Surveillance camera's' shows indoor with a fixed text, namely 'This camera is probably located outdoors' (in the MapComplete.osm.be theme 'Surveillance under Surveillance') Picking this answer will delete the key indoor.", + "description": "Layer 'Surveillance camera's' shows with a fixed text, namely 'This camera is probably located outdoors' (in the MapComplete.osm.be theme 'Surveillance under Surveillance') Picking this answer will delete the key indoor.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_toilets.json b/Docs/TagInfo/mapcomplete_toilets.json index bb3b061a39..f1daf8345a 100644 --- a/Docs/TagInfo/mapcomplete_toilets.json +++ b/Docs/TagInfo/mapcomplete_toilets.json @@ -193,7 +193,7 @@ }, { "key": "level", - "description": "Layer 'Toilets' shows level with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Open Toilet Map') Picking this answer will delete the key level.", + "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Open Toilet Map') Picking this answer will delete the key level.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_trees.json b/Docs/TagInfo/mapcomplete_trees.json index abf1e435ef..0e6f4fe95d 100644 --- a/Docs/TagInfo/mapcomplete_trees.json +++ b/Docs/TagInfo/mapcomplete_trees.json @@ -106,12 +106,12 @@ }, { "key": "name", - "description": "Layer 'Tree' shows name&noname=yes with a fixed text, namely 'The tree does not have a name.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees') Picking this answer will delete the key name.", + "description": "Layer 'Tree' shows noname=yes with a fixed text, namely 'The tree does not have a name.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees') Picking this answer will delete the key name.", "value": "" }, { "key": "noname", - "description": "Layer 'Tree' shows name&noname=yes with a fixed text, namely 'The tree does not have a name.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", + "description": "Layer 'Tree' shows noname=yes with a fixed text, namely 'The tree does not have a name.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", "value": "yes" }, { @@ -136,22 +136,22 @@ }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage=yes&heritage:operator with a fixed text, namely 'Registered as heritage by a different organisation' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", + "description": "Layer 'Tree' shows heritage=yes with a fixed text, namely 'Registered as heritage by a different organisation' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", "value": "yes" }, { "key": "heritage:operator", - "description": "Layer 'Tree' shows heritage=yes&heritage:operator with a fixed text, namely 'Registered as heritage by a different organisation' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees') Picking this answer will delete the key heritage:operator.", + "description": "Layer 'Tree' shows heritage=yes with a fixed text, namely 'Registered as heritage by a different organisation' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees') Picking this answer will delete the key heritage:operator.", "value": "" }, { "key": "heritage", - "description": "Layer 'Tree' shows heritage=no&heritage:operator with a fixed text, namely 'Not registered as heritage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", + "description": "Layer 'Tree' shows heritage=no with a fixed text, namely 'Not registered as heritage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees')", "value": "no" }, { "key": "heritage:operator", - "description": "Layer 'Tree' shows heritage=no&heritage:operator with a fixed text, namely 'Not registered as heritage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees') Picking this answer will delete the key heritage:operator.", + "description": "Layer 'Tree' shows heritage=no with a fixed text, namely 'Not registered as heritage' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Trees') Picking this answer will delete the key heritage:operator.", "value": "" }, { diff --git a/Docs/TagInfo/mapcomplete_waste_basket.json b/Docs/TagInfo/mapcomplete_waste_basket.json index 6aa6be0ad4..ff89c53f35 100644 --- a/Docs/TagInfo/mapcomplete_waste_basket.json +++ b/Docs/TagInfo/mapcomplete_waste_basket.json @@ -17,7 +17,7 @@ }, { "key": "waste", - "description": "Layer 'Waste Basket' shows waste with a fixed text, namely 'A waste basket for general waste' (in the MapComplete.osm.be theme 'Waste Basket') Picking this answer will delete the key waste.", + "description": "Layer 'Waste Basket' shows with a fixed text, namely 'A waste basket for general waste' (in the MapComplete.osm.be theme 'Waste Basket') Picking this answer will delete the key waste.", "value": "" }, { @@ -47,27 +47,27 @@ }, { "key": "vending", - "description": "Layer 'Waste Basket' shows vending=dog_excrement_bag&not:vending with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Waste Basket')", + "description": "Layer 'Waste Basket' shows vending=dog_excrement_bag with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Waste Basket')", "value": "dog_excrement_bag" }, { "key": "not:vending", - "description": "Layer 'Waste Basket' shows vending=dog_excrement_bag&not:vending with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Waste Basket') Picking this answer will delete the key not:vending.", + "description": "Layer 'Waste Basket' shows vending=dog_excrement_bag with a fixed text, namely 'This waste basket has a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Waste Basket') Picking this answer will delete the key not:vending.", "value": "" }, { "key": "not:vending", - "description": "Layer 'Waste Basket' shows not:vending=dog_excrement_bag&vending with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Waste Basket')", + "description": "Layer 'Waste Basket' shows not:vending=dog_excrement_bag with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Waste Basket')", "value": "dog_excrement_bag" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows not:vending=dog_excrement_bag&vending with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Waste Basket') Picking this answer will delete the key vending.", + "description": "Layer 'Waste Basket' shows not:vending=dog_excrement_bag with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Waste Basket') Picking this answer will delete the key vending.", "value": "" }, { "key": "vending", - "description": "Layer 'Waste Basket' shows vending with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Waste Basket') Picking this answer will delete the key vending.", + "description": "Layer 'Waste Basket' shows with a fixed text, namely 'This waste basket does not have a dispenser for (dog) excrement bags' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Waste Basket') Picking this answer will delete the key vending.", "value": "" }, { diff --git a/Docs/Tools/GenerateSeries.ts b/Docs/Tools/GenerateSeries.ts index e92a5c8c59..633a632b2e 100644 --- a/Docs/Tools/GenerateSeries.ts +++ b/Docs/Tools/GenerateSeries.ts @@ -84,7 +84,11 @@ class StatsDownloader { } url = result.next } - console.log(`Writing ${allFeatures.length} features to `, path, " ") + console.log(`Writing ${allFeatures.length} features to `, path, Utils.Times(_ => " ", 80)) + allFeatures = Utils.NoNull(allFeatures) + allFeatures.forEach(f => { + f.properties.id = f.id + }) writeFileSync(path, JSON.stringify({ features: allFeatures }, undefined, 2)) @@ -662,31 +666,43 @@ function createMiscGraphs(allFeatures: ChangeSetData[], emptyCS: ChangeSetData[] }).render() const geojson = { type: "FeatureCollection", - features: allFeatures.map(f => { - try { - return GeoOperations.centerpoint(f.geometry); - } catch (e) { - console.error("Could not create center point: ", e, f) - } - }) + features: Utils.NoNull(allFeatures + .map(f => { + try { + const point = GeoOperations.centerpoint(f.geometry); + point.properties = {...f.properties, ...f.properties.metadata} + delete point.properties.metadata + for (const key in f.properties.metadata) { + point.properties[key] = f.properties.metadata[key] + } + + return point + } catch (e) { + console.error("Could not create center point: ", e, f) + return undefined + } + })) } writeFileSync("centerpoints.geojson", JSON.stringify(geojson, undefined, 2)) } +async function main(): Promise{ + await new StatsDownloader("stats").DownloadStats() + const allPaths = readdirSync("stats") + .filter(p => p.startsWith("stats.") && p.endsWith(".json")); + let allFeatures: ChangeSetData[] = [].concat(...allPaths + .map(path => JSON.parse(readFileSync("stats/" + path, "utf-8")).features + .map(cs => ChangesetDataTools.cleanChangesetData(cs)))); -new StatsDownloader("stats").DownloadStats() -const allPaths = readdirSync("stats") - .filter(p => p.startsWith("stats.") && p.endsWith(".json")); -let allFeatures: ChangeSetData[] = [].concat(...allPaths - .map(path => JSON.parse(readFileSync("stats/" + path, "utf-8")).features - .map(cs => ChangesetDataTools.cleanChangesetData(cs)))); + const emptyCS = allFeatures.filter(f => f.properties.metadata.theme === "EMPTY CS") + allFeatures = allFeatures.filter(f => f.properties.metadata.theme !== "EMPTY CS") -const emptyCS = allFeatures.filter(f => f.properties.metadata.theme === "EMPTY CS") -allFeatures = allFeatures.filter(f => f.properties.metadata.theme !== "EMPTY CS") + createMiscGraphs(allFeatures, emptyCS) + createGraphs(allFeatures, "") + // createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2020")), " in 2020") + // createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2021")), " in 2021") + createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2022")), " in 2022") +} -createMiscGraphs(allFeatures, emptyCS) -createGraphs(allFeatures, "") -// createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2020")), " in 2020") -// createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2021")), " in 2021") -createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2022")), " in 2022") +main().then(_ => console.log("All done!")) diff --git a/Docs/Tools/cache_centerpoints.sh b/Docs/Tools/cache_centerpoints.sh new file mode 100755 index 0000000000..2b342c7b9f --- /dev/null +++ b/Docs/Tools/cache_centerpoints.sh @@ -0,0 +1,13 @@ +#! /bin/bash + +ts-node GenerateSeries.ts +# Move to the root of the repo +cd ../.. +cd ../MapComplete-data +git pull +cd - +ts-node scripts/slice.ts Docs/Tools/centerpoints.geojson 8 ../MapComplete-data/mapcomplete-changes/ +cd - +git add mapcomplete-changes/* +git commit -am "New changeset data" +git push diff --git a/Docs/Tools/centerpoints.geojson b/Docs/Tools/centerpoints.geojson index 945016b6ff..6c26feaaa2 100644 --- a/Docs/Tools/centerpoints.geojson +++ b/Docs/Tools/centerpoints.geojson @@ -3,6 +3,33 @@ "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": [ @@ -13,6 +40,33 @@ }, { "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": [ @@ -23,6 +77,33 @@ }, { "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": [ @@ -33,6 +114,33 @@ }, { "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": [ @@ -43,6 +151,33 @@ }, { "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": [ @@ -53,6 +188,33 @@ }, { "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": [ @@ -63,6 +225,33 @@ }, { "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": [ @@ -73,6 +262,33 @@ }, { "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": [ @@ -83,6 +299,33 @@ }, { "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": [ @@ -93,6 +336,33 @@ }, { "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": [ @@ -103,6 +373,33 @@ }, { "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": [ @@ -113,6 +410,33 @@ }, { "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": [ @@ -123,6 +447,32 @@ }, { "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": [ @@ -133,6 +483,50 @@ }, { "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": [ @@ -143,6 +537,37 @@ }, { "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": [ @@ -153,6 +578,33 @@ }, { "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": [ @@ -163,6 +615,142 @@ }, { "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": [ @@ -173,6 +761,38 @@ }, { "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": [ @@ -183,6 +803,38 @@ }, { "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": [ @@ -193,6 +845,33 @@ }, { "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": [ @@ -203,6 +882,33 @@ }, { "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": [ @@ -213,6 +919,33 @@ }, { "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": [ @@ -223,6 +956,33 @@ }, { "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": [ @@ -233,6 +993,33 @@ }, { "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": [ @@ -243,6 +1030,33 @@ }, { "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": [ @@ -253,6 +1067,33 @@ }, { "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": [ @@ -263,6 +1104,33 @@ }, { "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": [ @@ -273,6 +1141,33 @@ }, { "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": [ @@ -283,6 +1178,38 @@ }, { "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": [ @@ -293,6 +1220,33 @@ }, { "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": [ @@ -303,6 +1257,33 @@ }, { "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": [ @@ -313,6 +1294,33 @@ }, { "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": [ @@ -323,6 +1331,33 @@ }, { "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": [ @@ -333,6 +1368,33 @@ }, { "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": [ @@ -343,6 +1405,33 @@ }, { "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": [ @@ -353,6 +1442,33 @@ }, { "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": [ @@ -363,6 +1479,38 @@ }, { "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": [ @@ -373,6 +1521,38 @@ }, { "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": [ @@ -383,6 +1563,32 @@ }, { "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": [ @@ -393,6 +1599,33 @@ }, { "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": [ @@ -403,6 +1636,32 @@ }, { "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": [ @@ -413,6 +1672,50 @@ }, { "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": [ @@ -423,6 +1726,33 @@ }, { "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": [ @@ -433,6 +1763,33 @@ }, { "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": [ @@ -443,6 +1800,33 @@ }, { "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": [ @@ -453,6 +1837,33 @@ }, { "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": [ @@ -463,6 +1874,33 @@ }, { "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": [ @@ -473,6 +1911,33 @@ }, { "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": [ @@ -483,6 +1948,33 @@ }, { "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": [ @@ -493,6 +1985,51 @@ }, { "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": [ @@ -503,6 +2040,32 @@ }, { "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": [ @@ -513,6 +2076,33 @@ }, { "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": [ @@ -523,6 +2113,33 @@ }, { "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": [ @@ -533,6 +2150,33 @@ }, { "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": [ @@ -543,6 +2187,65 @@ }, { "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": [ @@ -553,6 +2256,38 @@ }, { "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": [ @@ -563,6 +2298,83 @@ }, { "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": [ @@ -573,6 +2385,33 @@ }, { "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": [ @@ -583,6 +2422,50 @@ }, { "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": [ @@ -593,6 +2476,33 @@ }, { "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": [ @@ -603,6 +2513,38 @@ }, { "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": [ @@ -613,6 +2555,33 @@ }, { "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": [ @@ -623,6 +2592,33 @@ }, { "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": [ @@ -633,6 +2629,33 @@ }, { "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": [ @@ -643,6 +2666,33 @@ }, { "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": [ @@ -653,6 +2703,33 @@ }, { "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": [ @@ -663,6 +2740,31 @@ }, { "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": [ @@ -673,6 +2775,33 @@ }, { "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": [ @@ -683,6 +2812,33 @@ }, { "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": [ @@ -693,6 +2849,33 @@ }, { "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": [ @@ -703,6 +2886,33 @@ }, { "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": [ @@ -713,6 +2923,33 @@ }, { "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": [ @@ -723,6 +2960,33 @@ }, { "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": [ @@ -733,6 +2997,33 @@ }, { "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": [ @@ -743,6 +3034,33 @@ }, { "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": [ @@ -753,6 +3071,33 @@ }, { "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": [ @@ -763,6 +3108,33 @@ }, { "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": [ @@ -773,6 +3145,33 @@ }, { "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": [ @@ -783,6 +3182,33 @@ }, { "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": [ @@ -793,6 +3219,33 @@ }, { "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": [ @@ -803,6 +3256,37 @@ }, { "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": [ @@ -813,6 +3297,37 @@ }, { "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": [ @@ -823,6 +3338,33 @@ }, { "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": [ @@ -833,6 +3375,37 @@ }, { "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": [ @@ -843,6 +3416,38 @@ }, { "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": [ @@ -853,6 +3458,37 @@ }, { "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": [ @@ -863,6 +3499,33 @@ }, { "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": [ @@ -873,6 +3536,33 @@ }, { "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": [ @@ -883,6 +3573,37 @@ }, { "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": [ @@ -893,6 +3614,33 @@ }, { "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": [ @@ -903,6 +3651,33 @@ }, { "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": [ @@ -913,6 +3688,33 @@ }, { "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": [ @@ -923,6 +3725,33 @@ }, { "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": [ @@ -933,6 +3762,33 @@ }, { "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": [ @@ -943,6 +3799,33 @@ }, { "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": [ @@ -953,6 +3836,32 @@ }, { "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": [ @@ -963,6 +3872,33 @@ }, { "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": [ @@ -973,6 +3909,33 @@ }, { "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": [ @@ -983,6 +3946,38 @@ }, { "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": [ @@ -993,6 +3988,33 @@ }, { "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": [ @@ -1003,6 +4025,33 @@ }, { "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": [ @@ -1013,6 +4062,33 @@ }, { "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": [ @@ -1023,6 +4099,33 @@ }, { "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": [ @@ -1033,6 +4136,33 @@ }, { "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": [ @@ -1043,6 +4173,934 @@ }, { "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": [ @@ -1053,6 +5111,65 @@ }, { "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": [ @@ -1063,6 +5180,725 @@ }, { "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": [ @@ -1073,6 +5909,54 @@ }, { "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": [ @@ -1083,6 +5967,76 @@ }, { "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": [ @@ -1093,6 +6047,65 @@ }, { "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": [ @@ -1103,6 +6116,54 @@ }, { "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": [ @@ -1113,6 +6174,54 @@ }, { "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": [ @@ -1123,6 +6232,61 @@ }, { "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": [ @@ -1133,6 +6297,131 @@ }, { "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": [ @@ -1143,6 +6432,33 @@ }, { "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": [ @@ -1153,6 +6469,33 @@ }, { "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": [ @@ -1163,6 +6506,571 @@ }, { "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": [ @@ -1173,6 +7081,38 @@ }, { "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": [ @@ -1183,6 +7123,33 @@ }, { "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": [ @@ -1193,6 +7160,120 @@ }, { "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": [ @@ -1203,6 +7284,76 @@ }, { "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": [ @@ -1213,6 +7364,33 @@ }, { "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": [ @@ -1223,6 +7401,33 @@ }, { "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": [ @@ -1233,6 +7438,33 @@ }, { "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": [ @@ -1243,6 +7475,33 @@ }, { "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": [ @@ -1253,6 +7512,33 @@ }, { "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": [ @@ -1263,6 +7549,33 @@ }, { "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": [ @@ -1273,6 +7586,38 @@ }, { "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": [ @@ -1283,6 +7628,33 @@ }, { "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": [ @@ -1293,6 +7665,33 @@ }, { "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": [ @@ -1303,6 +7702,50 @@ }, { "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": [ @@ -1313,6 +7756,50 @@ }, { "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": [ @@ -1323,6 +7810,33 @@ }, { "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": [ @@ -1333,6 +7847,33 @@ }, { "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": [ @@ -1343,6 +7884,33 @@ }, { "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": [ @@ -1353,6 +7921,33 @@ }, { "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": [ @@ -1363,6 +7958,33 @@ }, { "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": [ @@ -1373,6 +7995,33 @@ }, { "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": [ @@ -1383,6 +8032,33 @@ }, { "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": [ @@ -1393,6 +8069,33 @@ }, { "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": [ @@ -1403,6 +8106,33 @@ }, { "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": [ @@ -1413,6 +8143,33 @@ }, { "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": [ @@ -1423,6 +8180,33 @@ }, { "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": [ @@ -1433,6 +8217,33 @@ }, { "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": [ @@ -1443,6 +8254,33 @@ }, { "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": [ @@ -1453,6 +8291,33 @@ }, { "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": [ @@ -1463,6 +8328,33 @@ }, { "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": [ @@ -1473,6 +8365,33 @@ }, { "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": [ @@ -1483,6 +8402,33 @@ }, { "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": [ @@ -1493,6 +8439,33 @@ }, { "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": [ @@ -1503,6 +8476,33 @@ }, { "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": [ @@ -1513,6 +8513,33 @@ }, { "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": [ @@ -1523,6 +8550,33 @@ }, { "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": [ @@ -1533,6 +8587,33 @@ }, { "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": [ @@ -1543,6 +8624,33 @@ }, { "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": [ @@ -1553,6 +8661,33 @@ }, { "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": [ @@ -1563,6 +8698,33 @@ }, { "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": [ @@ -1573,6 +8735,33 @@ }, { "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": [ @@ -1583,6 +8772,33 @@ }, { "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": [ @@ -1593,6 +8809,50 @@ }, { "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": [ @@ -1603,6 +8863,33 @@ }, { "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": [ @@ -1613,6 +8900,33 @@ }, { "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": [ @@ -1623,6 +8937,33 @@ }, { "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": [ @@ -1633,6 +8974,33 @@ }, { "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": [ @@ -1643,6 +9011,33 @@ }, { "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": [ @@ -1653,6 +9048,33 @@ }, { "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": [ @@ -1663,6 +9085,33 @@ }, { "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": [ @@ -1673,6 +9122,33 @@ }, { "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": [ @@ -1683,6 +9159,33 @@ }, { "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": [ @@ -1693,6 +9196,33 @@ }, { "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": [ @@ -1703,6 +9233,33 @@ }, { "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": [ @@ -1713,6 +9270,33 @@ }, { "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": [ @@ -1723,6 +9307,33 @@ }, { "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": [ @@ -1733,6 +9344,33 @@ }, { "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": [ @@ -1743,6 +9381,33 @@ }, { "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": [ @@ -1753,6 +9418,33 @@ }, { "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": [ @@ -1763,6 +9455,33 @@ }, { "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": [ @@ -1773,6 +9492,33 @@ }, { "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": [ @@ -1783,6 +9529,38 @@ }, { "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": [ @@ -1793,6 +9571,33 @@ }, { "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": [ @@ -1803,6 +9608,33 @@ }, { "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": [ @@ -1813,6 +9645,33 @@ }, { "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": [ @@ -1823,6 +9682,33 @@ }, { "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": [ @@ -1833,6 +9719,33 @@ }, { "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": [ @@ -1843,6 +9756,33 @@ }, { "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": [ @@ -1853,6 +9793,33 @@ }, { "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": [ @@ -1863,6 +9830,33 @@ }, { "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": [ @@ -1873,6 +9867,33 @@ }, { "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": [ @@ -1883,6 +9904,33 @@ }, { "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": [ @@ -1893,6 +9941,33 @@ }, { "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": [ @@ -1903,6 +9978,33 @@ }, { "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": [ @@ -1913,6 +10015,33 @@ }, { "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": [ @@ -1923,6 +10052,33 @@ }, { "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": [ @@ -1933,6 +10089,33 @@ }, { "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": [ @@ -1943,6 +10126,33 @@ }, { "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": [ @@ -1953,6 +10163,33 @@ }, { "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": [ @@ -1963,6 +10200,33 @@ }, { "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": [ @@ -1973,6 +10237,33 @@ }, { "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": [ @@ -1983,6 +10274,33 @@ }, { "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": [ @@ -1993,6 +10311,33 @@ }, { "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": [ @@ -2003,6 +10348,33 @@ }, { "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": [ @@ -2013,6 +10385,33 @@ }, { "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": [ @@ -2023,6 +10422,33 @@ }, { "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": [ @@ -2033,6 +10459,33 @@ }, { "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": [ @@ -2043,6 +10496,33 @@ }, { "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": [ @@ -2053,6 +10533,33 @@ }, { "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": [ @@ -2063,6 +10570,33 @@ }, { "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": [ @@ -2073,6 +10607,33 @@ }, { "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": [ @@ -2083,6 +10644,33 @@ }, { "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": [ @@ -2093,6 +10681,38 @@ }, { "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": [ @@ -2103,6 +10723,33 @@ }, { "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": [ @@ -2113,6 +10760,33 @@ }, { "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": [ @@ -2123,6 +10797,33 @@ }, { "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": [ @@ -2133,6 +10834,33 @@ }, { "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": [ @@ -2143,6 +10871,33 @@ }, { "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": [ @@ -2153,6 +10908,33 @@ }, { "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": [ @@ -2163,6 +10945,33 @@ }, { "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": [ @@ -2173,6 +10982,33 @@ }, { "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": [ @@ -2183,6 +11019,33 @@ }, { "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": [ @@ -2193,6 +11056,33 @@ }, { "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": [ @@ -2203,6 +11093,33 @@ }, { "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": [ @@ -2213,6 +11130,33 @@ }, { "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": [ @@ -2223,6 +11167,33 @@ }, { "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": [ @@ -2233,6 +11204,33 @@ }, { "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": [ @@ -2243,6 +11241,38 @@ }, { "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": [ @@ -2253,6 +11283,33 @@ }, { "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": [ @@ -2263,6 +11320,33 @@ }, { "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": [ @@ -2273,6 +11357,33 @@ }, { "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": [ @@ -2283,6 +11394,33 @@ }, { "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": [ @@ -2293,6 +11431,33 @@ }, { "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": [ @@ -2303,6 +11468,33 @@ }, { "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": [ @@ -2313,6 +11505,33 @@ }, { "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": [ @@ -2323,6 +11542,33 @@ }, { "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": [ @@ -2333,6 +11579,33 @@ }, { "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": [ @@ -2343,6 +11616,33 @@ }, { "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": [ @@ -2353,6 +11653,33 @@ }, { "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": [ @@ -2363,6 +11690,50 @@ }, { "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": [ @@ -2373,6 +11744,33 @@ }, { "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": [ @@ -2383,6 +11781,31 @@ }, { "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": [ @@ -2393,6 +11816,33 @@ }, { "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": [ @@ -2403,6 +11853,33 @@ }, { "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": [ @@ -2413,6 +11890,33 @@ }, { "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": [ @@ -2423,6 +11927,33 @@ }, { "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": [ @@ -2433,6 +11964,37 @@ }, { "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": [ @@ -2443,6 +12005,33 @@ }, { "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": [ @@ -2453,6 +12042,33 @@ }, { "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": [ @@ -2463,6 +12079,33 @@ }, { "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": [ @@ -2473,6 +12116,33 @@ }, { "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": [ @@ -2483,6 +12153,33 @@ }, { "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": [ @@ -2493,6 +12190,33 @@ }, { "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": [ @@ -2503,6 +12227,33 @@ }, { "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": [ @@ -2513,6 +12264,33 @@ }, { "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": [ @@ -2523,6 +12301,33 @@ }, { "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": [ @@ -2533,6 +12338,33 @@ }, { "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": [ @@ -2543,6 +12375,33 @@ }, { "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": [ @@ -2553,6 +12412,33 @@ }, { "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": [ @@ -2563,6 +12449,33 @@ }, { "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": [ @@ -2573,6 +12486,33 @@ }, { "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": [ @@ -2583,6 +12523,33 @@ }, { "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": [ @@ -2593,6 +12560,33 @@ }, { "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": [ @@ -2603,6 +12597,33 @@ }, { "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": [ @@ -2613,6 +12634,33 @@ }, { "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": [ @@ -2623,6 +12671,33 @@ }, { "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": [ @@ -2633,6 +12708,33 @@ }, { "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": [ @@ -2643,6 +12745,33 @@ }, { "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": [ @@ -2653,6 +12782,33 @@ }, { "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": [ @@ -2663,6 +12819,33 @@ }, { "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": [ @@ -2673,6 +12856,33 @@ }, { "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": [ @@ -2683,6 +12893,33 @@ }, { "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": [ @@ -2693,6 +12930,33 @@ }, { "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": [ @@ -2703,6 +12967,33 @@ }, { "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": [ @@ -2713,6 +13004,33 @@ }, { "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": [ @@ -2723,6 +13041,33 @@ }, { "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": [ @@ -2733,6 +13078,33 @@ }, { "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": [ @@ -2743,6 +13115,33 @@ }, { "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": [ @@ -2753,6 +13152,33 @@ }, { "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": [ @@ -2763,6 +13189,33 @@ }, { "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": [ @@ -2773,6 +13226,33 @@ }, { "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": [ @@ -2783,6 +13263,33 @@ }, { "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": [ @@ -2793,6 +13300,33 @@ }, { "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": [ @@ -2803,6 +13337,33 @@ }, { "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": [ @@ -2813,6 +13374,33 @@ }, { "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": [ @@ -2823,6 +13411,33 @@ }, { "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": [ @@ -2833,6 +13448,33 @@ }, { "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": [ @@ -2843,6 +13485,33 @@ }, { "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": [ @@ -2853,6 +13522,33 @@ }, { "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": [ @@ -2863,6 +13559,38 @@ }, { "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": [ @@ -2873,6 +13601,33 @@ }, { "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": [ @@ -2883,6 +13638,33 @@ }, { "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": [ @@ -2893,6 +13675,33 @@ }, { "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": [ @@ -2903,6 +13712,33 @@ }, { "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": [ @@ -2913,6 +13749,38 @@ }, { "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": [ @@ -2923,6 +13791,38 @@ }, { "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": [ @@ -2933,6 +13833,38 @@ }, { "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": [ @@ -2943,6 +13875,33 @@ }, { "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": [ @@ -2953,6 +13912,33 @@ }, { "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": [ @@ -2963,6 +13949,33 @@ }, { "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": [ @@ -2973,6 +13986,33 @@ }, { "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": [ @@ -2983,6 +14023,33 @@ }, { "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": [ @@ -2993,6 +14060,33 @@ }, { "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": [ @@ -3003,6 +14097,33 @@ }, { "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": [ @@ -3013,6 +14134,33 @@ }, { "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": [ @@ -3023,6 +14171,33 @@ }, { "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": [ @@ -3033,6 +14208,33 @@ }, { "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": [ @@ -3043,6 +14245,33 @@ }, { "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": [ @@ -3053,6 +14282,33 @@ }, { "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": [ @@ -3063,6 +14319,33 @@ }, { "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": [ @@ -3073,6 +14356,38 @@ }, { "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": [ @@ -3083,6 +14398,38 @@ }, { "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": [ @@ -3093,6 +14440,38 @@ }, { "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": [ @@ -3103,6 +14482,38 @@ }, { "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": [ @@ -3113,6 +14524,38 @@ }, { "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": [ @@ -3123,6 +14566,38 @@ }, { "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": [ @@ -3133,6 +14608,38 @@ }, { "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": [ @@ -3143,6 +14650,38 @@ }, { "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": [ @@ -3153,6 +14692,38 @@ }, { "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": [ @@ -3163,6 +14734,38 @@ }, { "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": [ @@ -3173,6 +14776,38 @@ }, { "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": [ @@ -3183,6 +14818,33 @@ }, { "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": [ @@ -3193,6 +14855,33 @@ }, { "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": [ @@ -3203,6 +14892,33 @@ }, { "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": [ @@ -3213,6 +14929,38 @@ }, { "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": [ @@ -3223,6 +14971,38 @@ }, { "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": [ @@ -3233,6 +15013,38 @@ }, { "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": [ @@ -3243,6 +15055,33 @@ }, { "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": [ @@ -3253,6 +15092,38 @@ }, { "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": [ @@ -3263,6 +15134,33 @@ }, { "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": [ @@ -3273,6 +15171,33 @@ }, { "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": [ @@ -3283,6 +15208,33 @@ }, { "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": [ @@ -3293,6 +15245,38 @@ }, { "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": [ @@ -3303,6 +15287,38 @@ }, { "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": [ @@ -3313,6 +15329,33 @@ }, { "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": [ @@ -3323,6 +15366,33 @@ }, { "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": [ @@ -3333,6 +15403,33 @@ }, { "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": [ @@ -3343,6 +15440,38 @@ }, { "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": [ @@ -3353,6 +15482,33 @@ }, { "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": [ @@ -3363,6 +15519,33 @@ }, { "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": [ @@ -3373,6 +15556,33 @@ }, { "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": [ @@ -3383,6 +15593,33 @@ }, { "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": [ @@ -3393,6 +15630,38 @@ }, { "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": [ @@ -3403,6 +15672,33 @@ }, { "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": [ @@ -3413,6 +15709,38 @@ }, { "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": [ @@ -3423,6 +15751,38 @@ }, { "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": [ @@ -3433,6 +15793,83 @@ }, { "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": [ @@ -3443,6 +15880,33 @@ }, { "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": [ @@ -3453,6 +15917,33 @@ }, { "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": [ @@ -3463,6 +15954,33 @@ }, { "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": [ @@ -3473,6 +15991,33 @@ }, { "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": [ @@ -3483,6 +16028,33 @@ }, { "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": [ @@ -3493,6 +16065,33 @@ }, { "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": [ @@ -3503,6 +16102,33 @@ }, { "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": [ @@ -3513,6 +16139,33 @@ }, { "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": [ @@ -3523,6 +16176,33 @@ }, { "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": [ @@ -3533,6 +16213,33 @@ }, { "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": [ @@ -3543,6 +16250,33 @@ }, { "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": [ @@ -3553,6 +16287,83 @@ }, { "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": [ @@ -3563,6 +16374,33 @@ }, { "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": [ @@ -3573,6 +16411,32 @@ }, { "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": [ @@ -3583,6 +16447,33 @@ }, { "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": [ @@ -3593,6 +16484,33 @@ }, { "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": [ @@ -3603,6 +16521,33 @@ }, { "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": [ @@ -3613,6 +16558,33 @@ }, { "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": [ @@ -3623,6 +16595,33 @@ }, { "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": [ @@ -3633,6 +16632,33 @@ }, { "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": [ @@ -3643,6 +16669,33 @@ }, { "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": [ @@ -3653,6 +16706,33 @@ }, { "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": [ @@ -3663,6 +16743,51 @@ }, { "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": [ @@ -3673,6 +16798,33 @@ }, { "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": [ @@ -3683,6 +16835,33 @@ }, { "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": [ @@ -3693,6 +16872,38 @@ }, { "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": [ @@ -3703,6 +16914,51 @@ }, { "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": [ @@ -3713,6 +16969,33 @@ }, { "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": [ @@ -3723,6 +17006,33 @@ }, { "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": [ @@ -3733,6 +17043,38 @@ }, { "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": [ @@ -3743,6 +17085,33 @@ }, { "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": [ @@ -3753,6 +17122,33 @@ }, { "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": [ @@ -3763,6 +17159,33 @@ }, { "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": [ @@ -3773,6 +17196,31 @@ }, { "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": [ @@ -3783,6 +17231,31 @@ }, { "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": [ @@ -3793,6 +17266,31 @@ }, { "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": [ @@ -3803,6 +17301,31 @@ }, { "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": [ @@ -3813,6 +17336,31 @@ }, { "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": [ @@ -3823,6 +17371,31 @@ }, { "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": [ @@ -3833,6 +17406,31 @@ }, { "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": [ @@ -3843,6 +17441,31 @@ }, { "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": [ @@ -3853,6 +17476,31 @@ }, { "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": [ @@ -3863,6 +17511,31 @@ }, { "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": [ @@ -3873,6 +17546,31 @@ }, { "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": [ @@ -3883,6 +17581,31 @@ }, { "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": [ @@ -3893,6 +17616,31 @@ }, { "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": [ @@ -3903,6 +17651,31 @@ }, { "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": [ @@ -3913,6 +17686,31 @@ }, { "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": [ @@ -3923,6 +17721,31 @@ }, { "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": [ @@ -3933,6 +17756,50 @@ }, { "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": [ @@ -3943,6 +17810,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -3953,6 +17845,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -3963,6 +17880,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -3973,6 +17915,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -3983,6 +17950,36 @@ }, { "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": [ @@ -3993,6 +17990,36 @@ }, { "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": [ @@ -4003,6 +18030,36 @@ }, { "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": [ @@ -4013,6 +18070,36 @@ }, { "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": [ @@ -4023,6 +18110,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4033,6 +18145,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4043,6 +18180,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4053,6 +18215,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4063,6 +18250,31 @@ }, { "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": [ @@ -4073,6 +18285,31 @@ }, { "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": [ @@ -4083,6 +18320,31 @@ }, { "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": [ @@ -4093,6 +18355,31 @@ }, { "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": [ @@ -4103,6 +18390,31 @@ }, { "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": [ @@ -4113,6 +18425,31 @@ }, { "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": [ @@ -4123,6 +18460,31 @@ }, { "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": [ @@ -4133,6 +18495,31 @@ }, { "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": [ @@ -4143,6 +18530,31 @@ }, { "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": [ @@ -4153,6 +18565,31 @@ }, { "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": [ @@ -4163,6 +18600,31 @@ }, { "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": [ @@ -4173,6 +18635,31 @@ }, { "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": [ @@ -4183,6 +18670,31 @@ }, { "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": [ @@ -4193,6 +18705,31 @@ }, { "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": [ @@ -4203,6 +18740,31 @@ }, { "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": [ @@ -4213,6 +18775,31 @@ }, { "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": [ @@ -4223,6 +18810,31 @@ }, { "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": [ @@ -4233,6 +18845,31 @@ }, { "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": [ @@ -4243,6 +18880,31 @@ }, { "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": [ @@ -4253,6 +18915,31 @@ }, { "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": [ @@ -4263,6 +18950,31 @@ }, { "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": [ @@ -4273,6 +18985,31 @@ }, { "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": [ @@ -4283,6 +19020,31 @@ }, { "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": [ @@ -4293,6 +19055,31 @@ }, { "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": [ @@ -4303,6 +19090,31 @@ }, { "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": [ @@ -4313,6 +19125,31 @@ }, { "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": [ @@ -4323,6 +19160,31 @@ }, { "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": [ @@ -4333,6 +19195,31 @@ }, { "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": [ @@ -4343,6 +19230,31 @@ }, { "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": [ @@ -4353,6 +19265,31 @@ }, { "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": [ @@ -4363,6 +19300,31 @@ }, { "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": [ @@ -4373,6 +19335,31 @@ }, { "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": [ @@ -4383,6 +19370,31 @@ }, { "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": [ @@ -4393,6 +19405,31 @@ }, { "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": [ @@ -4403,6 +19440,31 @@ }, { "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": [ @@ -4413,6 +19475,31 @@ }, { "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": [ @@ -4423,6 +19510,31 @@ }, { "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": [ @@ -4433,6 +19545,31 @@ }, { "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": [ @@ -4443,6 +19580,31 @@ }, { "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": [ @@ -4453,6 +19615,31 @@ }, { "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": [ @@ -4463,6 +19650,31 @@ }, { "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": [ @@ -4473,6 +19685,31 @@ }, { "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": [ @@ -4483,6 +19720,31 @@ }, { "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": [ @@ -4493,6 +19755,31 @@ }, { "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": [ @@ -4503,6 +19790,31 @@ }, { "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": [ @@ -4513,6 +19825,31 @@ }, { "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": [ @@ -4523,6 +19860,31 @@ }, { "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": [ @@ -4533,6 +19895,31 @@ }, { "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": [ @@ -4543,6 +19930,31 @@ }, { "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": [ @@ -4553,6 +19965,31 @@ }, { "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": [ @@ -4563,6 +20000,31 @@ }, { "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": [ @@ -4573,6 +20035,31 @@ }, { "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": [ @@ -4583,6 +20070,31 @@ }, { "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": [ @@ -4593,6 +20105,31 @@ }, { "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": [ @@ -4603,6 +20140,31 @@ }, { "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": [ @@ -4613,6 +20175,31 @@ }, { "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": [ @@ -4623,6 +20210,31 @@ }, { "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": [ @@ -4633,6 +20245,31 @@ }, { "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": [ @@ -4643,6 +20280,31 @@ }, { "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": [ @@ -4653,6 +20315,31 @@ }, { "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": [ @@ -4663,6 +20350,31 @@ }, { "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": [ @@ -4673,6 +20385,31 @@ }, { "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": [ @@ -4683,6 +20420,31 @@ }, { "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": [ @@ -4693,6 +20455,31 @@ }, { "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": [ @@ -4703,6 +20490,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4713,6 +20525,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4723,6 +20560,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4733,6 +20595,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4743,6 +20630,31 @@ }, { "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": [ @@ -4753,6 +20665,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4763,6 +20700,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4773,6 +20735,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4783,6 +20770,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4793,6 +20805,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4803,6 +20840,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4813,6 +20875,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4823,6 +20910,31 @@ }, { "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": [ @@ -4833,6 +20945,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4843,6 +20980,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4853,6 +21015,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4863,6 +21050,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4873,6 +21085,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4883,6 +21120,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4893,6 +21155,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4903,6 +21190,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4913,6 +21225,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4923,6 +21260,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4933,6 +21295,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4943,6 +21330,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4953,6 +21365,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4963,6 +21400,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4973,6 +21435,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4983,6 +21470,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -4993,6 +21505,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5003,6 +21540,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5013,6 +21575,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5023,6 +21610,31 @@ }, { "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": [ @@ -5033,6 +21645,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5043,6 +21680,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5053,6 +21715,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5063,6 +21750,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5073,6 +21785,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5083,6 +21820,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5093,6 +21855,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5103,6 +21890,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5113,6 +21925,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5123,6 +21960,36 @@ }, { "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": [ @@ -5133,6 +22000,36 @@ }, { "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": [ @@ -5143,6 +22040,36 @@ }, { "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": [ @@ -5153,6 +22080,36 @@ }, { "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": [ @@ -5163,6 +22120,36 @@ }, { "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": [ @@ -5173,6 +22160,31 @@ }, { "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": [ @@ -5183,6 +22195,31 @@ }, { "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": [ @@ -5193,6 +22230,31 @@ }, { "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": [ @@ -5203,6 +22265,36 @@ }, { "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": [ @@ -5213,6 +22305,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5223,6 +22340,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5233,6 +22375,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5243,6 +22410,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5253,6 +22445,36 @@ }, { "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": [ @@ -5263,6 +22485,36 @@ }, { "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": [ @@ -5273,6 +22525,31 @@ }, { "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": [ @@ -5283,6 +22560,31 @@ }, { "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": [ @@ -5293,6 +22595,36 @@ }, { "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": [ @@ -5303,6 +22635,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5313,6 +22670,36 @@ }, { "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": [ @@ -5323,6 +22710,36 @@ }, { "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": [ @@ -5333,6 +22750,36 @@ }, { "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": [ @@ -5343,6 +22790,36 @@ }, { "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": [ @@ -5353,6 +22830,36 @@ }, { "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": [ @@ -5363,6 +22870,36 @@ }, { "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": [ @@ -5373,6 +22910,36 @@ }, { "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": [ @@ -5383,6 +22950,36 @@ }, { "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": [ @@ -5393,6 +22990,36 @@ }, { "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": [ @@ -5403,6 +23030,36 @@ }, { "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": [ @@ -5413,6 +23070,36 @@ }, { "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": [ @@ -5423,6 +23110,36 @@ }, { "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": [ @@ -5433,6 +23150,36 @@ }, { "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": [ @@ -5443,6 +23190,36 @@ }, { "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": [ @@ -5453,6 +23230,36 @@ }, { "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": [ @@ -5463,6 +23270,31 @@ }, { "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": [ @@ -5473,6 +23305,31 @@ }, { "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": [ @@ -5483,6 +23340,31 @@ }, { "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": [ @@ -5493,6 +23375,31 @@ }, { "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": [ @@ -5503,6 +23410,31 @@ }, { "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": [ @@ -5513,6 +23445,31 @@ }, { "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": [ @@ -5523,6 +23480,31 @@ }, { "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": [ @@ -5533,6 +23515,31 @@ }, { "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": [ @@ -5543,6 +23550,31 @@ }, { "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": [ @@ -5553,6 +23585,31 @@ }, { "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": [ @@ -5563,6 +23620,31 @@ }, { "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": [ @@ -5573,6 +23655,31 @@ }, { "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": [ @@ -5583,6 +23690,31 @@ }, { "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": [ @@ -5593,6 +23725,31 @@ }, { "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": [ @@ -5603,6 +23760,31 @@ }, { "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": [ @@ -5613,6 +23795,31 @@ }, { "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": [ @@ -5623,6 +23830,31 @@ }, { "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": [ @@ -5633,6 +23865,31 @@ }, { "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": [ @@ -5643,6 +23900,36 @@ }, { "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": [ @@ -5653,6 +23940,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5663,6 +23975,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5673,6 +24010,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5683,6 +24045,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5693,6 +24080,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5703,6 +24115,31 @@ }, { "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": [ @@ -5713,6 +24150,31 @@ }, { "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": [ @@ -5723,6 +24185,31 @@ }, { "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": [ @@ -5733,6 +24220,31 @@ }, { "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": [ @@ -5743,6 +24255,31 @@ }, { "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": [ @@ -5753,6 +24290,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5763,6 +24325,36 @@ }, { "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": [ @@ -5773,6 +24365,36 @@ }, { "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": [ @@ -5783,6 +24405,36 @@ }, { "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": [ @@ -5793,6 +24445,36 @@ }, { "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": [ @@ -5803,6 +24485,36 @@ }, { "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": [ @@ -5813,6 +24525,36 @@ }, { "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": [ @@ -5823,6 +24565,36 @@ }, { "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": [ @@ -5833,6 +24605,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5843,6 +24640,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5853,18 +24675,36 @@ }, { "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06497845, - 50.813303399999995 - ] - } - }, - null, - null, - { - "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": [ @@ -5875,6 +24715,36 @@ }, { "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": [ @@ -5885,6 +24755,76 @@ }, { "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": [ @@ -5895,6 +24835,36 @@ }, { "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": [ @@ -5905,6 +24875,36 @@ }, { "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": [ @@ -5915,6 +24915,36 @@ }, { "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": [ @@ -5925,6 +24955,36 @@ }, { "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": [ @@ -5935,6 +24995,36 @@ }, { "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": [ @@ -5945,6 +25035,36 @@ }, { "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": [ @@ -5955,6 +25075,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5965,6 +25110,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5975,6 +25145,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5985,6 +25180,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -5995,6 +25215,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -6005,6 +25250,36 @@ }, { "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": [ @@ -6015,6 +25290,31 @@ }, { "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": [ @@ -6025,6 +25325,36 @@ }, { "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": [ @@ -6035,6 +25365,52 @@ }, { "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": [ @@ -6045,6 +25421,31 @@ }, { "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": [ @@ -6055,6 +25456,31 @@ }, { "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": [ @@ -6065,6 +25491,31 @@ }, { "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": [ @@ -6075,6 +25526,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -6085,6 +25561,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -6095,6 +25596,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -6105,6 +25631,36 @@ }, { "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": [ @@ -6115,6 +25671,36 @@ }, { "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": [ @@ -6125,6 +25711,36 @@ }, { "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": [ @@ -6135,6 +25751,36 @@ }, { "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": [ @@ -6145,6 +25791,50 @@ }, { "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": [ @@ -6155,6 +25845,36 @@ }, { "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": [ @@ -6165,6 +25885,36 @@ }, { "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": [ @@ -6175,6 +25925,36 @@ }, { "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": [ @@ -6185,6 +25965,36 @@ }, { "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": [ @@ -6195,6 +26005,36 @@ }, { "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": [ @@ -6205,6 +26045,36 @@ }, { "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": [ @@ -6215,6 +26085,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -6225,6 +26120,31 @@ }, { "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": [ @@ -6235,6 +26155,31 @@ }, { "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": [ @@ -6245,6 +26190,31 @@ }, { "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": [ @@ -6255,6 +26225,31 @@ }, { "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": [ @@ -6265,6 +26260,31 @@ }, { "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": [ @@ -6275,6 +26295,36 @@ }, { "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": [ @@ -6285,6 +26335,36 @@ }, { "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": [ @@ -6295,6 +26375,36 @@ }, { "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": [ @@ -6305,6 +26415,36 @@ }, { "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": [ @@ -6315,6 +26455,36 @@ }, { "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": [ @@ -6325,6 +26495,36 @@ }, { "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": [ @@ -6335,6 +26535,31 @@ }, { "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": [ @@ -6345,6 +26570,31 @@ }, { "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": [ @@ -6355,6 +26605,36 @@ }, { "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": [ @@ -6365,6 +26645,36 @@ }, { "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": [ @@ -6375,6 +26685,31 @@ }, { "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": [ @@ -6385,6 +26720,31 @@ }, { "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": [ @@ -6395,6 +26755,31 @@ }, { "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": [ @@ -6405,6 +26790,31 @@ }, { "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": [ @@ -6415,6 +26825,31 @@ }, { "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": [ @@ -6425,6 +26860,31 @@ }, { "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": [ @@ -6435,6 +26895,31 @@ }, { "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": [ @@ -6445,6 +26930,31 @@ }, { "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": [ @@ -6455,6 +26965,31 @@ }, { "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": [ @@ -6465,6 +27000,31 @@ }, { "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": [ @@ -6475,6 +27035,31 @@ }, { "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": [ @@ -6485,6 +27070,31 @@ }, { "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": [ @@ -6495,6 +27105,31 @@ }, { "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": [ @@ -6505,6 +27140,31 @@ }, { "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": [ @@ -6515,6 +27175,31 @@ }, { "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": [ @@ -6525,6 +27210,31 @@ }, { "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": [ @@ -6535,6 +27245,31 @@ }, { "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": [ @@ -6545,6 +27280,31 @@ }, { "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": [ @@ -6555,6 +27315,31 @@ }, { "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": [ @@ -6565,6 +27350,31 @@ }, { "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": [ @@ -6575,6 +27385,31 @@ }, { "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": [ @@ -6585,6 +27420,31 @@ }, { "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": [ @@ -6595,6 +27455,31 @@ }, { "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": [ @@ -6605,6 +27490,31 @@ }, { "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": [ @@ -6615,6 +27525,31 @@ }, { "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": [ @@ -6625,6 +27560,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -6635,6 +27595,36 @@ }, { "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": [ @@ -6645,6 +27635,36 @@ }, { "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": [ @@ -6655,6 +27675,31 @@ }, { "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": [ @@ -6665,6 +27710,36 @@ }, { "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": [ @@ -6675,6 +27750,36 @@ }, { "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": [ @@ -6685,6 +27790,31 @@ }, { "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": [ @@ -6695,6 +27825,36 @@ }, { "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": [ @@ -6705,6 +27865,36 @@ }, { "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": [ @@ -6715,6 +27905,31 @@ }, { "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": [ @@ -6725,6 +27940,36 @@ }, { "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": [ @@ -6735,6 +27980,31 @@ }, { "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": [ @@ -6745,6 +28015,36 @@ }, { "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": [ @@ -6755,6 +28055,31 @@ }, { "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": [ @@ -6765,6 +28090,31 @@ }, { "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": [ @@ -6775,6 +28125,31 @@ }, { "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": [ @@ -6785,6 +28160,31 @@ }, { "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": [ @@ -6795,6 +28195,31 @@ }, { "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": [ @@ -6805,6 +28230,31 @@ }, { "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": [ @@ -6815,6 +28265,31 @@ }, { "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": [ @@ -6825,6 +28300,31 @@ }, { "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": [ @@ -6835,6 +28335,31 @@ }, { "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": [ @@ -6845,6 +28370,31 @@ }, { "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": [ @@ -6855,6 +28405,31 @@ }, { "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": [ @@ -6865,6 +28440,31 @@ }, { "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": [ @@ -6875,6 +28475,31 @@ }, { "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": [ @@ -6885,6 +28510,31 @@ }, { "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": [ @@ -6895,6 +28545,31 @@ }, { "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": [ @@ -6905,6 +28580,31 @@ }, { "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": [ @@ -6915,6 +28615,31 @@ }, { "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": [ @@ -6925,6 +28650,31 @@ }, { "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": [ @@ -6935,6 +28685,31 @@ }, { "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": [ @@ -6945,6 +28720,31 @@ }, { "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": [ @@ -6955,6 +28755,31 @@ }, { "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": [ @@ -6965,6 +28790,31 @@ }, { "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": [ @@ -6975,6 +28825,31 @@ }, { "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": [ @@ -6985,6 +28860,31 @@ }, { "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": [ @@ -6995,6 +28895,31 @@ }, { "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": [ @@ -7005,6 +28930,31 @@ }, { "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": [ @@ -7015,6 +28965,31 @@ }, { "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": [ @@ -7025,6 +29000,31 @@ }, { "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": [ @@ -7035,6 +29035,31 @@ }, { "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": [ @@ -7045,6 +29070,36 @@ }, { "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": [ @@ -7055,6 +29110,36 @@ }, { "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": [ @@ -7065,6 +29150,31 @@ }, { "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": [ @@ -7075,6 +29185,31 @@ }, { "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": [ @@ -7085,6 +29220,31 @@ }, { "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": [ @@ -7095,6 +29255,31 @@ }, { "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": [ @@ -7105,6 +29290,36 @@ }, { "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": [ @@ -7115,6 +29330,31 @@ }, { "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": [ @@ -7125,6 +29365,31 @@ }, { "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": [ @@ -7135,6 +29400,31 @@ }, { "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": [ @@ -7145,6 +29435,31 @@ }, { "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": [ @@ -7155,6 +29470,31 @@ }, { "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": [ @@ -7165,6 +29505,31 @@ }, { "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": [ @@ -7175,6 +29540,31 @@ }, { "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": [ @@ -7185,6 +29575,31 @@ }, { "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": [ @@ -7195,6 +29610,31 @@ }, { "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": [ @@ -7205,6 +29645,31 @@ }, { "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": [ @@ -7215,6 +29680,31 @@ }, { "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": [ @@ -7225,6 +29715,36 @@ }, { "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": [ @@ -7235,6 +29755,31 @@ }, { "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": [ @@ -7245,6 +29790,31 @@ }, { "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": [ @@ -7255,6 +29825,36 @@ }, { "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": [ @@ -7265,6 +29865,36 @@ }, { "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": [ @@ -7275,6 +29905,36 @@ }, { "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": [ @@ -7285,6 +29945,31 @@ }, { "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": [ @@ -7295,6 +29980,36 @@ }, { "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": [ @@ -7305,6 +30020,31 @@ }, { "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": [ @@ -7315,6 +30055,31 @@ }, { "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": [ @@ -7325,6 +30090,36 @@ }, { "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": [ @@ -7335,6 +30130,31 @@ }, { "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": [ @@ -7345,6 +30165,31 @@ }, { "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": [ @@ -7355,6 +30200,31 @@ }, { "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": [ @@ -7365,6 +30235,36 @@ }, { "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": [ @@ -7375,6 +30275,31 @@ }, { "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": [ @@ -7385,6 +30310,31 @@ }, { "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": [ @@ -7395,6 +30345,36 @@ }, { "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": [ @@ -7405,6 +30385,31 @@ }, { "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": [ @@ -7415,6 +30420,31 @@ }, { "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": [ @@ -7425,6 +30455,36 @@ }, { "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": [ @@ -7435,6 +30495,31 @@ }, { "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": [ @@ -7445,6 +30530,36 @@ }, { "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": [ @@ -7455,6 +30570,36 @@ }, { "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": [ @@ -7465,6 +30610,31 @@ }, { "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": [ @@ -7475,6 +30645,31 @@ }, { "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": [ @@ -7485,6 +30680,31 @@ }, { "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": [ @@ -7495,6 +30715,31 @@ }, { "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": [ @@ -7505,6 +30750,31 @@ }, { "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": [ @@ -7515,6 +30785,36 @@ }, { "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": [ @@ -7525,6 +30825,31 @@ }, { "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": [ @@ -7535,6 +30860,36 @@ }, { "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": [ @@ -7545,6 +30900,31 @@ }, { "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": [ @@ -7555,6 +30935,36 @@ }, { "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": [ @@ -7565,6 +30975,36 @@ }, { "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": [ @@ -7575,6 +31015,31 @@ }, { "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": [ @@ -7585,6 +31050,36 @@ }, { "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": [ @@ -7595,6 +31090,36 @@ }, { "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": [ @@ -7605,6 +31130,31 @@ }, { "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": [ @@ -7615,6 +31165,31 @@ }, { "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": [ @@ -7625,6 +31200,31 @@ }, { "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": [ @@ -7635,6 +31235,36 @@ }, { "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": [ @@ -7645,6 +31275,31 @@ }, { "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": [ @@ -7655,6 +31310,31 @@ }, { "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": [ @@ -7665,6 +31345,31 @@ }, { "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": [ @@ -7675,6 +31380,31 @@ }, { "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": [ @@ -7685,6 +31415,31 @@ }, { "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": [ @@ -7695,6 +31450,31 @@ }, { "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": [ @@ -7705,6 +31485,36 @@ }, { "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": [ @@ -7715,6 +31525,31 @@ }, { "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": [ @@ -7725,6 +31560,31 @@ }, { "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": [ @@ -7735,6 +31595,31 @@ }, { "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": [ @@ -7745,6 +31630,31 @@ }, { "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": [ @@ -7755,6 +31665,31 @@ }, { "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": [ @@ -7765,6 +31700,36 @@ }, { "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": [ @@ -7775,6 +31740,31 @@ }, { "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": [ @@ -7785,6 +31775,36 @@ }, { "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": [ @@ -7795,6 +31815,31 @@ }, { "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": [ @@ -7805,6 +31850,36 @@ }, { "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": [ @@ -7815,6 +31890,31 @@ }, { "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": [ @@ -7825,6 +31925,31 @@ }, { "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": [ @@ -7835,6 +31960,31 @@ }, { "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": [ @@ -7845,6 +31995,31 @@ }, { "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": [ @@ -7855,6 +32030,31 @@ }, { "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": [ @@ -7865,6 +32065,36 @@ }, { "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": [ @@ -7875,6 +32105,36 @@ }, { "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": [ @@ -7885,6 +32145,31 @@ }, { "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": [ @@ -7895,6 +32180,31 @@ }, { "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": [ @@ -7905,6 +32215,31 @@ }, { "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": [ @@ -7915,6 +32250,36 @@ }, { "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": [ @@ -7925,6 +32290,31 @@ }, { "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": [ @@ -7935,6 +32325,31 @@ }, { "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": [ @@ -7945,6 +32360,31 @@ }, { "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": [ @@ -7955,6 +32395,36 @@ }, { "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": [ @@ -7965,6 +32435,31 @@ }, { "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": [ @@ -7975,6 +32470,31 @@ }, { "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": [ @@ -7985,6 +32505,36 @@ }, { "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": [ @@ -7995,6 +32545,31 @@ }, { "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": [ @@ -8005,6 +32580,36 @@ }, { "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": [ @@ -8015,6 +32620,31 @@ }, { "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": [ @@ -8025,6 +32655,36 @@ }, { "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": [ @@ -8035,6 +32695,36 @@ }, { "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": [ @@ -8045,6 +32735,36 @@ }, { "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": [ @@ -8055,6 +32775,36 @@ }, { "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": [ @@ -8065,6 +32815,31 @@ }, { "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": [ @@ -8075,6 +32850,31 @@ }, { "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": [ @@ -8085,6 +32885,31 @@ }, { "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": [ @@ -8095,6 +32920,36 @@ }, { "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": [ @@ -8105,6 +32960,31 @@ }, { "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": [ @@ -8115,6 +32995,31 @@ }, { "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": [ @@ -8125,6 +33030,31 @@ }, { "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": [ @@ -8135,6 +33065,31 @@ }, { "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": [ @@ -8145,6 +33100,36 @@ }, { "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": [ @@ -8155,6 +33140,31 @@ }, { "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": [ @@ -8165,6 +33175,31 @@ }, { "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": [ @@ -8175,6 +33210,31 @@ }, { "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": [ @@ -8185,6 +33245,31 @@ }, { "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": [ @@ -8195,6 +33280,36 @@ }, { "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": [ @@ -8205,6 +33320,31 @@ }, { "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": [ @@ -8215,6 +33355,31 @@ }, { "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": [ @@ -8225,6 +33390,36 @@ }, { "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": [ @@ -8235,6 +33430,31 @@ }, { "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": [ @@ -8245,6 +33465,36 @@ }, { "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": [ @@ -8255,6 +33505,36 @@ }, { "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": [ @@ -8265,6 +33545,31 @@ }, { "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": [ @@ -8275,6 +33580,31 @@ }, { "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": [ @@ -8285,6 +33615,36 @@ }, { "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": [ @@ -8295,6 +33655,31 @@ }, { "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": [ @@ -8305,6 +33690,36 @@ }, { "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": [ @@ -8315,6 +33730,36 @@ }, { "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": [ @@ -8325,6 +33770,31 @@ }, { "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": [ @@ -8335,6 +33805,36 @@ }, { "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": [ @@ -8345,6 +33845,31 @@ }, { "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": [ @@ -8355,6 +33880,31 @@ }, { "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": [ @@ -8365,6 +33915,36 @@ }, { "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": [ @@ -8375,6 +33955,36 @@ }, { "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": [ @@ -8385,6 +33995,31 @@ }, { "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": [ @@ -8395,6 +34030,36 @@ }, { "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": [ @@ -8405,6 +34070,36 @@ }, { "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": [ @@ -8415,6 +34110,31 @@ }, { "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": [ @@ -8425,6 +34145,31 @@ }, { "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": [ @@ -8435,6 +34180,31 @@ }, { "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": [ @@ -8445,6 +34215,31 @@ }, { "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": [ @@ -8455,6 +34250,31 @@ }, { "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": [ @@ -8465,6 +34285,36 @@ }, { "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": [ @@ -8475,6 +34325,31 @@ }, { "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": [ @@ -8485,6 +34360,36 @@ }, { "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": [ @@ -8495,6 +34400,36 @@ }, { "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": [ @@ -8505,6 +34440,36 @@ }, { "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": [ @@ -8515,6 +34480,31 @@ }, { "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": [ @@ -8525,6 +34515,36 @@ }, { "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": [ @@ -8535,6 +34555,31 @@ }, { "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": [ @@ -8545,6 +34590,31 @@ }, { "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": [ @@ -8555,6 +34625,31 @@ }, { "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": [ @@ -8565,6 +34660,36 @@ }, { "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": [ @@ -8575,6 +34700,31 @@ }, { "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": [ @@ -8585,6 +34735,31 @@ }, { "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": [ @@ -8595,6 +34770,31 @@ }, { "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": [ @@ -8605,6 +34805,31 @@ }, { "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": [ @@ -8615,6 +34840,36 @@ }, { "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": [ @@ -8625,6 +34880,31 @@ }, { "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": [ @@ -8635,6 +34915,36 @@ }, { "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": [ @@ -8645,6 +34955,36 @@ }, { "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": [ @@ -8655,6 +34995,36 @@ }, { "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": [ @@ -8665,6 +35035,36 @@ }, { "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": [ @@ -8675,6 +35075,31 @@ }, { "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": [ @@ -8685,6 +35110,31 @@ }, { "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": [ @@ -8695,6 +35145,36 @@ }, { "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": [ @@ -8705,6 +35185,31 @@ }, { "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": [ @@ -8715,6 +35220,31 @@ }, { "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": [ @@ -8725,6 +35255,31 @@ }, { "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": [ @@ -8735,6 +35290,31 @@ }, { "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": [ @@ -8745,6 +35325,36 @@ }, { "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": [ @@ -8755,6 +35365,31 @@ }, { "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": [ @@ -8765,6 +35400,31 @@ }, { "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": [ @@ -8775,6 +35435,36 @@ }, { "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": [ @@ -8785,6 +35475,31 @@ }, { "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": [ @@ -8795,6 +35510,31 @@ }, { "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": [ @@ -8805,6 +35545,31 @@ }, { "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": [ @@ -8815,6 +35580,31 @@ }, { "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": [ @@ -8825,6 +35615,36 @@ }, { "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": [ @@ -8835,6 +35655,36 @@ }, { "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": [ @@ -8845,6 +35695,31 @@ }, { "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": [ @@ -8855,6 +35730,36 @@ }, { "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": [ @@ -8865,6 +35770,31 @@ }, { "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": [ @@ -8875,6 +35805,36 @@ }, { "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": [ @@ -8885,6 +35845,31 @@ }, { "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": [ @@ -8895,6 +35880,31 @@ }, { "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": [ @@ -8905,6 +35915,36 @@ }, { "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": [ @@ -8915,6 +35955,36 @@ }, { "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": [ @@ -8925,6 +35995,31 @@ }, { "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": [ @@ -8935,6 +36030,31 @@ }, { "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": [ @@ -8945,6 +36065,36 @@ }, { "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": [ @@ -8955,6 +36105,36 @@ }, { "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": [ @@ -8965,6 +36145,31 @@ }, { "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": [ @@ -8975,6 +36180,36 @@ }, { "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": [ @@ -8985,6 +36220,31 @@ }, { "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": [ @@ -8995,6 +36255,36 @@ }, { "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": [ @@ -9005,6 +36295,36 @@ }, { "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": [ @@ -9015,6 +36335,31 @@ }, { "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": [ @@ -9025,6 +36370,31 @@ }, { "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": [ @@ -9035,6 +36405,31 @@ }, { "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": [ @@ -9045,6 +36440,36 @@ }, { "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": [ @@ -9055,6 +36480,31 @@ }, { "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": [ @@ -9065,6 +36515,31 @@ }, { "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": [ @@ -9075,6 +36550,36 @@ }, { "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": [ @@ -9085,6 +36590,36 @@ }, { "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": [ @@ -9095,6 +36630,36 @@ }, { "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": [ @@ -9105,6 +36670,31 @@ }, { "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": [ @@ -9115,6 +36705,36 @@ }, { "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": [ @@ -9125,6 +36745,36 @@ }, { "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": [ @@ -9135,6 +36785,36 @@ }, { "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": [ @@ -9145,6 +36825,31 @@ }, { "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": [ @@ -9155,6 +36860,36 @@ }, { "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": [ @@ -9165,6 +36900,31 @@ }, { "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": [ @@ -9175,6 +36935,31 @@ }, { "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": [ @@ -9185,6 +36970,31 @@ }, { "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": [ @@ -9195,6 +37005,31 @@ }, { "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": [ @@ -9205,6 +37040,31 @@ }, { "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": [ @@ -9215,6 +37075,31 @@ }, { "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": [ @@ -9225,6 +37110,31 @@ }, { "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": [ @@ -9235,6 +37145,31 @@ }, { "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": [ @@ -9245,6 +37180,36 @@ }, { "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": [ @@ -9255,6 +37220,36 @@ }, { "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": [ @@ -9265,6 +37260,36 @@ }, { "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": [ @@ -9275,6 +37300,36 @@ }, { "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": [ @@ -9285,6 +37340,36 @@ }, { "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": [ @@ -9295,6 +37380,31 @@ }, { "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": [ @@ -9305,6 +37415,36 @@ }, { "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": [ @@ -9315,6 +37455,31 @@ }, { "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": [ @@ -9325,6 +37490,36 @@ }, { "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": [ @@ -9335,6 +37530,31 @@ }, { "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": [ @@ -9345,6 +37565,31 @@ }, { "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": [ @@ -9355,6 +37600,36 @@ }, { "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": [ @@ -9365,6 +37640,36 @@ }, { "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": [ @@ -9375,6 +37680,31 @@ }, { "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": [ @@ -9385,6 +37715,36 @@ }, { "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": [ @@ -9395,6 +37755,36 @@ }, { "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": [ @@ -9405,6 +37795,36 @@ }, { "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": [ @@ -9415,6 +37835,31 @@ }, { "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": [ @@ -9425,6 +37870,31 @@ }, { "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": [ @@ -9435,6 +37905,36 @@ }, { "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": [ @@ -9445,6 +37945,36 @@ }, { "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": [ @@ -9455,6 +37985,36 @@ }, { "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": [ @@ -9465,6 +38025,36 @@ }, { "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": [ @@ -9475,6 +38065,36 @@ }, { "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": [ @@ -9485,6 +38105,36 @@ }, { "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": [ @@ -9495,6 +38145,31 @@ }, { "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": [ @@ -9505,6 +38180,36 @@ }, { "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": [ @@ -9515,6 +38220,31 @@ }, { "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": [ @@ -9525,6 +38255,31 @@ }, { "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": [ @@ -9535,6 +38290,31 @@ }, { "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": [ @@ -9545,6 +38325,31 @@ }, { "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": [ @@ -9555,6 +38360,31 @@ }, { "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": [ @@ -9565,6 +38395,31 @@ }, { "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": [ @@ -9575,6 +38430,36 @@ }, { "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": [ @@ -9585,6 +38470,31 @@ }, { "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": [ @@ -9595,6 +38505,36 @@ }, { "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": [ @@ -9605,6 +38545,36 @@ }, { "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": [ @@ -9615,6 +38585,31 @@ }, { "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": [ @@ -9625,6 +38620,36 @@ }, { "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": [ @@ -9635,6 +38660,31 @@ }, { "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": [ @@ -9645,6 +38695,36 @@ }, { "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": [ @@ -9655,6 +38735,36 @@ }, { "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": [ @@ -9665,6 +38775,36 @@ }, { "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": [ @@ -9675,6 +38815,31 @@ }, { "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": [ @@ -9685,6 +38850,31 @@ }, { "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": [ @@ -9695,6 +38885,31 @@ }, { "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": [ @@ -9705,6 +38920,31 @@ }, { "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": [ @@ -9715,6 +38955,31 @@ }, { "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": [ @@ -9725,6 +38990,31 @@ }, { "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": [ @@ -9735,6 +39025,36 @@ }, { "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": [ @@ -9745,6 +39065,36 @@ }, { "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": [ @@ -9755,6 +39105,36 @@ }, { "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": [ @@ -9765,6 +39145,36 @@ }, { "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": [ @@ -9775,6 +39185,31 @@ }, { "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": [ @@ -9785,6 +39220,31 @@ }, { "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": [ @@ -9795,6 +39255,31 @@ }, { "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": [ @@ -9805,6 +39290,36 @@ }, { "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": [ @@ -9815,6 +39330,31 @@ }, { "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": [ @@ -9825,6 +39365,31 @@ }, { "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": [ @@ -9835,6 +39400,36 @@ }, { "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": [ @@ -9845,6 +39440,36 @@ }, { "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": [ @@ -9855,6 +39480,31 @@ }, { "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": [ @@ -9865,6 +39515,31 @@ }, { "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": [ @@ -9875,6 +39550,36 @@ }, { "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": [ @@ -9885,6 +39590,31 @@ }, { "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": [ @@ -9895,6 +39625,36 @@ }, { "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": [ @@ -9905,6 +39665,36 @@ }, { "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": [ @@ -9915,6 +39705,36 @@ }, { "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": [ @@ -9925,6 +39745,36 @@ }, { "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": [ @@ -9935,6 +39785,31 @@ }, { "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": [ @@ -9945,6 +39820,36 @@ }, { "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": [ @@ -9955,6 +39860,36 @@ }, { "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": [ @@ -9965,6 +39900,31 @@ }, { "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": [ @@ -9975,6 +39935,36 @@ }, { "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": [ @@ -9985,6 +39975,36 @@ }, { "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": [ @@ -9995,6 +40015,31 @@ }, { "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": [ @@ -10005,6 +40050,36 @@ }, { "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": [ @@ -10015,6 +40090,36 @@ }, { "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": [ @@ -10025,6 +40130,31 @@ }, { "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": [ @@ -10035,6 +40165,36 @@ }, { "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": [ @@ -10045,6 +40205,31 @@ }, { "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": [ @@ -10055,6 +40240,36 @@ }, { "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": [ @@ -10065,6 +40280,36 @@ }, { "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": [ @@ -10075,6 +40320,36 @@ }, { "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": [ @@ -10085,6 +40360,36 @@ }, { "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": [ @@ -10095,6 +40400,31 @@ }, { "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": [ @@ -10105,6 +40435,31 @@ }, { "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": [ @@ -10115,6 +40470,36 @@ }, { "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": [ @@ -10125,6 +40510,31 @@ }, { "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": [ @@ -10135,6 +40545,36 @@ }, { "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": [ @@ -10145,6 +40585,36 @@ }, { "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": [ @@ -10155,6 +40625,31 @@ }, { "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": [ @@ -10165,6 +40660,36 @@ }, { "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": [ @@ -10175,6 +40700,31 @@ }, { "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": [ @@ -10185,6 +40735,36 @@ }, { "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": [ @@ -10195,6 +40775,36 @@ }, { "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": [ @@ -10205,6 +40815,31 @@ }, { "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": [ @@ -10215,6 +40850,36 @@ }, { "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": [ @@ -10225,6 +40890,31 @@ }, { "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": [ @@ -10235,6 +40925,36 @@ }, { "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": [ @@ -10245,6 +40965,36 @@ }, { "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": [ @@ -10255,6 +41005,31 @@ }, { "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": [ @@ -10265,6 +41040,36 @@ }, { "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": [ @@ -10275,6 +41080,36 @@ }, { "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": [ @@ -10285,6 +41120,36 @@ }, { "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": [ @@ -10295,6 +41160,36 @@ }, { "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": [ @@ -10305,6 +41200,36 @@ }, { "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": [ @@ -10315,6 +41240,36 @@ }, { "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": [ @@ -10325,6 +41280,36 @@ }, { "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": [ @@ -10335,6 +41320,31 @@ }, { "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": [ @@ -10345,6 +41355,36 @@ }, { "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": [ @@ -10355,6 +41395,36 @@ }, { "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": [ @@ -10365,6 +41435,31 @@ }, { "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": [ @@ -10375,6 +41470,36 @@ }, { "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": [ @@ -10385,6 +41510,36 @@ }, { "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": [ @@ -10395,6 +41550,36 @@ }, { "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": [ @@ -10405,6 +41590,31 @@ }, { "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": [ @@ -10415,6 +41625,31 @@ }, { "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": [ @@ -10425,6 +41660,31 @@ }, { "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": [ @@ -10435,6 +41695,31 @@ }, { "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": [ @@ -10445,6 +41730,31 @@ }, { "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": [ @@ -10455,6 +41765,31 @@ }, { "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": [ @@ -10465,6 +41800,36 @@ }, { "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": [ @@ -10475,6 +41840,31 @@ }, { "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": [ @@ -10485,6 +41875,36 @@ }, { "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": [ @@ -10495,6 +41915,31 @@ }, { "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": [ @@ -10505,6 +41950,31 @@ }, { "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": [ @@ -10515,6 +41985,31 @@ }, { "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": [ @@ -10525,6 +42020,36 @@ }, { "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": [ @@ -10535,6 +42060,31 @@ }, { "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": [ @@ -10545,6 +42095,36 @@ }, { "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": [ @@ -10555,6 +42135,36 @@ }, { "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": [ @@ -10565,6 +42175,31 @@ }, { "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": [ @@ -10575,6 +42210,31 @@ }, { "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": [ @@ -10585,6 +42245,31 @@ }, { "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": [ @@ -10595,6 +42280,36 @@ }, { "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": [ @@ -10605,6 +42320,36 @@ }, { "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": [ @@ -10615,6 +42360,31 @@ }, { "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": [ @@ -10625,6 +42395,36 @@ }, { "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": [ @@ -10635,6 +42435,36 @@ }, { "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": [ @@ -10645,6 +42475,31 @@ }, { "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": [ @@ -10655,6 +42510,31 @@ }, { "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": [ @@ -10665,6 +42545,31 @@ }, { "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": [ @@ -10675,6 +42580,31 @@ }, { "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": [ @@ -10685,6 +42615,31 @@ }, { "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": [ @@ -10695,6 +42650,31 @@ }, { "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": [ @@ -10705,6 +42685,31 @@ }, { "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": [ @@ -10715,6 +42720,31 @@ }, { "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": [ @@ -10725,6 +42755,31 @@ }, { "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": [ @@ -10735,6 +42790,31 @@ }, { "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": [ @@ -10745,6 +42825,31 @@ }, { "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": [ @@ -10755,6 +42860,31 @@ }, { "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": [ @@ -10765,6 +42895,36 @@ }, { "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": [ @@ -10775,6 +42935,31 @@ }, { "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": [ @@ -10785,6 +42970,36 @@ }, { "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": [ @@ -10795,6 +43010,36 @@ }, { "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": [ @@ -10805,6 +43050,36 @@ }, { "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": [ @@ -10815,6 +43090,36 @@ }, { "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": [ @@ -10825,6 +43130,36 @@ }, { "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": [ @@ -10835,6 +43170,36 @@ }, { "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": [ @@ -10845,6 +43210,36 @@ }, { "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": [ @@ -10855,6 +43250,36 @@ }, { "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": [ @@ -10865,6 +43290,52 @@ }, { "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": [ @@ -10875,6 +43346,36 @@ }, { "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": [ @@ -10885,6 +43386,31 @@ }, { "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": [ @@ -10895,6 +43421,31 @@ }, { "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": [ @@ -10905,6 +43456,31 @@ }, { "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": [ @@ -10915,6 +43491,31 @@ }, { "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": [ @@ -10925,6 +43526,31 @@ }, { "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": [ @@ -10935,6 +43561,31 @@ }, { "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": [ @@ -10945,6 +43596,31 @@ }, { "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": [ @@ -10955,6 +43631,31 @@ }, { "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": [ @@ -10965,6 +43666,31 @@ }, { "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": [ @@ -10975,6 +43701,36 @@ }, { "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": [ @@ -10985,6 +43741,36 @@ }, { "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": [ @@ -10995,6 +43781,36 @@ }, { "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": [ @@ -11005,6 +43821,36 @@ }, { "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": [ @@ -11015,6 +43861,52 @@ }, { "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": [ @@ -11025,6 +43917,31 @@ }, { "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": [ @@ -11035,6 +43952,31 @@ }, { "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": [ @@ -11045,6 +43987,31 @@ }, { "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": [ @@ -11055,6 +44022,36 @@ }, { "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": [ @@ -11065,6 +44062,36 @@ }, { "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": [ @@ -11075,6 +44102,36 @@ }, { "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": [ @@ -11085,6 +44142,31 @@ }, { "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": [ @@ -11095,6 +44177,31 @@ }, { "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": [ @@ -11105,6 +44212,31 @@ }, { "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": [ @@ -11115,6 +44247,36 @@ }, { "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": [ @@ -11125,6 +44287,36 @@ }, { "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": [ @@ -11135,6 +44327,36 @@ }, { "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": [ @@ -11145,6 +44367,36 @@ }, { "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": [ @@ -11155,6 +44407,36 @@ }, { "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": [ @@ -11165,6 +44447,63 @@ }, { "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": [ @@ -11175,6 +44514,52 @@ }, { "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": [ @@ -11185,6 +44570,36 @@ }, { "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": [ @@ -11195,6 +44610,36 @@ }, { "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": [ @@ -11205,6 +44650,36 @@ }, { "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": [ @@ -11215,6 +44690,36 @@ }, { "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": [ @@ -11225,6 +44730,36 @@ }, { "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": [ @@ -11235,6 +44770,36 @@ }, { "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": [ @@ -11245,6 +44810,36 @@ }, { "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": [ @@ -11255,6 +44850,36 @@ }, { "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": [ @@ -11265,6 +44890,52 @@ }, { "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": [ @@ -11275,6 +44946,36 @@ }, { "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": [ @@ -11285,6 +44986,36 @@ }, { "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": [ @@ -11295,6 +45026,36 @@ }, { "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": [ @@ -11305,6 +45066,36 @@ }, { "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": [ @@ -11315,6 +45106,36 @@ }, { "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": [ @@ -11325,6 +45146,36 @@ }, { "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": [ @@ -11335,6 +45186,36 @@ }, { "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": [ @@ -11345,6 +45226,36 @@ }, { "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": [ @@ -11355,6 +45266,36 @@ }, { "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": [ @@ -11365,6 +45306,31 @@ }, { "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": [ @@ -11375,6 +45341,31 @@ }, { "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": [ @@ -11385,6 +45376,31 @@ }, { "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": [ @@ -11395,6 +45411,48 @@ }, { "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": [ @@ -11405,6 +45463,48 @@ }, { "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": [ @@ -11415,6 +45515,31 @@ }, { "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": [ @@ -11425,6 +45550,31 @@ }, { "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": [ @@ -11435,6 +45585,31 @@ }, { "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": [ @@ -11445,6 +45620,31 @@ }, { "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": [ @@ -11455,6 +45655,31 @@ }, { "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": [ @@ -11465,6 +45690,31 @@ }, { "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": [ @@ -11475,6 +45725,31 @@ }, { "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": [ @@ -11485,6 +45760,36 @@ }, { "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": [ @@ -11495,6 +45800,36 @@ }, { "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": [ @@ -11505,6 +45840,36 @@ }, { "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": [ @@ -11515,6 +45880,36 @@ }, { "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": [ @@ -11525,6 +45920,36 @@ }, { "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": [ @@ -11535,6 +45960,36 @@ }, { "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": [ @@ -11545,6 +46000,36 @@ }, { "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": [ @@ -11555,6 +46040,36 @@ }, { "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": [ @@ -11565,6 +46080,36 @@ }, { "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": [ @@ -11575,6 +46120,36 @@ }, { "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": [ @@ -11585,6 +46160,36 @@ }, { "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": [ @@ -11595,6 +46200,36 @@ }, { "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": [ @@ -11605,6 +46240,36 @@ }, { "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": [ @@ -11615,6 +46280,36 @@ }, { "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": [ @@ -11625,6 +46320,36 @@ }, { "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": [ @@ -11635,6 +46360,36 @@ }, { "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": [ @@ -11645,6 +46400,36 @@ }, { "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": [ @@ -11655,6 +46440,36 @@ }, { "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": [ @@ -11665,6 +46480,36 @@ }, { "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": [ @@ -11675,6 +46520,36 @@ }, { "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": [ @@ -11685,6 +46560,36 @@ }, { "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": [ @@ -11695,6 +46600,36 @@ }, { "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": [ @@ -11705,6 +46640,36 @@ }, { "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": [ @@ -11715,6 +46680,52 @@ }, { "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": [ @@ -11725,6 +46736,36 @@ }, { "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": [ @@ -11735,6 +46776,36 @@ }, { "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": [ @@ -11745,6 +46816,36 @@ }, { "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": [ @@ -11755,6 +46856,36 @@ }, { "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": [ @@ -11765,6 +46896,36 @@ }, { "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": [ @@ -11775,6 +46936,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11785,6 +46971,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11795,6 +47006,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11805,6 +47041,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11815,6 +47076,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11825,6 +47111,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11835,6 +47146,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11845,6 +47181,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11855,6 +47216,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11865,6 +47251,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11875,6 +47286,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11885,6 +47321,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11895,6 +47356,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11905,6 +47391,36 @@ }, { "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": [ @@ -11915,6 +47431,36 @@ }, { "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": [ @@ -11925,6 +47471,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11935,6 +47506,31 @@ }, { "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": [ @@ -11945,6 +47541,31 @@ }, { "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": [ @@ -11955,6 +47576,31 @@ }, { "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": [ @@ -11965,6 +47611,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11975,6 +47646,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11985,6 +47681,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -11995,6 +47716,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12005,6 +47751,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12015,6 +47786,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12025,6 +47821,36 @@ }, { "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": [ @@ -12035,6 +47861,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12045,6 +47896,36 @@ }, { "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": [ @@ -12055,6 +47936,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12065,6 +47971,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12075,6 +48006,50 @@ }, { "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": [ @@ -12085,6 +48060,36 @@ }, { "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": [ @@ -12095,6 +48100,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12105,6 +48135,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12115,6 +48170,36 @@ }, { "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": [ @@ -12125,6 +48210,36 @@ }, { "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": [ @@ -12135,6 +48250,36 @@ }, { "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": [ @@ -12145,6 +48290,36 @@ }, { "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": [ @@ -12155,6 +48330,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12165,6 +48365,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12175,6 +48400,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12185,6 +48435,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12195,6 +48470,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12205,6 +48505,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12215,6 +48540,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12225,6 +48575,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12235,6 +48610,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12245,6 +48645,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12255,6 +48680,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12265,6 +48715,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12275,6 +48750,36 @@ }, { "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": [ @@ -12285,6 +48790,36 @@ }, { "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": [ @@ -12295,6 +48830,36 @@ }, { "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": [ @@ -12305,6 +48870,36 @@ }, { "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": [ @@ -12315,6 +48910,36 @@ }, { "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": [ @@ -12325,6 +48950,36 @@ }, { "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": [ @@ -12335,6 +48990,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12345,6 +49025,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12355,6 +49060,36 @@ }, { "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": [ @@ -12365,6 +49100,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12375,6 +49135,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12385,6 +49170,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12395,6 +49205,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12405,6 +49240,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12415,6 +49275,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12425,6 +49310,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12435,6 +49345,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12445,6 +49380,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12455,6 +49415,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12465,6 +49450,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12475,6 +49485,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12485,6 +49520,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12495,6 +49555,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12505,6 +49590,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12515,6 +49625,36 @@ }, { "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": [ @@ -12525,6 +49665,36 @@ }, { "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": [ @@ -12535,6 +49705,36 @@ }, { "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": [ @@ -12545,6 +49745,36 @@ }, { "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": [ @@ -12555,6 +49785,36 @@ }, { "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": [ @@ -12565,6 +49825,36 @@ }, { "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": [ @@ -12575,6 +49865,36 @@ }, { "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": [ @@ -12585,6 +49905,36 @@ }, { "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": [ @@ -12595,6 +49945,36 @@ }, { "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": [ @@ -12605,6 +49985,36 @@ }, { "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": [ @@ -12615,6 +50025,36 @@ }, { "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": [ @@ -12625,6 +50065,36 @@ }, { "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": [ @@ -12635,6 +50105,36 @@ }, { "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": [ @@ -12645,6 +50145,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12655,6 +50180,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12665,6 +50215,36 @@ }, { "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": [ @@ -12675,6 +50255,36 @@ }, { "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": [ @@ -12685,6 +50295,52 @@ }, { "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": [ @@ -12695,6 +50351,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12705,6 +50386,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12715,6 +50421,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12725,6 +50456,36 @@ }, { "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": [ @@ -12735,6 +50496,36 @@ }, { "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": [ @@ -12745,6 +50536,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12755,6 +50571,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12765,6 +50606,31 @@ }, { "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": [ @@ -12775,6 +50641,31 @@ }, { "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": [ @@ -12785,6 +50676,36 @@ }, { "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": [ @@ -12795,6 +50716,36 @@ }, { "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": [ @@ -12805,6 +50756,36 @@ }, { "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": [ @@ -12815,6 +50796,36 @@ }, { "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": [ @@ -12825,6 +50836,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12835,6 +50871,36 @@ }, { "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": [ @@ -12845,6 +50911,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12855,6 +50946,31 @@ }, { "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": [ @@ -12865,6 +50981,31 @@ }, { "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": [ @@ -12875,6 +51016,31 @@ }, { "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": [ @@ -12885,6 +51051,36 @@ }, { "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": [ @@ -12895,6 +51091,31 @@ }, { "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": [ @@ -12905,6 +51126,31 @@ }, { "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": [ @@ -12915,6 +51161,31 @@ }, { "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": [ @@ -12925,6 +51196,31 @@ }, { "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": [ @@ -12935,6 +51231,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -12945,6 +51266,36 @@ }, { "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": [ @@ -12955,6 +51306,36 @@ }, { "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": [ @@ -12965,6 +51346,36 @@ }, { "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": [ @@ -12975,6 +51386,36 @@ }, { "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": [ @@ -12985,6 +51426,31 @@ }, { "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": [ @@ -12995,6 +51461,36 @@ }, { "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": [ @@ -13005,6 +51501,57 @@ }, { "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": [ @@ -13015,6 +51562,36 @@ }, { "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": [ @@ -13025,6 +51602,36 @@ }, { "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": [ @@ -13035,6 +51642,36 @@ }, { "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": [ @@ -13045,6 +51682,36 @@ }, { "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": [ @@ -13055,6 +51722,36 @@ }, { "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": [ @@ -13065,6 +51762,36 @@ }, { "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": [ @@ -13075,6 +51802,36 @@ }, { "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": [ @@ -13085,6 +51842,36 @@ }, { "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": [ @@ -13095,6 +51882,36 @@ }, { "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": [ @@ -13105,6 +51922,36 @@ }, { "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": [ @@ -13115,6 +51962,36 @@ }, { "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": [ @@ -13125,6 +52002,36 @@ }, { "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": [ @@ -13135,6 +52042,36 @@ }, { "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": [ @@ -13145,6 +52082,36 @@ }, { "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": [ @@ -13155,6 +52122,36 @@ }, { "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": [ @@ -13165,6 +52162,36 @@ }, { "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": [ @@ -13175,6 +52202,36 @@ }, { "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": [ @@ -13185,6 +52242,36 @@ }, { "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": [ @@ -13195,6 +52282,36 @@ }, { "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": [ @@ -13205,6 +52322,36 @@ }, { "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": [ @@ -13215,6 +52362,36 @@ }, { "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": [ @@ -13225,6 +52402,36 @@ }, { "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": [ @@ -13235,6 +52442,36 @@ }, { "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": [ @@ -13245,6 +52482,36 @@ }, { "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": [ @@ -13255,6 +52522,36 @@ }, { "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": [ @@ -13265,6 +52562,36 @@ }, { "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": [ @@ -13275,6 +52602,36 @@ }, { "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": [ @@ -13285,6 +52642,36 @@ }, { "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": [ @@ -13295,6 +52682,36 @@ }, { "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": [ @@ -13305,6 +52722,36 @@ }, { "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": [ @@ -13315,6 +52762,36 @@ }, { "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": [ @@ -13325,6 +52802,36 @@ }, { "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": [ @@ -13335,6 +52842,36 @@ }, { "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": [ @@ -13345,6 +52882,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -13355,6 +52917,31 @@ }, { "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": [ @@ -13365,6 +52952,48 @@ }, { "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": [ @@ -13375,6 +53004,36 @@ }, { "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": [ @@ -13385,6 +53044,36 @@ }, { "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": [ @@ -13395,6 +53084,36 @@ }, { "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": [ @@ -13405,6 +53124,36 @@ }, { "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": [ @@ -13415,6 +53164,36 @@ }, { "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": [ @@ -13425,6 +53204,36 @@ }, { "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": [ @@ -13435,6 +53244,36 @@ }, { "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": [ @@ -13445,6 +53284,36 @@ }, { "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": [ @@ -13455,6 +53324,36 @@ }, { "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": [ @@ -13465,6 +53364,36 @@ }, { "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": [ @@ -13475,6 +53404,36 @@ }, { "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": [ @@ -13485,6 +53444,36 @@ }, { "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": [ @@ -13495,6 +53484,36 @@ }, { "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": [ @@ -13505,6 +53524,36 @@ }, { "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": [ @@ -13515,6 +53564,36 @@ }, { "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": [ @@ -13525,6 +53604,36 @@ }, { "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": [ @@ -13535,6 +53644,36 @@ }, { "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": [ @@ -13545,6 +53684,36 @@ }, { "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": [ @@ -13555,6 +53724,36 @@ }, { "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": [ @@ -13565,6 +53764,36 @@ }, { "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": [ @@ -13575,6 +53804,52 @@ }, { "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": [ @@ -13585,6 +53860,36 @@ }, { "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": [ @@ -13595,6 +53900,36 @@ }, { "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": [ @@ -13605,6 +53940,36 @@ }, { "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": [ @@ -13615,6 +53980,52 @@ }, { "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": [ @@ -13625,6 +54036,36 @@ }, { "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": [ @@ -13635,6 +54076,36 @@ }, { "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": [ @@ -13645,6 +54116,36 @@ }, { "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": [ @@ -13655,6 +54156,31 @@ }, { "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": [ @@ -13665,6 +54191,31 @@ }, { "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": [ @@ -13675,6 +54226,31 @@ }, { "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": [ @@ -13685,6 +54261,31 @@ }, { "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": [ @@ -13695,6 +54296,36 @@ }, { "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": [ @@ -13705,6 +54336,36 @@ }, { "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": [ @@ -13715,6 +54376,36 @@ }, { "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": [ @@ -13725,6 +54416,36 @@ }, { "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": [ @@ -13735,6 +54456,36 @@ }, { "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": [ @@ -13745,6 +54496,36 @@ }, { "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": [ @@ -13755,6 +54536,36 @@ }, { "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": [ @@ -13765,6 +54576,36 @@ }, { "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": [ @@ -13775,6 +54616,36 @@ }, { "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": [ @@ -13785,6 +54656,36 @@ }, { "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": [ @@ -13795,6 +54696,31 @@ }, { "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": [ @@ -13805,6 +54731,36 @@ }, { "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": [ @@ -13815,6 +54771,36 @@ }, { "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": [ @@ -13825,6 +54811,36 @@ }, { "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": [ @@ -13835,6 +54851,36 @@ }, { "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": [ @@ -13845,6 +54891,36 @@ }, { "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": [ @@ -13855,6 +54931,36 @@ }, { "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": [ @@ -13865,6 +54971,36 @@ }, { "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": [ @@ -13875,6 +55011,36 @@ }, { "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": [ @@ -13885,6 +55051,36 @@ }, { "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": [ @@ -13895,6 +55091,36 @@ }, { "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": [ @@ -13905,6 +55131,36 @@ }, { "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": [ @@ -13915,6 +55171,36 @@ }, { "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": [ @@ -13925,6 +55211,36 @@ }, { "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": [ @@ -13935,6 +55251,36 @@ }, { "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": [ @@ -13945,6 +55291,36 @@ }, { "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": [ @@ -13955,6 +55331,36 @@ }, { "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": [ @@ -13965,6 +55371,36 @@ }, { "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": [ @@ -13975,6 +55411,36 @@ }, { "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": [ @@ -13985,6 +55451,31 @@ }, { "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": [ @@ -13995,6 +55486,36 @@ }, { "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": [ @@ -14005,6 +55526,36 @@ }, { "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": [ @@ -14015,6 +55566,36 @@ }, { "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": [ @@ -14025,6 +55606,36 @@ }, { "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": [ @@ -14035,6 +55646,36 @@ }, { "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": [ @@ -14045,6 +55686,36 @@ }, { "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": [ @@ -14055,6 +55726,36 @@ }, { "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": [ @@ -14065,6 +55766,36 @@ }, { "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": [ @@ -14075,6 +55806,36 @@ }, { "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": [ @@ -14085,6 +55846,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -14095,6 +55881,52 @@ }, { "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": [ @@ -14105,6 +55937,36 @@ }, { "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": [ @@ -14115,6 +55977,36 @@ }, { "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": [ @@ -14125,6 +56017,52 @@ }, { "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": [ @@ -14135,6 +56073,36 @@ }, { "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": [ @@ -14145,6 +56113,36 @@ }, { "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": [ @@ -14155,6 +56153,36 @@ }, { "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": [ @@ -14165,6 +56193,36 @@ }, { "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": [ @@ -14175,6 +56233,36 @@ }, { "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": [ @@ -14185,6 +56273,36 @@ }, { "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": [ @@ -14195,6 +56313,31 @@ }, { "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": [ @@ -14205,6 +56348,36 @@ }, { "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": [ @@ -14215,6 +56388,36 @@ }, { "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": [ @@ -14225,6 +56428,36 @@ }, { "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": [ @@ -14235,6 +56468,52 @@ }, { "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": [ @@ -14245,6 +56524,36 @@ }, { "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": [ @@ -14255,6 +56564,36 @@ }, { "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": [ @@ -14265,6 +56604,31 @@ }, { "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": [ @@ -14275,6 +56639,31 @@ }, { "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": [ @@ -14285,6 +56674,31 @@ }, { "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": [ @@ -14295,6 +56709,31 @@ }, { "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": [ @@ -14305,6 +56744,31 @@ }, { "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": [ @@ -14315,6 +56779,31 @@ }, { "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": [ @@ -14325,6 +56814,48 @@ }, { "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": [ @@ -14335,6 +56866,31 @@ }, { "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": [ @@ -14345,6 +56901,31 @@ }, { "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": [ @@ -14355,6 +56936,31 @@ }, { "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": [ @@ -14365,6 +56971,31 @@ }, { "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": [ @@ -14375,6 +57006,31 @@ }, { "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": [ @@ -14385,6 +57041,36 @@ }, { "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": [ @@ -14395,6 +57081,36 @@ }, { "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": [ @@ -14405,6 +57121,36 @@ }, { "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": [ @@ -14415,6 +57161,36 @@ }, { "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": [ @@ -14425,6 +57201,36 @@ }, { "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": [ @@ -14435,6 +57241,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -14445,6 +57276,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -14455,6 +57311,31 @@ }, { "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": [ @@ -14465,6 +57346,31 @@ }, { "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": [ @@ -14475,6 +57381,31 @@ }, { "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": [ @@ -14485,6 +57416,31 @@ }, { "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": [ @@ -14495,6 +57451,31 @@ }, { "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": [ @@ -14505,6 +57486,31 @@ }, { "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": [ @@ -14515,6 +57521,31 @@ }, { "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": [ @@ -14525,6 +57556,36 @@ }, { "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": [ @@ -14535,6 +57596,36 @@ }, { "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": [ @@ -14545,6 +57636,36 @@ }, { "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": [ @@ -14555,6 +57676,36 @@ }, { "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": [ @@ -14565,6 +57716,36 @@ }, { "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": [ @@ -14575,6 +57756,36 @@ }, { "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": [ @@ -14585,6 +57796,31 @@ }, { "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": [ @@ -14595,6 +57831,31 @@ }, { "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": [ @@ -14605,6 +57866,48 @@ }, { "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": [ @@ -14615,6 +57918,36 @@ }, { "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": [ @@ -14625,6 +57958,36 @@ }, { "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": [ @@ -14635,6 +57998,36 @@ }, { "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": [ @@ -14645,6 +58038,36 @@ }, { "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": [ @@ -14655,6 +58078,36 @@ }, { "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": [ @@ -14665,6 +58118,36 @@ }, { "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": [ @@ -14675,6 +58158,36 @@ }, { "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": [ @@ -14685,6 +58198,36 @@ }, { "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": [ @@ -14695,6 +58238,36 @@ }, { "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": [ @@ -14705,6 +58278,36 @@ }, { "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": [ @@ -14715,6 +58318,36 @@ }, { "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": [ @@ -14725,6 +58358,86 @@ }, { "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": [ @@ -14735,6 +58448,50 @@ }, { "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": [ @@ -14745,6 +58502,36 @@ }, { "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": [ @@ -14755,6 +58542,36 @@ }, { "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": [ @@ -14765,6 +58582,36 @@ }, { "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": [ @@ -14775,6 +58622,36 @@ }, { "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": [ @@ -14785,6 +58662,36 @@ }, { "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": [ @@ -14795,6 +58702,36 @@ }, { "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": [ @@ -14805,6 +58742,36 @@ }, { "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": [ @@ -14815,6 +58782,31 @@ }, { "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": [ @@ -14825,6 +58817,31 @@ }, { "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": [ @@ -14835,6 +58852,36 @@ }, { "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": [ @@ -14845,6 +58892,52 @@ }, { "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": [ @@ -14855,6 +58948,36 @@ }, { "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": [ @@ -14865,6 +58988,36 @@ }, { "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": [ @@ -14875,6 +59028,36 @@ }, { "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": [ @@ -14885,6 +59068,36 @@ }, { "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": [ @@ -14895,6 +59108,36 @@ }, { "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": [ @@ -14905,6 +59148,49 @@ }, { "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": [ @@ -14915,6 +59201,36 @@ }, { "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": [ @@ -14925,6 +59241,49 @@ }, { "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": [ @@ -14935,6 +59294,36 @@ }, { "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": [ @@ -14945,6 +59334,36 @@ }, { "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": [ @@ -14955,6 +59374,36 @@ }, { "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": [ @@ -14965,6 +59414,36 @@ }, { "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": [ @@ -14975,6 +59454,36 @@ }, { "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": [ @@ -14985,6 +59494,36 @@ }, { "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": [ @@ -14995,6 +59534,36 @@ }, { "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": [ @@ -15005,6 +59574,36 @@ }, { "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": [ @@ -15015,6 +59614,36 @@ }, { "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": [ @@ -15025,6 +59654,36 @@ }, { "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": [ @@ -15035,6 +59694,36 @@ }, { "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": [ @@ -15045,6 +59734,36 @@ }, { "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": [ @@ -15055,6 +59774,36 @@ }, { "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": [ @@ -15065,6 +59814,36 @@ }, { "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": [ @@ -15075,6 +59854,36 @@ }, { "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": [ @@ -15085,6 +59894,36 @@ }, { "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": [ @@ -15095,6 +59934,52 @@ }, { "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": [ @@ -15105,6 +59990,31 @@ }, { "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": [ @@ -15115,6 +60025,31 @@ }, { "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": [ @@ -15125,6 +60060,31 @@ }, { "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": [ @@ -15135,6 +60095,31 @@ }, { "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": [ @@ -15145,6 +60130,31 @@ }, { "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": [ @@ -15155,6 +60165,36 @@ }, { "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": [ @@ -15165,6 +60205,36 @@ }, { "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": [ @@ -15175,6 +60245,36 @@ }, { "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": [ @@ -15185,6 +60285,36 @@ }, { "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": [ @@ -15195,6 +60325,36 @@ }, { "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": [ @@ -15205,6 +60365,36 @@ }, { "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": [ @@ -15215,6 +60405,36 @@ }, { "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": [ @@ -15225,6 +60445,36 @@ }, { "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": [ @@ -15235,6 +60485,36 @@ }, { "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": [ @@ -15245,6 +60525,36 @@ }, { "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": [ @@ -15253,9 +60563,38 @@ ] } }, - null, { "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": [ @@ -15266,6 +60605,36 @@ }, { "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": [ @@ -15276,6 +60645,36 @@ }, { "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": [ @@ -15286,6 +60685,36 @@ }, { "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": [ @@ -15296,6 +60725,36 @@ }, { "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": [ @@ -15306,6 +60765,36 @@ }, { "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": [ @@ -15316,6 +60805,36 @@ }, { "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": [ @@ -15326,6 +60845,52 @@ }, { "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": [ @@ -15336,6 +60901,36 @@ }, { "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": [ @@ -15346,6 +60941,36 @@ }, { "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": [ @@ -15356,6 +60981,36 @@ }, { "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": [ @@ -15366,6 +61021,36 @@ }, { "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": [ @@ -15376,6 +61061,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -15386,6 +61096,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -15396,6 +61131,36 @@ }, { "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": [ @@ -15406,6 +61171,36 @@ }, { "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": [ @@ -15416,6 +61211,36 @@ }, { "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": [ @@ -15426,6 +61251,31 @@ }, { "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": [ @@ -15436,6 +61286,31 @@ }, { "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": [ @@ -15446,6 +61321,31 @@ }, { "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": [ @@ -15456,6 +61356,36 @@ }, { "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": [ @@ -15466,6 +61396,36 @@ }, { "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": [ @@ -15476,6 +61436,36 @@ }, { "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": [ @@ -15486,6 +61476,36 @@ }, { "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": [ @@ -15496,6 +61516,50 @@ }, { "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": [ @@ -15506,6 +61570,36 @@ }, { "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": [ @@ -15516,6 +61610,36 @@ }, { "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": [ @@ -15526,6 +61650,36 @@ }, { "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": [ @@ -15536,6 +61690,36 @@ }, { "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": [ @@ -15546,6 +61730,36 @@ }, { "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": [ @@ -15556,6 +61770,36 @@ }, { "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": [ @@ -15566,6 +61810,36 @@ }, { "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": [ @@ -15576,6 +61850,36 @@ }, { "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": [ @@ -15586,6 +61890,36 @@ }, { "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": [ @@ -15596,6 +61930,49 @@ }, { "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": [ @@ -15606,6 +61983,36 @@ }, { "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": [ @@ -15616,6 +62023,36 @@ }, { "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": [ @@ -15626,6 +62063,36 @@ }, { "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": [ @@ -15636,6 +62103,49 @@ }, { "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": [ @@ -15646,6 +62156,49 @@ }, { "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": [ @@ -15656,6 +62209,31 @@ }, { "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": [ @@ -15666,6 +62244,31 @@ }, { "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": [ @@ -15676,6 +62279,31 @@ }, { "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": [ @@ -15686,6 +62314,31 @@ }, { "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": [ @@ -15696,6 +62349,31 @@ }, { "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": [ @@ -15706,6 +62384,31 @@ }, { "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": [ @@ -15716,6 +62419,36 @@ }, { "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": [ @@ -15726,6 +62459,31 @@ }, { "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": [ @@ -15736,6 +62494,36 @@ }, { "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": [ @@ -15746,6 +62534,36 @@ }, { "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": [ @@ -15756,6 +62574,31 @@ }, { "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": [ @@ -15766,6 +62609,36 @@ }, { "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": [ @@ -15776,6 +62649,36 @@ }, { "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": [ @@ -15786,6 +62689,31 @@ }, { "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": [ @@ -15796,6 +62724,31 @@ }, { "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": [ @@ -15806,6 +62759,31 @@ }, { "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": [ @@ -15816,6 +62794,31 @@ }, { "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": [ @@ -15826,6 +62829,31 @@ }, { "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": [ @@ -15836,6 +62864,31 @@ }, { "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": [ @@ -15846,6 +62899,31 @@ }, { "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": [ @@ -15856,6 +62934,31 @@ }, { "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": [ @@ -15866,6 +62969,31 @@ }, { "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": [ @@ -15876,6 +63004,31 @@ }, { "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": [ @@ -15886,6 +63039,31 @@ }, { "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": [ @@ -15896,6 +63074,31 @@ }, { "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": [ @@ -15906,6 +63109,31 @@ }, { "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": [ @@ -15916,6 +63144,31 @@ }, { "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": [ @@ -15926,6 +63179,31 @@ }, { "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": [ @@ -15936,6 +63214,31 @@ }, { "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": [ @@ -15946,6 +63249,31 @@ }, { "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": [ @@ -15956,6 +63284,36 @@ }, { "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": [ @@ -15966,6 +63324,31 @@ }, { "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": [ @@ -15976,6 +63359,31 @@ }, { "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": [ @@ -15986,6 +63394,36 @@ }, { "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": [ @@ -15996,6 +63434,31 @@ }, { "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": [ @@ -16006,6 +63469,36 @@ }, { "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": [ @@ -16016,6 +63509,31 @@ }, { "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": [ @@ -16026,6 +63544,36 @@ }, { "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": [ @@ -16036,6 +63584,31 @@ }, { "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": [ @@ -16046,6 +63619,36 @@ }, { "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": [ @@ -16056,6 +63659,36 @@ }, { "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": [ @@ -16066,6 +63699,36 @@ }, { "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": [ @@ -16076,6 +63739,36 @@ }, { "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": [ @@ -16086,6 +63779,36 @@ }, { "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": [ @@ -16096,6 +63819,36 @@ }, { "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": [ @@ -16106,6 +63859,36 @@ }, { "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": [ @@ -16116,6 +63899,36 @@ }, { "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": [ @@ -16126,6 +63939,36 @@ }, { "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": [ @@ -16136,6 +63979,36 @@ }, { "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": [ @@ -16146,6 +64019,36 @@ }, { "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": [ @@ -16156,6 +64059,50 @@ }, { "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": [ @@ -16166,6 +64113,36 @@ }, { "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": [ @@ -16176,6 +64153,36 @@ }, { "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": [ @@ -16186,6 +64193,36 @@ }, { "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": [ @@ -16196,6 +64233,36 @@ }, { "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": [ @@ -16206,6 +64273,36 @@ }, { "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": [ @@ -16216,6 +64313,57 @@ }, { "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": [ @@ -16226,6 +64374,57 @@ }, { "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": [ @@ -16236,6 +64435,36 @@ }, { "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": [ @@ -16246,6 +64475,36 @@ }, { "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": [ @@ -16256,6 +64515,36 @@ }, { "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": [ @@ -16266,6 +64555,36 @@ }, { "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": [ @@ -16276,6 +64595,36 @@ }, { "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": [ @@ -16286,6 +64635,36 @@ }, { "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": [ @@ -16296,6 +64675,36 @@ }, { "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": [ @@ -16306,6 +64715,36 @@ }, { "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": [ @@ -16316,6 +64755,36 @@ }, { "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": [ @@ -16326,6 +64795,36 @@ }, { "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": [ @@ -16336,6 +64835,36 @@ }, { "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": [ @@ -16346,6 +64875,36 @@ }, { "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": [ @@ -16356,6 +64915,36 @@ }, { "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": [ @@ -16366,6 +64955,36 @@ }, { "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": [ @@ -16376,6 +64995,36 @@ }, { "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": [ @@ -16386,6 +65035,36 @@ }, { "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": [ @@ -16396,6 +65075,36 @@ }, { "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": [ @@ -16406,6 +65115,50 @@ }, { "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": [ @@ -16416,6 +65169,36 @@ }, { "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": [ @@ -16426,6 +65209,36 @@ }, { "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": [ @@ -16436,6 +65249,36 @@ }, { "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": [ @@ -16446,6 +65289,36 @@ }, { "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": [ @@ -16456,6 +65329,36 @@ }, { "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": [ @@ -16466,6 +65369,36 @@ }, { "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": [ @@ -16476,6 +65409,36 @@ }, { "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": [ @@ -16486,6 +65449,36 @@ }, { "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": [ @@ -16496,6 +65489,36 @@ }, { "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": [ @@ -16506,6 +65529,31 @@ }, { "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": [ @@ -16516,6 +65564,31 @@ }, { "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": [ @@ -16526,6 +65599,36 @@ }, { "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": [ @@ -16536,6 +65639,36 @@ }, { "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": [ @@ -16546,6 +65679,31 @@ }, { "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": [ @@ -16556,6 +65714,36 @@ }, { "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": [ @@ -16566,6 +65754,31 @@ }, { "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": [ @@ -16576,6 +65789,31 @@ }, { "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": [ @@ -16586,6 +65824,31 @@ }, { "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": [ @@ -16596,6 +65859,31 @@ }, { "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": [ @@ -16606,6 +65894,31 @@ }, { "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": [ @@ -16616,6 +65929,36 @@ }, { "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": [ @@ -16626,6 +65969,63 @@ }, { "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": [ @@ -16636,6 +66036,36 @@ }, { "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": [ @@ -16646,6 +66076,36 @@ }, { "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": [ @@ -16654,9 +66114,33 @@ ] } }, - null, { "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": [ @@ -16667,6 +66151,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16677,6 +66186,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16687,6 +66221,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16697,6 +66256,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16707,6 +66291,31 @@ }, { "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": [ @@ -16717,6 +66326,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16727,6 +66361,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16737,6 +66396,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16747,6 +66431,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16757,6 +66466,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16767,6 +66501,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16777,6 +66536,52 @@ }, { "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": [ @@ -16787,6 +66592,36 @@ }, { "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": [ @@ -16797,6 +66632,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16807,6 +66667,36 @@ }, { "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": [ @@ -16817,6 +66707,36 @@ }, { "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": [ @@ -16827,6 +66747,36 @@ }, { "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": [ @@ -16837,6 +66787,36 @@ }, { "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": [ @@ -16847,6 +66827,36 @@ }, { "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": [ @@ -16857,6 +66867,36 @@ }, { "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": [ @@ -16867,6 +66907,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16877,6 +66942,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16887,6 +66977,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16897,6 +67012,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16907,6 +67047,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16917,6 +67082,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16927,6 +67117,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16937,6 +67152,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16947,6 +67187,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16957,6 +67222,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16967,6 +67257,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16977,6 +67292,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16987,6 +67327,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -16997,6 +67362,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17007,6 +67397,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17017,6 +67432,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17027,6 +67467,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17037,6 +67502,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17047,6 +67537,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17057,6 +67572,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17067,6 +67607,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17077,6 +67642,36 @@ }, { "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": [ @@ -17087,6 +67682,36 @@ }, { "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": [ @@ -17097,6 +67722,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17107,6 +67757,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17117,6 +67792,31 @@ }, { "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": [ @@ -17127,6 +67827,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17137,6 +67862,31 @@ }, { "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": [ @@ -17147,6 +67897,31 @@ }, { "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": [ @@ -17157,6 +67932,31 @@ }, { "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": [ @@ -17167,6 +67967,31 @@ }, { "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": [ @@ -17177,6 +68002,31 @@ }, { "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": [ @@ -17187,6 +68037,31 @@ }, { "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": [ @@ -17197,6 +68072,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17207,6 +68107,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17217,6 +68142,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17227,6 +68177,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17237,6 +68212,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17247,6 +68247,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17257,6 +68282,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17267,6 +68317,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17277,6 +68352,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17287,6 +68387,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17297,6 +68422,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17307,6 +68457,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17317,6 +68492,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17327,6 +68527,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17337,6 +68562,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17347,6 +68597,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17357,6 +68632,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17367,6 +68667,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17377,6 +68702,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17387,6 +68737,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17397,6 +68772,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17407,6 +68807,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17417,6 +68842,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17427,6 +68877,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17437,6 +68912,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17447,6 +68947,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17457,6 +68982,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17467,6 +69017,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17477,6 +69052,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17487,6 +69087,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17497,6 +69122,31 @@ }, { "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": [ @@ -17507,6 +69157,31 @@ }, { "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": [ @@ -17517,6 +69192,31 @@ }, { "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": [ @@ -17527,6 +69227,31 @@ }, { "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": [ @@ -17537,6 +69262,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17547,6 +69297,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17557,6 +69332,31 @@ }, { "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": [ @@ -17567,6 +69367,31 @@ }, { "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": [ @@ -17577,6 +69402,31 @@ }, { "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": [ @@ -17587,6 +69437,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17597,6 +69472,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17607,6 +69507,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17617,6 +69542,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17627,6 +69577,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17637,6 +69612,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17647,6 +69647,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17657,6 +69682,31 @@ }, { "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": [ @@ -17667,6 +69717,31 @@ }, { "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": [ @@ -17677,6 +69752,31 @@ }, { "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": [ @@ -17687,6 +69787,31 @@ }, { "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": [ @@ -17697,6 +69822,31 @@ }, { "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": [ @@ -17707,6 +69857,31 @@ }, { "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": [ @@ -17717,6 +69892,31 @@ }, { "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": [ @@ -17727,6 +69927,31 @@ }, { "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": [ @@ -17737,6 +69962,31 @@ }, { "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": [ @@ -17747,6 +69997,31 @@ }, { "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": [ @@ -17757,6 +70032,31 @@ }, { "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": [ @@ -17767,6 +70067,31 @@ }, { "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": [ @@ -17777,6 +70102,31 @@ }, { "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": [ @@ -17787,6 +70137,31 @@ }, { "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": [ @@ -17797,6 +70172,31 @@ }, { "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": [ @@ -17807,6 +70207,31 @@ }, { "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": [ @@ -17817,6 +70242,31 @@ }, { "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": [ @@ -17827,6 +70277,31 @@ }, { "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": [ @@ -17837,6 +70312,36 @@ }, { "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": [ @@ -17847,6 +70352,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -17857,6 +70387,31 @@ }, { "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": [ @@ -17867,6 +70422,32 @@ }, { "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": [ @@ -17877,6 +70458,31 @@ }, { "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": [ @@ -17887,6 +70493,36 @@ }, { "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": [ @@ -17897,6 +70533,31 @@ }, { "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": [ @@ -17907,6 +70568,32 @@ }, { "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": [ @@ -17917,6 +70604,32 @@ }, { "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": [ @@ -17927,6 +70640,31 @@ }, { "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": [ @@ -17937,6 +70675,31 @@ }, { "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": [ @@ -17947,6 +70710,32 @@ }, { "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": [ @@ -17957,6 +70746,32 @@ }, { "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": [ @@ -17967,6 +70782,32 @@ }, { "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": [ @@ -17977,6 +70818,31 @@ }, { "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": [ @@ -17987,6 +70853,32 @@ }, { "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": [ @@ -17997,6 +70889,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -18007,6 +70924,32 @@ }, { "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": [ @@ -18017,6 +70960,32 @@ }, { "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": [ @@ -18027,6 +70996,32 @@ }, { "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": [ @@ -18037,6 +71032,32 @@ }, { "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": [ @@ -18047,6 +71068,32 @@ }, { "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": [ @@ -18057,6 +71104,32 @@ }, { "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": [ @@ -18067,6 +71140,32 @@ }, { "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": [ @@ -18077,6 +71176,32 @@ }, { "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": [ @@ -18087,6 +71212,32 @@ }, { "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": [ @@ -18097,6 +71248,32 @@ }, { "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": [ @@ -18107,6 +71284,31 @@ }, { "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": [ @@ -18117,6 +71319,31 @@ }, { "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": [ @@ -18127,6 +71354,31 @@ }, { "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": [ @@ -18137,6 +71389,31 @@ }, { "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": [ @@ -18147,6 +71424,32 @@ }, { "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": [ @@ -18157,6 +71460,32 @@ }, { "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": [ @@ -18167,6 +71496,32 @@ }, { "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": [ @@ -18177,6 +71532,31 @@ }, { "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": [ @@ -18187,6 +71567,31 @@ }, { "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": [ @@ -18197,6 +71602,31 @@ }, { "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": [ @@ -18207,6 +71637,31 @@ }, { "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": [ @@ -18217,6 +71672,32 @@ }, { "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": [ @@ -18227,6 +71708,32 @@ }, { "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": [ @@ -18237,6 +71744,32 @@ }, { "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": [ @@ -18247,6 +71780,31 @@ }, { "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": [ @@ -18257,6 +71815,31 @@ }, { "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": [ @@ -18267,6 +71850,32 @@ }, { "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": [ @@ -18277,6 +71886,32 @@ }, { "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": [ @@ -18287,6 +71922,32 @@ }, { "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": [ @@ -18297,6 +71958,32 @@ }, { "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": [ @@ -18307,6 +71994,32 @@ }, { "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": [ @@ -18317,6 +72030,32 @@ }, { "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": [ @@ -18327,6 +72066,32 @@ }, { "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": [ @@ -18337,6 +72102,32 @@ }, { "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": [ @@ -18347,6 +72138,32 @@ }, { "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": [ @@ -18357,6 +72174,32 @@ }, { "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": [ @@ -18367,6 +72210,32 @@ }, { "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": [ @@ -18377,6 +72246,32 @@ }, { "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": [ @@ -18387,6 +72282,32 @@ }, { "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": [ @@ -18397,6 +72318,32 @@ }, { "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": [ @@ -18407,6 +72354,32 @@ }, { "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": [ @@ -18417,6 +72390,32 @@ }, { "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": [ @@ -18427,6 +72426,32 @@ }, { "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": [ @@ -18437,6 +72462,32 @@ }, { "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": [ @@ -18447,6 +72498,31 @@ }, { "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": [ @@ -18457,6 +72533,31 @@ }, { "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": [ @@ -18467,6 +72568,31 @@ }, { "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": [ @@ -18477,6 +72603,31 @@ }, { "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": [ @@ -18487,6 +72638,32 @@ }, { "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": [ @@ -18497,6 +72674,32 @@ }, { "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": [ @@ -18507,6 +72710,31 @@ }, { "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": [ @@ -18517,6 +72745,31 @@ }, { "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": [ @@ -18527,6 +72780,31 @@ }, { "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": [ @@ -18537,6 +72815,31 @@ }, { "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": [ @@ -18547,6 +72850,31 @@ }, { "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": [ @@ -18557,6 +72885,31 @@ }, { "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": [ @@ -18567,6 +72920,31 @@ }, { "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": [ @@ -18577,6 +72955,31 @@ }, { "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": [ @@ -18587,6 +72990,32 @@ }, { "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": [ @@ -18597,6 +73026,31 @@ }, { "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": [ @@ -18607,6 +73061,31 @@ }, { "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": [ @@ -18617,6 +73096,32 @@ }, { "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": [ @@ -18627,6 +73132,31 @@ }, { "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": [ @@ -18637,6 +73167,32 @@ }, { "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": [ @@ -18647,6 +73203,36 @@ }, { "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": [ @@ -18657,6 +73243,32 @@ }, { "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": [ @@ -18667,6 +73279,32 @@ }, { "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": [ @@ -18677,6 +73315,32 @@ }, { "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": [ @@ -18687,6 +73351,32 @@ }, { "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": [ @@ -18697,6 +73387,32 @@ }, { "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": [ @@ -18707,6 +73423,32 @@ }, { "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": [ @@ -18717,6 +73459,32 @@ }, { "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": [ @@ -18727,6 +73495,32 @@ }, { "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": [ @@ -18737,6 +73531,32 @@ }, { "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": [ @@ -18747,6 +73567,32 @@ }, { "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": [ @@ -18757,6 +73603,32 @@ }, { "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": [ @@ -18767,6 +73639,32 @@ }, { "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": [ @@ -18777,6 +73675,32 @@ }, { "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": [ @@ -18787,6 +73711,32 @@ }, { "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": [ @@ -18797,6 +73747,32 @@ }, { "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": [ @@ -18807,6 +73783,32 @@ }, { "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": [ @@ -18817,6 +73819,32 @@ }, { "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": [ @@ -18827,6 +73855,32 @@ }, { "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": [ @@ -18837,6 +73891,32 @@ }, { "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": [ @@ -18847,6 +73927,31 @@ }, { "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": [ @@ -18857,6 +73962,32 @@ }, { "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": [ @@ -18867,6 +73998,32 @@ }, { "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": [ @@ -18877,6 +74034,32 @@ }, { "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": [ @@ -18887,6 +74070,32 @@ }, { "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": [ @@ -18897,6 +74106,31 @@ }, { "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": [ @@ -18907,6 +74141,31 @@ }, { "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": [ @@ -18917,6 +74176,31 @@ }, { "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": [ @@ -18927,6 +74211,31 @@ }, { "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": [ @@ -18937,6 +74246,31 @@ }, { "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": [ @@ -18947,6 +74281,36 @@ }, { "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": [ @@ -18957,6 +74321,36 @@ }, { "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": [ @@ -18967,6 +74361,36 @@ }, { "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": [ @@ -18977,6 +74401,36 @@ }, { "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": [ @@ -18987,6 +74441,31 @@ }, { "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": [ @@ -18997,6 +74476,31 @@ }, { "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": [ @@ -19007,6 +74511,31 @@ }, { "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": [ @@ -19017,6 +74546,31 @@ }, { "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": [ @@ -19027,6 +74581,31 @@ }, { "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": [ @@ -19037,6 +74616,32 @@ }, { "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": [ @@ -19047,6 +74652,32 @@ }, { "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": [ @@ -19057,6 +74688,32 @@ }, { "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": [ @@ -19067,6 +74724,32 @@ }, { "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": [ @@ -19077,6 +74760,32 @@ }, { "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": [ @@ -19087,6 +74796,32 @@ }, { "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": [ @@ -19097,6 +74832,31 @@ }, { "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": [ @@ -19107,6 +74867,31 @@ }, { "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": [ @@ -19117,6 +74902,31 @@ }, { "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": [ @@ -19127,6 +74937,36 @@ }, { "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": [ @@ -19137,6 +74977,36 @@ }, { "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": [ @@ -19147,6 +75017,31 @@ }, { "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": [ @@ -19157,6 +75052,31 @@ }, { "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": [ @@ -19167,6 +75087,32 @@ }, { "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": [ @@ -19177,6 +75123,32 @@ }, { "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": [ @@ -19187,6 +75159,31 @@ }, { "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": [ @@ -19197,6 +75194,31 @@ }, { "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": [ @@ -19207,6 +75229,32 @@ }, { "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": [ @@ -19217,6 +75265,31 @@ }, { "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": [ @@ -19227,6 +75300,32 @@ }, { "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": [ @@ -19237,6 +75336,32 @@ }, { "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": [ @@ -19247,6 +75372,32 @@ }, { "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": [ @@ -19257,6 +75408,32 @@ }, { "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": [ @@ -19267,6 +75444,32 @@ }, { "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": [ @@ -19277,6 +75480,36 @@ }, { "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": [ @@ -19287,6 +75520,36 @@ }, { "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": [ @@ -19297,6 +75560,36 @@ }, { "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": [ @@ -19307,6 +75600,36 @@ }, { "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": [ @@ -19317,6 +75640,36 @@ }, { "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": [ @@ -19327,6 +75680,36 @@ }, { "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": [ @@ -19337,6 +75720,36 @@ }, { "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": [ @@ -19347,6 +75760,36 @@ }, { "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": [ @@ -19357,6 +75800,36 @@ }, { "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": [ @@ -19367,6 +75840,36 @@ }, { "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": [ @@ -19377,6 +75880,36 @@ }, { "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": [ @@ -19387,6 +75920,36 @@ }, { "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": [ @@ -19397,6 +75960,36 @@ }, { "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": [ @@ -19407,6 +76000,31 @@ }, { "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": [ @@ -19417,6 +76035,31 @@ }, { "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": [ @@ -19427,6 +76070,31 @@ }, { "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": [ @@ -19437,6 +76105,31 @@ }, { "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": [ @@ -19447,6 +76140,31 @@ }, { "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": [ @@ -19457,6 +76175,36 @@ }, { "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": [ @@ -19467,6 +76215,36 @@ }, { "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": [ @@ -19477,6 +76255,36 @@ }, { "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": [ @@ -19487,6 +76295,31 @@ }, { "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": [ @@ -19497,6 +76330,31 @@ }, { "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": [ @@ -19507,6 +76365,31 @@ }, { "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": [ @@ -19517,6 +76400,31 @@ }, { "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": [ @@ -19527,6 +76435,31 @@ }, { "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": [ @@ -19537,6 +76470,31 @@ }, { "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": [ @@ -19547,6 +76505,31 @@ }, { "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": [ @@ -19557,6 +76540,31 @@ }, { "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": [ @@ -19567,6 +76575,31 @@ }, { "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": [ @@ -19577,6 +76610,31 @@ }, { "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": [ @@ -19587,6 +76645,31 @@ }, { "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": [ @@ -19597,6 +76680,31 @@ }, { "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": [ @@ -19607,6 +76715,31 @@ }, { "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": [ @@ -19617,6 +76750,31 @@ }, { "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": [ @@ -19627,6 +76785,31 @@ }, { "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": [ @@ -19637,6 +76820,31 @@ }, { "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": [ @@ -19647,6 +76855,31 @@ }, { "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": [ @@ -19657,6 +76890,31 @@ }, { "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": [ @@ -19667,6 +76925,31 @@ }, { "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": [ @@ -19677,6 +76960,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -19687,6 +76995,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -19697,6 +77030,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -19707,6 +77065,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -19717,6 +77100,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -19727,6 +77135,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -19737,6 +77170,31 @@ }, { "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": [ @@ -19747,6 +77205,31 @@ }, { "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": [ @@ -19757,6 +77240,31 @@ }, { "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": [ @@ -19767,6 +77275,31 @@ }, { "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": [ @@ -19777,6 +77310,31 @@ }, { "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": [ @@ -19787,6 +77345,31 @@ }, { "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": [ @@ -19797,6 +77380,31 @@ }, { "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": [ @@ -19807,6 +77415,31 @@ }, { "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": [ @@ -19817,6 +77450,31 @@ }, { "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": [ @@ -19827,6 +77485,31 @@ }, { "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": [ @@ -19837,6 +77520,31 @@ }, { "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": [ @@ -19847,6 +77555,31 @@ }, { "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": [ @@ -19857,6 +77590,31 @@ }, { "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": [ @@ -19867,6 +77625,31 @@ }, { "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": [ @@ -19877,6 +77660,31 @@ }, { "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": [ @@ -19887,6 +77695,31 @@ }, { "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": [ @@ -19897,6 +77730,31 @@ }, { "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": [ @@ -19907,6 +77765,31 @@ }, { "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": [ @@ -19917,6 +77800,31 @@ }, { "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": [ @@ -19927,6 +77835,31 @@ }, { "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": [ @@ -19937,6 +77870,31 @@ }, { "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": [ @@ -19947,6 +77905,31 @@ }, { "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": [ @@ -19957,6 +77940,31 @@ }, { "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": [ @@ -19967,6 +77975,36 @@ }, { "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": [ @@ -19977,6 +78015,36 @@ }, { "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": [ @@ -19987,6 +78055,36 @@ }, { "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": [ @@ -19997,6 +78095,36 @@ }, { "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": [ @@ -20007,6 +78135,36 @@ }, { "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": [ @@ -20017,6 +78175,31 @@ }, { "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": [ @@ -20027,6 +78210,31 @@ }, { "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": [ @@ -20037,6 +78245,31 @@ }, { "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": [ @@ -20047,6 +78280,31 @@ }, { "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": [ @@ -20057,6 +78315,36 @@ }, { "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": [ @@ -20067,6 +78355,36 @@ }, { "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": [ @@ -20077,6 +78395,36 @@ }, { "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": [ @@ -20087,6 +78435,31 @@ }, { "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": [ @@ -20097,6 +78470,31 @@ }, { "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": [ @@ -20107,6 +78505,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20117,6 +78540,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20127,6 +78575,31 @@ }, { "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": [ @@ -20137,6 +78610,36 @@ }, { "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": [ @@ -20147,6 +78650,36 @@ }, { "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": [ @@ -20157,6 +78690,36 @@ }, { "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": [ @@ -20167,6 +78730,36 @@ }, { "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": [ @@ -20177,6 +78770,36 @@ }, { "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": [ @@ -20187,6 +78810,36 @@ }, { "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": [ @@ -20197,6 +78850,36 @@ }, { "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": [ @@ -20207,6 +78890,36 @@ }, { "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": [ @@ -20217,6 +78930,36 @@ }, { "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": [ @@ -20227,6 +78970,36 @@ }, { "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": [ @@ -20237,6 +79010,36 @@ }, { "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": [ @@ -20247,6 +79050,36 @@ }, { "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": [ @@ -20257,6 +79090,36 @@ }, { "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": [ @@ -20267,6 +79130,36 @@ }, { "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": [ @@ -20277,6 +79170,36 @@ }, { "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": [ @@ -20287,6 +79210,36 @@ }, { "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": [ @@ -20297,6 +79250,36 @@ }, { "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": [ @@ -20307,6 +79290,36 @@ }, { "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": [ @@ -20317,6 +79330,36 @@ }, { "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": [ @@ -20327,6 +79370,36 @@ }, { "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": [ @@ -20337,6 +79410,31 @@ }, { "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": [ @@ -20347,6 +79445,36 @@ }, { "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": [ @@ -20357,6 +79485,36 @@ }, { "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": [ @@ -20367,6 +79525,36 @@ }, { "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": [ @@ -20377,6 +79565,36 @@ }, { "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": [ @@ -20387,6 +79605,36 @@ }, { "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": [ @@ -20397,6 +79645,36 @@ }, { "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": [ @@ -20407,6 +79685,36 @@ }, { "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": [ @@ -20417,6 +79725,36 @@ }, { "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": [ @@ -20427,6 +79765,36 @@ }, { "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": [ @@ -20437,6 +79805,36 @@ }, { "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": [ @@ -20447,6 +79845,36 @@ }, { "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": [ @@ -20457,6 +79885,36 @@ }, { "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": [ @@ -20467,6 +79925,36 @@ }, { "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": [ @@ -20477,6 +79965,36 @@ }, { "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": [ @@ -20487,6 +80005,36 @@ }, { "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": [ @@ -20497,6 +80045,36 @@ }, { "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": [ @@ -20507,6 +80085,36 @@ }, { "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": [ @@ -20517,6 +80125,36 @@ }, { "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": [ @@ -20527,6 +80165,36 @@ }, { "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": [ @@ -20537,6 +80205,36 @@ }, { "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": [ @@ -20547,6 +80245,36 @@ }, { "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": [ @@ -20557,6 +80285,36 @@ }, { "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": [ @@ -20567,6 +80325,36 @@ }, { "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": [ @@ -20577,6 +80365,36 @@ }, { "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": [ @@ -20587,6 +80405,36 @@ }, { "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": [ @@ -20597,6 +80445,36 @@ }, { "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": [ @@ -20607,6 +80485,31 @@ }, { "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": [ @@ -20617,6 +80520,31 @@ }, { "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": [ @@ -20627,6 +80555,31 @@ }, { "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": [ @@ -20637,6 +80590,31 @@ }, { "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": [ @@ -20647,6 +80625,31 @@ }, { "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": [ @@ -20657,6 +80660,31 @@ }, { "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": [ @@ -20667,6 +80695,31 @@ }, { "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": [ @@ -20677,6 +80730,31 @@ }, { "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": [ @@ -20687,6 +80765,31 @@ }, { "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": [ @@ -20697,6 +80800,31 @@ }, { "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": [ @@ -20707,6 +80835,31 @@ }, { "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": [ @@ -20717,6 +80870,31 @@ }, { "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": [ @@ -20727,6 +80905,36 @@ }, { "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": [ @@ -20737,6 +80945,36 @@ }, { "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": [ @@ -20747,6 +80985,36 @@ }, { "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": [ @@ -20757,6 +81025,31 @@ }, { "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": [ @@ -20767,6 +81060,36 @@ }, { "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": [ @@ -20777,6 +81100,36 @@ }, { "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": [ @@ -20787,6 +81140,36 @@ }, { "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": [ @@ -20797,6 +81180,36 @@ }, { "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": [ @@ -20807,6 +81220,36 @@ }, { "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": [ @@ -20817,6 +81260,36 @@ }, { "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": [ @@ -20827,6 +81300,36 @@ }, { "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": [ @@ -20837,6 +81340,31 @@ }, { "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": [ @@ -20847,6 +81375,31 @@ }, { "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": [ @@ -20857,6 +81410,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20867,6 +81445,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20877,6 +81480,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20887,6 +81515,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20897,6 +81550,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20907,6 +81585,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20917,6 +81620,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20927,6 +81655,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20937,6 +81690,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20947,6 +81725,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20957,6 +81760,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20967,6 +81795,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20977,6 +81830,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20987,6 +81865,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -20997,6 +81900,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21007,6 +81935,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21017,6 +81970,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21027,6 +82005,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21037,6 +82040,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21047,6 +82075,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21057,6 +82110,31 @@ }, { "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": [ @@ -21067,6 +82145,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21077,6 +82180,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21087,6 +82215,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21097,6 +82250,31 @@ }, { "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": [ @@ -21107,6 +82285,31 @@ }, { "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": [ @@ -21117,6 +82320,31 @@ }, { "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": [ @@ -21127,6 +82355,31 @@ }, { "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": [ @@ -21137,6 +82390,31 @@ }, { "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": [ @@ -21147,6 +82425,31 @@ }, { "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": [ @@ -21157,6 +82460,31 @@ }, { "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": [ @@ -21167,6 +82495,31 @@ }, { "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": [ @@ -21177,6 +82530,31 @@ }, { "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": [ @@ -21187,6 +82565,31 @@ }, { "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": [ @@ -21197,6 +82600,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21207,6 +82635,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21217,6 +82670,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21227,6 +82705,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21237,6 +82740,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21247,6 +82775,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21257,6 +82810,36 @@ }, { "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": [ @@ -21267,6 +82850,36 @@ }, { "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": [ @@ -21277,6 +82890,36 @@ }, { "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": [ @@ -21287,6 +82930,36 @@ }, { "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": [ @@ -21297,6 +82970,36 @@ }, { "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": [ @@ -21307,6 +83010,36 @@ }, { "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": [ @@ -21317,6 +83050,36 @@ }, { "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": [ @@ -21327,6 +83090,36 @@ }, { "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": [ @@ -21337,6 +83130,36 @@ }, { "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": [ @@ -21347,6 +83170,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21357,6 +83205,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21367,6 +83240,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21377,6 +83275,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21387,6 +83310,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -21397,6 +83345,31 @@ }, { "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": [ @@ -21407,6 +83380,31 @@ }, { "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": [ @@ -21417,6 +83415,31 @@ }, { "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": [ @@ -21427,6 +83450,31 @@ }, { "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": [ @@ -21437,6 +83485,31 @@ }, { "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": [ @@ -21447,6 +83520,36 @@ }, { "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": [ @@ -21457,6 +83560,36 @@ }, { "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": [ @@ -21467,6 +83600,36 @@ }, { "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": [ @@ -21477,6 +83640,31 @@ }, { "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": [ @@ -21487,6 +83675,31 @@ }, { "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": [ @@ -21497,6 +83710,31 @@ }, { "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": [ @@ -21507,6 +83745,36 @@ }, { "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": [ @@ -21517,6 +83785,36 @@ }, { "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": [ @@ -21527,6 +83825,36 @@ }, { "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": [ @@ -21537,6 +83865,31 @@ }, { "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": [ @@ -21547,6 +83900,31 @@ }, { "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": [ @@ -21557,6 +83935,31 @@ }, { "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": [ @@ -21567,6 +83970,31 @@ }, { "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": [ @@ -21577,6 +84005,31 @@ }, { "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": [ @@ -21587,6 +84040,31 @@ }, { "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": [ @@ -21597,6 +84075,31 @@ }, { "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": [ @@ -21607,6 +84110,31 @@ }, { "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": [ @@ -21617,6 +84145,31 @@ }, { "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": [ @@ -21627,6 +84180,31 @@ }, { "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": [ @@ -21637,6 +84215,31 @@ }, { "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": [ @@ -21647,6 +84250,31 @@ }, { "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": [ @@ -21657,6 +84285,31 @@ }, { "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": [ @@ -21667,6 +84320,31 @@ }, { "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": [ @@ -21677,6 +84355,31 @@ }, { "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": [ @@ -21687,6 +84390,31 @@ }, { "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": [ @@ -21697,6 +84425,31 @@ }, { "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": [ @@ -21707,6 +84460,31 @@ }, { "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": [ @@ -21717,6 +84495,31 @@ }, { "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": [ @@ -21727,6 +84530,31 @@ }, { "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": [ @@ -21737,6 +84565,31 @@ }, { "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": [ @@ -21747,6 +84600,31 @@ }, { "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": [ @@ -21757,6 +84635,31 @@ }, { "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": [ @@ -21767,6 +84670,31 @@ }, { "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": [ @@ -21777,6 +84705,31 @@ }, { "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": [ @@ -21787,6 +84740,31 @@ }, { "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": [ @@ -21797,6 +84775,31 @@ }, { "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": [ @@ -21807,6 +84810,31 @@ }, { "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": [ @@ -21817,6 +84845,31 @@ }, { "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": [ @@ -21827,6 +84880,31 @@ }, { "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": [ @@ -21837,6 +84915,31 @@ }, { "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": [ @@ -21847,6 +84950,36 @@ }, { "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": [ @@ -21857,6 +84990,31 @@ }, { "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": [ @@ -21867,6 +85025,36 @@ }, { "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": [ @@ -21877,6 +85065,31 @@ }, { "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": [ @@ -21887,6 +85100,31 @@ }, { "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": [ @@ -21897,6 +85135,31 @@ }, { "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": [ @@ -21907,6 +85170,31 @@ }, { "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": [ @@ -21917,6 +85205,36 @@ }, { "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": [ @@ -21927,6 +85245,36 @@ }, { "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": [ @@ -21937,6 +85285,36 @@ }, { "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": [ @@ -21947,6 +85325,36 @@ }, { "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": [ @@ -21957,6 +85365,36 @@ }, { "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": [ @@ -21967,6 +85405,36 @@ }, { "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": [ @@ -21977,6 +85445,36 @@ }, { "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": [ @@ -21987,6 +85485,36 @@ }, { "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": [ @@ -21997,6 +85525,36 @@ }, { "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": [ @@ -22007,6 +85565,31 @@ }, { "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": [ @@ -22017,6 +85600,31 @@ }, { "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": [ @@ -22027,6 +85635,31 @@ }, { "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": [ @@ -22037,6 +85670,31 @@ }, { "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": [ @@ -22047,6 +85705,36 @@ }, { "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": [ @@ -22057,6 +85745,36 @@ }, { "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": [ @@ -22067,6 +85785,36 @@ }, { "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": [ @@ -22077,6 +85825,36 @@ }, { "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": [ @@ -22087,6 +85865,36 @@ }, { "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": [ @@ -22097,6 +85905,36 @@ }, { "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": [ @@ -22107,6 +85945,36 @@ }, { "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": [ @@ -22117,6 +85985,36 @@ }, { "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": [ @@ -22127,6 +86025,36 @@ }, { "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": [ @@ -22137,6 +86065,36 @@ }, { "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": [ @@ -22147,6 +86105,52 @@ }, { "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": [ @@ -22157,6 +86161,36 @@ }, { "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": [ @@ -22167,6 +86201,36 @@ }, { "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": [ @@ -22177,6 +86241,36 @@ }, { "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": [ @@ -22187,6 +86281,36 @@ }, { "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": [ @@ -22197,6 +86321,36 @@ }, { "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": [ @@ -22207,6 +86361,36 @@ }, { "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": [ @@ -22217,6 +86401,36 @@ }, { "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": [ @@ -22227,6 +86441,36 @@ }, { "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": [ @@ -22237,6 +86481,36 @@ }, { "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": [ @@ -22247,6 +86521,36 @@ }, { "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": [ @@ -22257,6 +86561,36 @@ }, { "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": [ @@ -22267,6 +86601,36 @@ }, { "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": [ @@ -22277,6 +86641,36 @@ }, { "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": [ @@ -22287,6 +86681,36 @@ }, { "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": [ @@ -22297,6 +86721,36 @@ }, { "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": [ @@ -22307,6 +86761,31 @@ }, { "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": [ @@ -22317,6 +86796,31 @@ }, { "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": [ @@ -22327,6 +86831,31 @@ }, { "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": [ @@ -22337,6 +86866,31 @@ }, { "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": [ @@ -22347,6 +86901,31 @@ }, { "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": [ @@ -22357,6 +86936,31 @@ }, { "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": [ @@ -22367,6 +86971,31 @@ }, { "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": [ @@ -22377,6 +87006,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -22387,6 +87041,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -22397,6 +87076,31 @@ }, { "type": "Feature", + "properties": { + "check_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": [ @@ -22407,6 +87111,33 @@ }, { "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": [ @@ -22417,6 +87148,33 @@ }, { "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": [ @@ -22427,6 +87185,32 @@ }, { "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": [ @@ -22437,6 +87221,37 @@ }, { "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": [ @@ -22447,6 +87262,37 @@ }, { "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": [ @@ -22457,6 +87303,33 @@ }, { "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": [ @@ -22467,6 +87340,31 @@ }, { "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": [ @@ -22477,6 +87375,31 @@ }, { "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": [ @@ -22487,6 +87410,31 @@ }, { "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": [ @@ -22497,6 +87445,33 @@ }, { "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": [ @@ -22507,6 +87482,38 @@ }, { "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": [ @@ -22517,6 +87524,33 @@ }, { "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": [ @@ -22527,6 +87561,37 @@ }, { "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": [ @@ -22537,6 +87602,34 @@ }, { "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": [ @@ -22547,6 +87640,33 @@ }, { "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": [ @@ -22557,6 +87677,32 @@ }, { "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": [ @@ -22567,6 +87713,32 @@ }, { "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": [ @@ -22577,6 +87749,32 @@ }, { "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": [ @@ -22587,6 +87785,33 @@ }, { "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": [ @@ -22597,6 +87822,32 @@ }, { "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": [ @@ -22607,6 +87858,32 @@ }, { "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": [ @@ -22617,6 +87894,32 @@ }, { "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": [ @@ -22627,6 +87930,32 @@ }, { "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": [ @@ -22637,6 +87966,32 @@ }, { "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": [ @@ -22647,6 +88002,32 @@ }, { "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": [ @@ -22657,6 +88038,37 @@ }, { "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": [ @@ -22667,6 +88079,37 @@ }, { "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": [ @@ -22677,6 +88120,37 @@ }, { "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": [ @@ -22687,6 +88161,37 @@ }, { "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": [ @@ -22697,6 +88202,32 @@ }, { "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": [ @@ -22707,6 +88238,32 @@ }, { "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": [ @@ -22717,6 +88274,33 @@ }, { "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": [ @@ -22727,6 +88311,37 @@ }, { "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": [ @@ -22737,6 +88352,32 @@ }, { "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": [ @@ -22747,6 +88388,33 @@ }, { "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": [ @@ -22757,6 +88425,33 @@ }, { "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": [ @@ -22767,6 +88462,71 @@ }, { "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": [ @@ -22777,6 +88537,37 @@ }, { "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": [ @@ -22787,6 +88578,37 @@ }, { "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": [ @@ -22797,6 +88619,37 @@ }, { "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": [ @@ -22807,6 +88660,32 @@ }, { "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": [ @@ -22817,6 +88696,32 @@ }, { "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": [ @@ -22827,6 +88732,31 @@ }, { "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": [ @@ -22837,6 +88767,32 @@ }, { "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": [ @@ -22847,6 +88803,37 @@ }, { "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": [ @@ -22857,6 +88844,51 @@ }, { "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": [ @@ -22867,6 +88899,32 @@ }, { "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": [ @@ -22877,6 +88935,37 @@ }, { "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": [ @@ -22887,6 +88976,32 @@ }, { "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": [ @@ -22897,6 +89012,37 @@ }, { "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": [ @@ -22907,6 +89053,32 @@ }, { "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": [ @@ -22917,6 +89089,37 @@ }, { "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": [ @@ -22927,6 +89130,32 @@ }, { "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": [ @@ -22937,6 +89166,32 @@ }, { "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": [ @@ -22947,6 +89202,32 @@ }, { "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": [ @@ -22957,6 +89238,36 @@ }, { "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": [ @@ -22967,6 +89278,36 @@ }, { "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": [ @@ -22977,6 +89318,36 @@ }, { "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": [ @@ -22987,6 +89358,36 @@ }, { "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": [ @@ -22997,6 +89398,36 @@ }, { "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": [ @@ -23007,6 +89438,36 @@ }, { "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": [ @@ -23017,6 +89478,36 @@ }, { "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": [ @@ -23027,6 +89518,36 @@ }, { "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": [ @@ -23037,6 +89558,36 @@ }, { "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": [ @@ -23047,6 +89598,36 @@ }, { "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": [ @@ -23057,6 +89638,36 @@ }, { "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": [ @@ -23067,6 +89678,36 @@ }, { "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": [ @@ -23077,6 +89718,36 @@ }, { "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": [ @@ -23087,6 +89758,36 @@ }, { "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": [ @@ -23097,6 +89798,36 @@ }, { "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": [ @@ -23107,6 +89838,36 @@ }, { "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": [ @@ -23117,6 +89878,36 @@ }, { "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": [ @@ -23127,6 +89918,36 @@ }, { "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": [ @@ -23137,6 +89958,36 @@ }, { "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": [ @@ -23147,6 +89998,36 @@ }, { "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": [ @@ -23157,6 +90038,36 @@ }, { "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": [ @@ -23167,6 +90078,36 @@ }, { "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": [ @@ -23177,6 +90118,36 @@ }, { "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": [ @@ -23187,6 +90158,36 @@ }, { "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": [ @@ -23197,6 +90198,36 @@ }, { "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": [ @@ -23207,6 +90238,36 @@ }, { "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": [ @@ -23217,6 +90278,31 @@ }, { "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": [ @@ -23227,6 +90313,31 @@ }, { "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": [ @@ -23237,6 +90348,36 @@ }, { "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": [ @@ -23247,6 +90388,36 @@ }, { "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": [ @@ -23257,6 +90428,36 @@ }, { "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": [ @@ -23267,6 +90468,36 @@ }, { "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": [ @@ -23277,6 +90508,36 @@ }, { "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": [ @@ -23287,6 +90548,36 @@ }, { "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": [ @@ -23297,6 +90588,36 @@ }, { "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": [ @@ -23307,6 +90628,36 @@ }, { "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": [ @@ -23317,6 +90668,36 @@ }, { "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": [ @@ -23327,6 +90708,36 @@ }, { "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": [ @@ -23337,6 +90748,36 @@ }, { "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": [ @@ -23347,6 +90788,36 @@ }, { "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": [ @@ -23357,6 +90828,36 @@ }, { "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": [ @@ -23367,6 +90868,36 @@ }, { "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": [ @@ -23377,6 +90908,36 @@ }, { "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": [ @@ -23387,6 +90948,36 @@ }, { "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": [ @@ -23397,6 +90988,36 @@ }, { "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": [ @@ -23407,6 +91028,36 @@ }, { "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": [ @@ -23417,6 +91068,36 @@ }, { "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": [ @@ -23427,6 +91108,36 @@ }, { "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": [ @@ -23437,6 +91148,36 @@ }, { "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": [ @@ -23447,6 +91188,36 @@ }, { "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": [ @@ -23457,6 +91228,36 @@ }, { "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": [ @@ -23467,6 +91268,36 @@ }, { "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": [ @@ -23477,6 +91308,36 @@ }, { "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": [ @@ -23487,6 +91348,36 @@ }, { "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": [ @@ -23497,6 +91388,36 @@ }, { "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": [ @@ -23507,6 +91428,31 @@ }, { "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": [ @@ -23517,6 +91463,36 @@ }, { "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": [ @@ -23527,6 +91503,36 @@ }, { "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": [ @@ -23537,6 +91543,36 @@ }, { "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": [ @@ -23547,6 +91583,36 @@ }, { "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": [ @@ -23557,6 +91623,36 @@ }, { "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": [ @@ -23567,6 +91663,36 @@ }, { "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": [ @@ -23577,6 +91703,36 @@ }, { "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": [ @@ -23587,6 +91743,36 @@ }, { "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": [ @@ -23597,6 +91783,36 @@ }, { "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": [ @@ -23607,6 +91823,36 @@ }, { "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": [ @@ -23617,6 +91863,36 @@ }, { "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": [ @@ -23627,6 +91903,36 @@ }, { "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": [ @@ -23637,6 +91943,36 @@ }, { "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": [ @@ -23647,6 +91983,36 @@ }, { "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": [ @@ -23657,6 +92023,36 @@ }, { "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": [ @@ -23667,6 +92063,36 @@ }, { "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": [ @@ -23677,6 +92103,36 @@ }, { "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": [ @@ -23687,6 +92143,50 @@ }, { "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": [ @@ -23697,6 +92197,31 @@ }, { "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": [ @@ -23707,6 +92232,31 @@ }, { "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": [ @@ -23717,6 +92267,31 @@ }, { "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": [ @@ -23727,6 +92302,32 @@ }, { "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": [ @@ -23737,6 +92338,31 @@ }, { "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": [ @@ -23747,6 +92373,31 @@ }, { "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": [ @@ -23757,6 +92408,31 @@ }, { "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": [ @@ -23767,6 +92443,31 @@ }, { "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": [ @@ -23777,6 +92478,31 @@ }, { "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": [ @@ -23787,6 +92513,31 @@ }, { "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": [ @@ -23797,6 +92548,31 @@ }, { "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": [ @@ -23807,6 +92583,32 @@ }, { "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": [ @@ -23817,6 +92619,32 @@ }, { "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": [ @@ -23827,6 +92655,31 @@ }, { "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": [ @@ -23837,6 +92690,46 @@ }, { "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": [ @@ -23847,6 +92740,31 @@ }, { "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": [ @@ -23857,6 +92775,31 @@ }, { "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": [ @@ -23867,6 +92810,32 @@ }, { "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": [ @@ -23877,6 +92846,31 @@ }, { "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": [ @@ -23887,6 +92881,31 @@ }, { "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": [ @@ -23897,6 +92916,31 @@ }, { "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": [ @@ -23907,6 +92951,31 @@ }, { "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": [ @@ -23917,6 +92986,32 @@ }, { "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": [ @@ -23927,6 +93022,32 @@ }, { "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": [ @@ -23937,6 +93058,32 @@ }, { "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": [ @@ -23947,6 +93094,31 @@ }, { "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": [ @@ -23957,6 +93129,32 @@ }, { "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": [ @@ -23967,6 +93165,31 @@ }, { "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": [ @@ -23977,6 +93200,31 @@ }, { "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": [ @@ -23987,6 +93235,31 @@ }, { "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": [ @@ -23997,6 +93270,31 @@ }, { "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": [ @@ -24007,6 +93305,36 @@ }, { "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": [ @@ -24017,6 +93345,36 @@ }, { "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": [ @@ -24027,6 +93385,36 @@ }, { "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": [ @@ -24037,6 +93425,36 @@ }, { "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": [ @@ -24047,6 +93465,36 @@ }, { "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": [ @@ -24057,6 +93505,36 @@ }, { "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": [ @@ -24067,6 +93545,36 @@ }, { "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": [ @@ -24077,6 +93585,36 @@ }, { "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": [ @@ -24087,6 +93625,36 @@ }, { "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": [ @@ -24097,6 +93665,31 @@ }, { "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": [ @@ -24107,6 +93700,36 @@ }, { "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": [ @@ -24117,6 +93740,36 @@ }, { "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": [ @@ -24127,6 +93780,32 @@ }, { "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": [ @@ -24137,6 +93816,32 @@ }, { "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": [ @@ -24147,6 +93852,32 @@ }, { "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": [ @@ -24157,6 +93888,32 @@ }, { "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": [ @@ -24167,6 +93924,32 @@ }, { "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": [ @@ -24177,6 +93960,32 @@ }, { "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": [ @@ -24187,6 +93996,31 @@ }, { "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": [ @@ -24197,6 +94031,31 @@ }, { "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": [ @@ -24207,6 +94066,32 @@ }, { "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": [ @@ -24217,6 +94102,32 @@ }, { "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": [ @@ -24227,6 +94138,31 @@ }, { "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": [ @@ -24237,6 +94173,32 @@ }, { "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": [ @@ -24247,6 +94209,31 @@ }, { "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": [ @@ -24257,6 +94244,31 @@ }, { "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": [ @@ -24267,6 +94279,31 @@ }, { "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": [ @@ -24277,6 +94314,31 @@ }, { "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": [ @@ -24287,6 +94349,36 @@ }, { "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": [ @@ -24297,6 +94389,36 @@ }, { "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": [ @@ -24307,6 +94429,36 @@ }, { "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": [ @@ -24317,6 +94469,36 @@ }, { "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": [ @@ -24327,6 +94509,36 @@ }, { "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": [ @@ -24337,6 +94549,36 @@ }, { "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": [ @@ -24347,6 +94589,36 @@ }, { "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": [ @@ -24357,6 +94629,36 @@ }, { "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": [ @@ -24367,6 +94669,36 @@ }, { "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": [ @@ -24377,6 +94709,36 @@ }, { "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": [ @@ -24387,6 +94749,36 @@ }, { "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": [ @@ -24397,6 +94789,36 @@ }, { "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": [ @@ -24407,6 +94829,36 @@ }, { "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": [ @@ -24417,6 +94869,36 @@ }, { "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": [ @@ -24427,6 +94909,36 @@ }, { "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": [ @@ -24437,6 +94949,36 @@ }, { "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": [ @@ -24447,6 +94989,36 @@ }, { "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": [ @@ -24457,6 +95029,36 @@ }, { "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": [ @@ -24467,6 +95069,36 @@ }, { "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": [ @@ -24477,6 +95109,36 @@ }, { "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": [ @@ -24487,6 +95149,32 @@ }, { "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": [ @@ -24497,6 +95185,36 @@ }, { "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": [ @@ -24507,6 +95225,36 @@ }, { "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": [ @@ -24517,6 +95265,31 @@ }, { "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": [ @@ -24527,6 +95300,32 @@ }, { "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": [ @@ -24537,6 +95336,31 @@ }, { "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": [ @@ -24547,6 +95371,32 @@ }, { "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": [ @@ -24557,6 +95407,32 @@ }, { "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": [ @@ -24567,6 +95443,32 @@ }, { "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": [ @@ -24577,6 +95479,32 @@ }, { "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": [ @@ -24587,6 +95515,32 @@ }, { "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": [ @@ -24597,6 +95551,32 @@ }, { "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": [ @@ -24607,6 +95587,31 @@ }, { "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": [ @@ -24617,6 +95622,32 @@ }, { "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": [ @@ -24627,6 +95658,32 @@ }, { "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": [ @@ -24637,6 +95694,32 @@ }, { "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": [ @@ -24647,6 +95730,32 @@ }, { "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": [ @@ -24657,6 +95766,32 @@ }, { "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": [ @@ -24667,6 +95802,35 @@ }, { "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": [ @@ -24677,6 +95841,35 @@ }, { "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": [ @@ -24687,6 +95880,35 @@ }, { "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": [ @@ -24697,6 +95919,35 @@ }, { "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": [ @@ -24707,6 +95958,52 @@ }, { "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": [ @@ -24717,6 +96014,35 @@ }, { "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": [ @@ -24727,6 +96053,34 @@ }, { "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": [ @@ -24737,6 +96091,34 @@ }, { "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": [ @@ -24747,6 +96129,35 @@ }, { "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": [ @@ -24757,6 +96168,35 @@ }, { "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": [ @@ -24767,6 +96207,35 @@ }, { "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": [ @@ -24777,6 +96246,35 @@ }, { "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": [ @@ -24787,6 +96285,35 @@ }, { "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": [ @@ -24797,6 +96324,35 @@ }, { "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": [ @@ -24807,6 +96363,35 @@ }, { "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": [ @@ -24817,6 +96402,35 @@ }, { "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": [ @@ -24827,6 +96441,35 @@ }, { "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": [ @@ -24837,6 +96480,35 @@ }, { "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": [ @@ -24847,6 +96519,35 @@ }, { "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": [ @@ -24857,6 +96558,35 @@ }, { "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": [ @@ -24867,6 +96597,35 @@ }, { "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": [ @@ -24877,6 +96636,35 @@ }, { "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": [ @@ -24887,6 +96675,35 @@ }, { "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": [ @@ -24897,6 +96714,35 @@ }, { "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": [ @@ -24907,6 +96753,35 @@ }, { "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": [ @@ -24917,6 +96792,34 @@ }, { "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": [ @@ -24927,6 +96830,35 @@ }, { "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": [ @@ -24937,6 +96869,35 @@ }, { "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": [ @@ -24947,6 +96908,35 @@ }, { "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": [ @@ -24957,6 +96947,35 @@ }, { "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": [ @@ -24967,6 +96986,35 @@ }, { "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": [ @@ -24977,6 +97025,35 @@ }, { "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": [ @@ -24987,6 +97064,35 @@ }, { "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": [ @@ -24997,6 +97103,35 @@ }, { "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": [ @@ -25007,6 +97142,35 @@ }, { "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": [ @@ -25017,6 +97181,35 @@ }, { "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": [ @@ -25027,6 +97220,50 @@ }, { "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": [ @@ -25037,6 +97274,35 @@ }, { "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": [ @@ -25047,6 +97313,35 @@ }, { "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": [ @@ -25057,6 +97352,35 @@ }, { "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": [ @@ -25067,6 +97391,51 @@ }, { "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": [ @@ -25077,6 +97446,35 @@ }, { "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": [ @@ -25087,6 +97485,34 @@ }, { "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": [ @@ -25097,6 +97523,35 @@ }, { "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": [ @@ -25107,6 +97562,35 @@ }, { "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": [ @@ -25117,6 +97601,35 @@ }, { "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": [ @@ -25127,6 +97640,50 @@ }, { "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": [ @@ -25137,6 +97694,35 @@ }, { "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": [ @@ -25147,6 +97733,35 @@ }, { "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": [ @@ -25157,6 +97772,35 @@ }, { "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": [ @@ -25167,6 +97811,34 @@ }, { "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": [ @@ -25177,6 +97849,35 @@ }, { "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": [ @@ -25187,6 +97888,34 @@ }, { "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": [ @@ -25197,6 +97926,35 @@ }, { "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": [ @@ -25207,6 +97965,35 @@ }, { "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": [ @@ -25217,6 +98004,35 @@ }, { "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": [ @@ -25227,6 +98043,34 @@ }, { "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": [ @@ -25237,6 +98081,35 @@ }, { "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": [ @@ -25247,6 +98120,34 @@ }, { "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": [ @@ -25257,6 +98158,35 @@ }, { "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": [ @@ -25267,6 +98197,35 @@ }, { "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": [ @@ -25277,6 +98236,35 @@ }, { "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": [ @@ -25287,6 +98275,35 @@ }, { "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": [ @@ -25297,6 +98314,35 @@ }, { "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": [ @@ -25307,6 +98353,35 @@ }, { "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": [ @@ -25317,6 +98392,34 @@ }, { "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": [ @@ -25327,6 +98430,35 @@ }, { "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": [ @@ -25337,6 +98469,34 @@ }, { "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": [ @@ -25347,6 +98507,35 @@ }, { "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": [ @@ -25357,6 +98546,35 @@ }, { "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": [ @@ -25367,6 +98585,35 @@ }, { "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": [ @@ -25377,6 +98624,35 @@ }, { "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": [ @@ -25387,6 +98663,35 @@ }, { "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": [ @@ -25397,6 +98702,35 @@ }, { "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": [ @@ -25407,6 +98741,35 @@ }, { "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": [ @@ -25417,6 +98780,35 @@ }, { "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": [ @@ -25427,6 +98819,35 @@ }, { "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": [ @@ -25437,6 +98858,35 @@ }, { "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": [ @@ -25447,6 +98897,63 @@ }, { "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": [ @@ -25457,6 +98964,35 @@ }, { "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": [ @@ -25467,6 +99003,35 @@ }, { "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": [ @@ -25477,6 +99042,35 @@ }, { "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": [ @@ -25487,6 +99081,34 @@ }, { "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": [ @@ -25497,6 +99119,34 @@ }, { "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": [ @@ -25507,6 +99157,35 @@ }, { "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": [ @@ -25517,6 +99196,35 @@ }, { "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": [ @@ -25527,6 +99235,34 @@ }, { "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": [ @@ -25537,6 +99273,35 @@ }, { "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": [ @@ -25547,6 +99312,35 @@ }, { "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": [ @@ -25557,6 +99351,35 @@ }, { "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": [ @@ -25567,6 +99390,35 @@ }, { "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": [ @@ -25577,6 +99429,35 @@ }, { "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": [ @@ -25587,6 +99468,34 @@ }, { "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": [ @@ -25597,6 +99506,37 @@ }, { "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": [ @@ -25607,6 +99547,35 @@ }, { "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": [ @@ -25617,6 +99586,35 @@ }, { "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": [ @@ -25627,6 +99625,35 @@ }, { "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": [ @@ -25637,6 +99664,34 @@ }, { "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": [ @@ -25647,6 +99702,34 @@ }, { "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": [ @@ -25657,6 +99740,35 @@ }, { "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": [ @@ -25667,6 +99779,35 @@ }, { "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": [ @@ -25677,6 +99818,34 @@ }, { "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": [ @@ -25687,6 +99856,35 @@ }, { "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": [ @@ -25697,6 +99895,35 @@ }, { "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": [ @@ -25707,6 +99934,35 @@ }, { "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": [ @@ -25717,6 +99973,40 @@ }, { "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": [ @@ -25727,6 +100017,35 @@ }, { "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": [ @@ -25737,6 +100056,34 @@ }, { "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": [ @@ -25747,6 +100094,40 @@ }, { "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": [ @@ -25757,6 +100138,40 @@ }, { "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": [ @@ -25767,6 +100182,35 @@ }, { "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": [ @@ -25777,6 +100221,35 @@ }, { "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": [ @@ -25787,6 +100260,34 @@ }, { "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": [ @@ -25797,6 +100298,35 @@ }, { "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": [ @@ -25807,6 +100337,34 @@ }, { "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": [ @@ -25817,6 +100375,35 @@ }, { "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": [ @@ -25827,6 +100414,34 @@ }, { "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": [ @@ -25837,6 +100452,35 @@ }, { "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": [ @@ -25847,6 +100491,35 @@ }, { "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": [ @@ -25857,6 +100530,35 @@ }, { "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": [ @@ -25867,6 +100569,34 @@ }, { "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": [ @@ -25877,6 +100607,35 @@ }, { "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": [ @@ -25887,6 +100646,35 @@ }, { "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": [ @@ -25897,6 +100685,40 @@ }, { "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": [ @@ -25907,6 +100729,40 @@ }, { "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": [ @@ -25917,6 +100773,35 @@ }, { "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": [ @@ -25927,6 +100812,65 @@ }, { "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": [ @@ -25937,6 +100881,65 @@ }, { "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": [ @@ -25947,6 +100950,35 @@ }, { "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": [ @@ -25957,6 +100989,35 @@ }, { "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": [ @@ -25967,6 +101028,40 @@ }, { "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": [ @@ -25977,6 +101072,40 @@ }, { "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": [ @@ -25987,6 +101116,35 @@ }, { "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": [ @@ -25997,6 +101155,38 @@ }, { "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": [ @@ -26007,6 +101197,38 @@ }, { "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": [ @@ -26017,6 +101239,38 @@ }, { "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": [ @@ -26027,6 +101281,38 @@ }, { "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": [ @@ -26037,6 +101323,38 @@ }, { "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": [ @@ -26047,6 +101365,33 @@ }, { "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": [ @@ -26057,6 +101402,33 @@ }, { "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": [ @@ -26067,6 +101439,38 @@ }, { "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": [ @@ -26077,6 +101481,38 @@ }, { "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": [ @@ -26087,6 +101523,38 @@ }, { "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": [ @@ -26097,6 +101565,38 @@ }, { "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": [ @@ -26107,6 +101607,38 @@ }, { "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": [ @@ -26117,6 +101649,38 @@ }, { "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": [ @@ -26127,6 +101691,33 @@ }, { "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": [ @@ -26137,6 +101728,33 @@ }, { "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": [ @@ -26147,6 +101765,33 @@ }, { "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": [ @@ -26157,6 +101802,38 @@ }, { "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": [ @@ -26167,6 +101844,33 @@ }, { "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": [ @@ -26177,6 +101881,35 @@ }, { "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": [ @@ -26187,6 +101920,35 @@ }, { "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": [ @@ -26197,6 +101959,35 @@ }, { "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": [ @@ -26207,6 +101998,35 @@ }, { "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": [ @@ -26217,6 +102037,41 @@ }, { "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": [ @@ -26227,6 +102082,40 @@ }, { "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": [ @@ -26237,6 +102126,36 @@ }, { "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": [ @@ -26247,6 +102166,35 @@ }, { "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": [ @@ -26257,6 +102205,40 @@ }, { "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": [ @@ -26267,6 +102249,35 @@ }, { "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": [ @@ -26277,6 +102288,35 @@ }, { "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": [ @@ -26287,6 +102327,35 @@ }, { "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": [ @@ -26297,6 +102366,37 @@ }, { "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": [ @@ -26307,6 +102407,37 @@ }, { "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": [ @@ -26317,6 +102448,35 @@ }, { "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": [ @@ -26327,6 +102487,35 @@ }, { "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": [ @@ -26337,6 +102526,35 @@ }, { "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": [ @@ -26347,6 +102565,35 @@ }, { "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": [ @@ -26357,6 +102604,35 @@ }, { "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": [ @@ -26367,6 +102643,35 @@ }, { "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": [ @@ -26377,6 +102682,36 @@ }, { "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": [ @@ -26387,6 +102722,35 @@ }, { "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": [ @@ -26397,6 +102761,40 @@ }, { "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": [ @@ -26407,6 +102805,42 @@ }, { "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": [ @@ -26417,6 +102851,35 @@ }, { "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": [ @@ -26427,6 +102890,35 @@ }, { "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": [ @@ -26437,6 +102929,36 @@ }, { "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": [ @@ -26447,6 +102969,35 @@ }, { "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": [ @@ -26457,6 +103008,35 @@ }, { "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": [ @@ -26467,6 +103047,37 @@ }, { "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": [ @@ -26477,6 +103088,35 @@ }, { "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": [ @@ -26487,6 +103127,38 @@ }, { "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": [ @@ -26497,6 +103169,35 @@ }, { "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": [ @@ -26507,6 +103208,35 @@ }, { "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": [ @@ -26517,6 +103247,35 @@ }, { "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": [ @@ -26527,6 +103286,35 @@ }, { "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": [ @@ -26537,6 +103325,35 @@ }, { "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": [ @@ -26547,6 +103364,36 @@ }, { "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": [ @@ -26557,6 +103404,35 @@ }, { "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": [ @@ -26567,6 +103443,35 @@ }, { "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": [ @@ -26577,6 +103482,36 @@ }, { "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": [ @@ -26587,6 +103522,34 @@ }, { "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": [ @@ -26597,6 +103560,36 @@ }, { "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": [ @@ -26607,6 +103600,35 @@ }, { "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": [ @@ -26617,6 +103639,35 @@ }, { "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": [ @@ -26627,6 +103678,35 @@ }, { "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": [ @@ -26637,6 +103717,35 @@ }, { "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": [ @@ -26647,6 +103756,35 @@ }, { "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": [ @@ -26657,6 +103795,38 @@ }, { "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": [ @@ -26667,6 +103837,36 @@ }, { "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": [ @@ -26677,6 +103877,37 @@ }, { "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": [ @@ -26687,6 +103918,41 @@ }, { "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": [ @@ -26697,6 +103963,35 @@ }, { "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": [ @@ -26707,6 +104002,35 @@ }, { "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": [ @@ -26717,6 +104041,35 @@ }, { "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": [ @@ -26727,6 +104080,35 @@ }, { "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": [ @@ -26737,6 +104119,42 @@ }, { "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": [ @@ -26747,6 +104165,35 @@ }, { "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": [ @@ -26757,6 +104204,35 @@ }, { "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": [ @@ -26767,6 +104243,36 @@ }, { "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": [ @@ -26777,6 +104283,35 @@ }, { "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": [ @@ -26787,6 +104322,36 @@ }, { "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": [ @@ -26797,6 +104362,36 @@ }, { "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": [ @@ -26807,6 +104402,35 @@ }, { "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": [ @@ -26817,6 +104441,35 @@ }, { "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": [ @@ -26827,6 +104480,35 @@ }, { "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": [ @@ -26837,6 +104519,35 @@ }, { "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": [ @@ -26847,6 +104558,40 @@ }, { "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": [ @@ -26857,6 +104602,35 @@ }, { "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": [ @@ -26867,6 +104641,35 @@ }, { "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": [ @@ -26877,6 +104680,35 @@ }, { "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": [ @@ -26887,6 +104719,35 @@ }, { "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": [ @@ -26897,6 +104758,35 @@ }, { "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": [ @@ -26907,6 +104797,36 @@ }, { "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": [ @@ -26917,6 +104837,39 @@ }, { "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": [ @@ -26927,6 +104880,35 @@ }, { "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": [ @@ -26937,6 +104919,36 @@ }, { "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": [ @@ -26947,6 +104959,40 @@ }, { "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": [ @@ -26957,6 +105003,35 @@ }, { "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": [ @@ -26967,6 +105042,35 @@ }, { "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": [ @@ -26977,6 +105081,35 @@ }, { "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": [ @@ -26987,6 +105120,35 @@ }, { "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": [ @@ -26997,6 +105159,35 @@ }, { "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": [ @@ -27007,6 +105198,35 @@ }, { "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": [ @@ -27017,6 +105237,35 @@ }, { "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": [ @@ -27027,6 +105276,35 @@ }, { "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": [ @@ -27037,6 +105315,40 @@ }, { "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": [ @@ -27047,6 +105359,35 @@ }, { "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": [ @@ -27057,6 +105398,37 @@ }, { "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": [ @@ -27067,6 +105439,42 @@ }, { "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": [ @@ -27077,6 +105485,35 @@ }, { "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": [ @@ -27087,6 +105524,35 @@ }, { "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": [ @@ -27097,6 +105563,41 @@ }, { "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": [ @@ -27107,6 +105608,35 @@ }, { "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": [ @@ -27117,6 +105647,46 @@ }, { "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": [ @@ -27127,6 +105697,37 @@ }, { "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": [ @@ -27137,6 +105738,35 @@ }, { "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": [ @@ -27147,6 +105777,36 @@ }, { "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": [ @@ -27157,6 +105817,36 @@ }, { "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": [ @@ -27167,6 +105857,40 @@ }, { "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": [ @@ -27177,6 +105901,36 @@ }, { "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": [ @@ -27187,6 +105941,36 @@ }, { "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": [ @@ -27197,6 +105981,37 @@ }, { "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": [ @@ -27207,6 +106022,35 @@ }, { "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": [ @@ -27217,6 +106061,35 @@ }, { "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": [ @@ -27227,6 +106100,35 @@ }, { "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": [ @@ -27237,6 +106139,41 @@ }, { "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": [ @@ -27247,6 +106184,35 @@ }, { "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": [ @@ -27257,6 +106223,36 @@ }, { "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": [ @@ -27267,6 +106263,40 @@ }, { "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": [ @@ -27277,6 +106307,35 @@ }, { "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": [ @@ -27287,6 +106346,39 @@ }, { "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": [ @@ -27297,6 +106389,36 @@ }, { "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": [ @@ -27307,6 +106429,40 @@ }, { "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": [ @@ -27317,6 +106473,36 @@ }, { "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": [ @@ -27327,6 +106513,36 @@ }, { "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": [ @@ -27337,6 +106553,35 @@ }, { "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": [ @@ -27347,6 +106592,36 @@ }, { "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": [ @@ -27357,6 +106632,36 @@ }, { "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": [ @@ -27367,6 +106672,35 @@ }, { "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": [ @@ -27377,6 +106711,35 @@ }, { "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": [ @@ -27387,6 +106750,36 @@ }, { "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": [ @@ -27397,6 +106790,35 @@ }, { "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": [ @@ -27407,6 +106829,35 @@ }, { "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": [ @@ -27417,6 +106868,35 @@ }, { "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": [ @@ -27427,6 +106907,35 @@ }, { "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": [ @@ -27437,6 +106946,36 @@ }, { "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": [ @@ -27447,6 +106986,35 @@ }, { "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": [ @@ -27457,6 +107025,35 @@ }, { "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": [ @@ -27467,6 +107064,39 @@ }, { "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": [ @@ -27477,6 +107107,36 @@ }, { "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": [ @@ -27487,6 +107147,35 @@ }, { "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": [ @@ -27497,6 +107186,40 @@ }, { "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": [ @@ -27507,6 +107230,35 @@ }, { "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": [ @@ -27517,6 +107269,35 @@ }, { "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": [ @@ -27527,6 +107308,35 @@ }, { "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": [ @@ -27537,6 +107347,35 @@ }, { "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": [ @@ -27547,6 +107386,35 @@ }, { "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": [ @@ -27557,6 +107425,35 @@ }, { "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": [ @@ -27567,6 +107464,32 @@ }, { "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": [ @@ -27577,6 +107500,40 @@ }, { "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": [ @@ -27587,6 +107544,35 @@ }, { "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": [ @@ -27597,6 +107583,35 @@ }, { "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": [ @@ -27607,6 +107622,40 @@ }, { "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": [ @@ -27617,6 +107666,36 @@ }, { "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": [ @@ -27627,6 +107706,35 @@ }, { "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": [ @@ -27637,6 +107745,36 @@ }, { "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": [ @@ -27647,6 +107785,40 @@ }, { "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": [ @@ -27657,6 +107829,35 @@ }, { "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": [ @@ -27667,6 +107868,35 @@ }, { "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": [ @@ -27677,6 +107907,35 @@ }, { "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": [ @@ -27687,6 +107946,35 @@ }, { "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": [ @@ -27697,6 +107985,36 @@ }, { "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": [ @@ -27707,6 +108025,34 @@ }, { "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": [ @@ -27717,6 +108063,35 @@ }, { "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": [ @@ -27727,6 +108102,36 @@ }, { "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": [ @@ -27737,6 +108142,36 @@ }, { "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": [ @@ -27747,6 +108182,34 @@ }, { "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": [ @@ -27757,6 +108220,36 @@ }, { "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": [ @@ -27767,6 +108260,35 @@ }, { "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": [ @@ -27777,6 +108299,40 @@ }, { "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": [ @@ -27787,6 +108343,36 @@ }, { "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": [ @@ -27797,6 +108383,36 @@ }, { "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": [ @@ -27807,6 +108423,36 @@ }, { "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": [ @@ -27817,6 +108463,36 @@ }, { "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": [ @@ -27827,6 +108503,35 @@ }, { "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": [ @@ -27837,6 +108542,35 @@ }, { "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": [ @@ -27847,6 +108581,34 @@ }, { "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": [ @@ -27857,6 +108619,35 @@ }, { "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": [ @@ -27867,6 +108658,40 @@ }, { "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": [ @@ -27877,6 +108702,35 @@ }, { "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": [ @@ -27887,6 +108741,39 @@ }, { "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": [ @@ -27897,6 +108784,36 @@ }, { "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": [ @@ -27907,6 +108824,36 @@ }, { "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": [ @@ -27917,6 +108864,36 @@ }, { "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": [ @@ -27927,6 +108904,36 @@ }, { "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": [ @@ -27937,6 +108944,35 @@ }, { "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": [ @@ -27947,6 +108983,36 @@ }, { "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": [ @@ -27957,6 +109023,37 @@ }, { "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": [ @@ -27967,6 +109064,35 @@ }, { "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": [ @@ -27977,6 +109103,35 @@ }, { "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": [ @@ -27987,6 +109142,36 @@ }, { "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": [ @@ -27997,6 +109182,35 @@ }, { "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": [ @@ -28007,6 +109221,34 @@ }, { "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": [ @@ -28017,6 +109259,35 @@ }, { "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": [ @@ -28027,6 +109298,35 @@ }, { "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": [ @@ -28037,6 +109337,35 @@ }, { "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": [ @@ -28047,6 +109376,32 @@ }, { "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": [ @@ -28057,6 +109412,34 @@ }, { "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": [ @@ -28067,6 +109450,34 @@ }, { "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": [ @@ -28077,6 +109488,37 @@ }, { "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": [ @@ -28087,6 +109529,34 @@ }, { "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": [ @@ -28097,6 +109567,35 @@ }, { "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": [ @@ -28107,6 +109606,40 @@ }, { "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": [ @@ -28117,6 +109650,40 @@ }, { "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": [ @@ -28127,6 +109694,35 @@ }, { "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": [ @@ -28137,6 +109733,35 @@ }, { "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": [ @@ -28147,6 +109772,40 @@ }, { "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": [ @@ -28157,6 +109816,35 @@ }, { "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": [ @@ -28167,6 +109855,34 @@ }, { "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": [ @@ -28177,6 +109893,34 @@ }, { "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": [ @@ -28187,6 +109931,35 @@ }, { "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": [ @@ -28197,6 +109970,35 @@ }, { "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": [ @@ -28207,6 +110009,35 @@ }, { "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": [ @@ -28217,6 +110048,35 @@ }, { "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": [ @@ -28227,6 +110087,35 @@ }, { "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": [ @@ -28237,6 +110126,35 @@ }, { "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": [ @@ -28247,6 +110165,35 @@ }, { "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": [ @@ -28257,6 +110204,34 @@ }, { "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": [ @@ -28267,6 +110242,35 @@ }, { "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": [ @@ -28277,6 +110281,35 @@ }, { "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": [ @@ -28287,6 +110320,35 @@ }, { "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": [ @@ -28297,6 +110359,36 @@ }, { "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": [ @@ -28307,6 +110399,36 @@ }, { "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": [ @@ -28317,6 +110439,35 @@ }, { "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": [ @@ -28327,6 +110478,36 @@ }, { "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": [ @@ -28337,6 +110518,35 @@ }, { "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": [ @@ -28347,6 +110557,35 @@ }, { "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": [ @@ -28357,6 +110596,40 @@ }, { "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": [ @@ -28367,6 +110640,40 @@ }, { "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": [ @@ -28377,6 +110684,35 @@ }, { "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": [ @@ -28387,6 +110723,33 @@ }, { "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": [ @@ -28397,6 +110760,35 @@ }, { "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": [ @@ -28407,6 +110799,34 @@ }, { "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": [ @@ -28417,6 +110837,36 @@ }, { "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": [ @@ -28427,6 +110877,35 @@ }, { "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": [ @@ -28437,6 +110916,35 @@ }, { "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": [ @@ -28447,6 +110955,35 @@ }, { "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": [ @@ -28457,6 +110994,36 @@ }, { "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": [ @@ -28467,6 +111034,35 @@ }, { "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": [ @@ -28477,6 +111073,35 @@ }, { "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": [ @@ -28487,6 +111112,34 @@ }, { "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": [ @@ -28497,6 +111150,35 @@ }, { "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": [ @@ -28507,6 +111189,36 @@ }, { "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": [ @@ -28517,6 +111229,33 @@ }, { "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": [ @@ -28527,6 +111266,36 @@ }, { "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": [ @@ -28537,6 +111306,35 @@ }, { "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": [ @@ -28547,6 +111345,35 @@ }, { "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": [ @@ -28557,6 +111384,34 @@ }, { "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": [ @@ -28567,6 +111422,39 @@ }, { "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": [ @@ -28577,6 +111465,39 @@ }, { "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": [ @@ -28587,6 +111508,40 @@ }, { "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": [ @@ -28597,6 +111552,40 @@ }, { "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": [ @@ -28607,6 +111596,40 @@ }, { "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": [ @@ -28617,6 +111640,36 @@ }, { "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": [ @@ -28627,6 +111680,35 @@ }, { "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": [ @@ -28637,6 +111719,40 @@ }, { "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": [ @@ -28647,6 +111763,35 @@ }, { "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": [ @@ -28657,6 +111802,35 @@ }, { "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": [ @@ -28667,6 +111841,36 @@ }, { "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": [ @@ -28677,6 +111881,36 @@ }, { "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": [ @@ -28687,6 +111921,35 @@ }, { "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": [ @@ -28697,6 +111960,35 @@ }, { "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": [ @@ -28707,6 +111999,35 @@ }, { "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": [ @@ -28717,6 +112038,35 @@ }, { "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": [ @@ -28727,6 +112077,35 @@ }, { "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": [ @@ -28737,6 +112116,34 @@ }, { "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": [ @@ -28747,6 +112154,40 @@ }, { "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": [ @@ -28757,6 +112198,34 @@ }, { "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": [ @@ -28767,6 +112236,37 @@ }, { "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": [ @@ -28777,6 +112277,35 @@ }, { "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": [ @@ -28787,6 +112316,39 @@ }, { "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": [ @@ -28797,6 +112359,36 @@ }, { "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": [ @@ -28807,6 +112399,36 @@ }, { "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": [ @@ -28817,6 +112439,36 @@ }, { "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": [ @@ -28827,6 +112479,36 @@ }, { "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": [ @@ -28837,6 +112519,36 @@ }, { "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": [ @@ -28847,6 +112559,39 @@ }, { "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": [ @@ -28857,6 +112602,38 @@ }, { "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": [ @@ -28867,6 +112644,39 @@ }, { "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": [ @@ -28877,6 +112687,34 @@ }, { "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": [ @@ -28887,6 +112725,36 @@ }, { "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": [ @@ -28897,6 +112765,36 @@ }, { "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": [ @@ -28907,6 +112805,40 @@ }, { "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": [ @@ -28917,6 +112849,40 @@ }, { "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": [ @@ -28927,6 +112893,35 @@ }, { "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": [ @@ -28937,6 +112932,36 @@ }, { "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": [ @@ -28947,6 +112972,36 @@ }, { "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": [ @@ -28957,6 +113012,41 @@ }, { "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": [ @@ -28967,6 +113057,36 @@ }, { "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": [ @@ -28977,6 +113097,36 @@ }, { "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": [ @@ -28987,6 +113137,36 @@ }, { "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": [ @@ -28997,6 +113177,35 @@ }, { "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": [ @@ -29007,6 +113216,35 @@ }, { "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": [ @@ -29017,6 +113255,34 @@ }, { "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": [ @@ -29027,6 +113293,39 @@ }, { "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": [ @@ -29037,6 +113336,36 @@ }, { "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": [ @@ -29047,6 +113376,40 @@ }, { "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": [ @@ -29057,6 +113420,34 @@ }, { "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": [ @@ -29067,6 +113458,35 @@ }, { "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": [ @@ -29077,6 +113497,35 @@ }, { "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": [ @@ -29087,6 +113536,40 @@ }, { "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": [ @@ -29097,6 +113580,40 @@ }, { "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": [ @@ -29107,6 +113624,40 @@ }, { "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": [ @@ -29117,6 +113668,34 @@ }, { "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": [ @@ -29127,6 +113706,40 @@ }, { "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": [ @@ -29137,6 +113750,40 @@ }, { "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": [ @@ -29147,6 +113794,41 @@ }, { "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": [ @@ -29157,6 +113839,40 @@ }, { "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": [ @@ -29167,6 +113883,35 @@ }, { "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": [ @@ -29177,6 +113922,35 @@ }, { "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": [ @@ -29187,6 +113961,35 @@ }, { "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": [ @@ -29197,6 +114000,34 @@ }, { "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": [ @@ -29207,6 +114038,39 @@ }, { "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": [ @@ -29217,6 +114081,39 @@ }, { "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": [ @@ -29227,6 +114124,40 @@ }, { "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": [ @@ -29237,6 +114168,39 @@ }, { "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": [ @@ -29247,6 +114211,39 @@ }, { "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": [ @@ -29257,6 +114254,40 @@ }, { "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": [ @@ -29267,6 +114298,40 @@ }, { "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": [ @@ -29277,6 +114342,40 @@ }, { "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": [ @@ -29287,6 +114386,40 @@ }, { "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": [ @@ -29297,6 +114430,39 @@ }, { "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": [ @@ -29307,6 +114473,36 @@ }, { "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": [ @@ -29317,6 +114513,35 @@ }, { "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": [ @@ -29327,6 +114552,34 @@ }, { "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": [ @@ -29337,6 +114590,34 @@ }, { "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": [ @@ -29347,6 +114628,40 @@ }, { "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": [ @@ -29357,6 +114672,40 @@ }, { "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": [ @@ -29367,6 +114716,34 @@ }, { "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": [ @@ -29377,6 +114754,35 @@ }, { "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": [ @@ -29387,6 +114793,36 @@ }, { "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": [ @@ -29397,6 +114833,48 @@ }, { "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": [ @@ -29407,6 +114885,35 @@ }, { "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": [ @@ -29417,6 +114924,34 @@ }, { "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": [ @@ -29427,6 +114962,34 @@ }, { "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": [ @@ -29437,6 +115000,34 @@ }, { "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": [ @@ -29447,6 +115038,34 @@ }, { "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": [ @@ -29457,6 +115076,36 @@ }, { "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": [ @@ -29467,6 +115116,35 @@ }, { "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": [ @@ -29477,6 +115155,36 @@ }, { "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": [ @@ -29487,6 +115195,35 @@ }, { "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": [ @@ -29497,6 +115234,36 @@ }, { "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": [ @@ -29507,6 +115274,35 @@ }, { "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": [ @@ -29517,6 +115313,35 @@ }, { "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": [ @@ -29527,6 +115352,35 @@ }, { "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": [ @@ -29537,6 +115391,40 @@ }, { "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": [ @@ -29547,6 +115435,40 @@ }, { "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": [ @@ -29557,6 +115479,35 @@ }, { "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": [ @@ -29567,6 +115518,35 @@ }, { "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": [ @@ -29577,6 +115557,35 @@ }, { "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": [ @@ -29587,6 +115596,36 @@ }, { "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": [ @@ -29597,6 +115636,36 @@ }, { "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": [ @@ -29607,6 +115676,40 @@ }, { "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": [ @@ -29617,6 +115720,36 @@ }, { "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": [ @@ -29627,6 +115760,40 @@ }, { "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": [ @@ -29637,6 +115804,40 @@ }, { "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": [ @@ -29647,6 +115848,36 @@ }, { "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": [ @@ -29657,6 +115888,40 @@ }, { "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": [ @@ -29667,6 +115932,36 @@ }, { "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": [ @@ -29677,6 +115972,35 @@ }, { "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": [ @@ -29687,6 +116011,35 @@ }, { "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": [ @@ -29697,6 +116050,35 @@ }, { "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": [ @@ -29707,6 +116089,35 @@ }, { "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": [ @@ -29717,6 +116128,35 @@ }, { "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": [ @@ -29727,6 +116167,35 @@ }, { "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": [ @@ -29737,6 +116206,35 @@ }, { "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": [ @@ -29747,6 +116245,35 @@ }, { "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": [ @@ -29757,6 +116284,35 @@ }, { "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": [ @@ -29767,6 +116323,35 @@ }, { "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": [ @@ -29777,6 +116362,40 @@ }, { "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": [ @@ -29787,6 +116406,35 @@ }, { "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": [ @@ -29797,6 +116445,36 @@ }, { "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": [ @@ -29807,6 +116485,34 @@ }, { "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": [ @@ -29817,6 +116523,35 @@ }, { "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": [ @@ -29827,6 +116562,35 @@ }, { "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": [ @@ -29837,6 +116601,35 @@ }, { "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": [ @@ -29847,6 +116640,35 @@ }, { "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": [ @@ -29857,6 +116679,36 @@ }, { "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": [ @@ -29867,6 +116719,36 @@ }, { "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": [ @@ -29877,6 +116759,35 @@ }, { "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": [ @@ -29887,6 +116798,40 @@ }, { "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": [ @@ -29897,6 +116842,40 @@ }, { "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": [ @@ -29907,6 +116886,34 @@ }, { "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": [ @@ -29917,6 +116924,40 @@ }, { "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": [ @@ -29927,6 +116968,40 @@ }, { "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": [ @@ -29937,6 +117012,40 @@ }, { "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": [ @@ -29947,6 +117056,34 @@ }, { "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": [ @@ -29957,6 +117094,34 @@ }, { "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": [ @@ -29967,6 +117132,34 @@ }, { "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": [ @@ -29977,6 +117170,34 @@ }, { "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": [ @@ -29987,6 +117208,35 @@ }, { "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": [ @@ -29997,6 +117247,40 @@ }, { "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": [ @@ -30007,6 +117291,40 @@ }, { "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": [ @@ -30017,6 +117335,40 @@ }, { "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": [ @@ -30027,6 +117379,36 @@ }, { "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": [ @@ -30037,6 +117419,40 @@ }, { "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": [ @@ -30047,6 +117463,40 @@ }, { "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": [ @@ -30057,6 +117507,35 @@ }, { "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": [ @@ -30067,6 +117546,36 @@ }, { "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": [ @@ -30077,6 +117586,34 @@ }, { "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": [ @@ -30087,6 +117624,35 @@ }, { "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": [ @@ -30097,6 +117663,35 @@ }, { "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": [ @@ -30107,6 +117702,36 @@ }, { "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": [ @@ -30117,6 +117742,34 @@ }, { "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": [ @@ -30127,6 +117780,35 @@ }, { "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": [ @@ -30137,6 +117819,34 @@ }, { "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": [ @@ -30147,6 +117857,35 @@ }, { "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": [ @@ -30157,6 +117896,35 @@ }, { "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": [ @@ -30167,6 +117935,35 @@ }, { "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": [ @@ -30177,6 +117974,35 @@ }, { "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": [ @@ -30187,6 +118013,35 @@ }, { "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": [ @@ -30197,6 +118052,35 @@ }, { "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": [ @@ -30207,6 +118091,35 @@ }, { "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": [ @@ -30217,6 +118130,35 @@ }, { "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": [ @@ -30227,6 +118169,35 @@ }, { "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": [ @@ -30237,6 +118208,35 @@ }, { "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": [ @@ -30247,6 +118247,35 @@ }, { "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": [ @@ -30257,6 +118286,35 @@ }, { "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": [ @@ -30267,6 +118325,34 @@ }, { "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": [ @@ -30277,6 +118363,35 @@ }, { "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": [ @@ -30287,6 +118402,35 @@ }, { "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": [ @@ -30297,6 +118441,35 @@ }, { "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": [ @@ -30307,6 +118480,35 @@ }, { "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": [ @@ -30317,6 +118519,35 @@ }, { "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": [ @@ -30327,6 +118558,34 @@ }, { "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": [ @@ -30337,6 +118596,35 @@ }, { "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": [ @@ -30347,6 +118635,40 @@ }, { "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": [ @@ -30357,6 +118679,36 @@ }, { "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": [ @@ -30367,6 +118719,35 @@ }, { "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": [ @@ -30377,6 +118758,35 @@ }, { "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": [ @@ -30387,6 +118797,35 @@ }, { "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": [ @@ -30397,6 +118836,40 @@ }, { "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": [ @@ -30407,6 +118880,40 @@ }, { "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": [ @@ -30417,6 +118924,35 @@ }, { "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": [ @@ -30427,6 +118963,34 @@ }, { "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": [ @@ -30437,6 +119001,34 @@ }, { "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": [ @@ -30447,6 +119039,37 @@ }, { "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": [ @@ -30457,6 +119080,36 @@ }, { "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": [ @@ -30467,6 +119120,35 @@ }, { "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": [ @@ -30477,6 +119159,35 @@ }, { "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": [ @@ -30487,6 +119198,40 @@ }, { "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": [ @@ -30497,6 +119242,35 @@ }, { "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": [ @@ -30507,6 +119281,36 @@ }, { "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": [ @@ -30517,6 +119321,36 @@ }, { "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": [ @@ -30527,6 +119361,35 @@ }, { "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": [ @@ -30537,6 +119400,40 @@ }, { "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": [ @@ -30547,6 +119444,35 @@ }, { "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": [ @@ -30557,6 +119483,40 @@ }, { "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": [ @@ -30567,6 +119527,40 @@ }, { "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": [ @@ -30577,6 +119571,35 @@ }, { "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": [ @@ -30587,6 +119610,35 @@ }, { "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": [ @@ -30597,6 +119649,37 @@ }, { "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": [ @@ -30607,6 +119690,36 @@ }, { "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": [ @@ -30617,6 +119730,38 @@ }, { "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": [ @@ -30627,6 +119772,39 @@ }, { "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": [ @@ -30637,6 +119815,36 @@ }, { "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": [ @@ -30647,6 +119855,35 @@ }, { "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": [ @@ -30657,6 +119894,38 @@ }, { "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": [ @@ -30667,6 +119936,35 @@ }, { "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": [ @@ -30677,6 +119975,34 @@ }, { "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": [ @@ -30687,6 +120013,35 @@ }, { "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": [ @@ -30697,6 +120052,36 @@ }, { "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": [ @@ -30707,6 +120092,37 @@ }, { "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": [ @@ -30717,6 +120133,36 @@ }, { "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": [ @@ -30727,6 +120173,36 @@ }, { "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": [ @@ -30737,6 +120213,36 @@ }, { "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": [ @@ -30747,6 +120253,35 @@ }, { "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": [ @@ -30757,6 +120292,35 @@ }, { "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": [ @@ -30767,6 +120331,34 @@ }, { "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": [ @@ -30777,6 +120369,43 @@ }, { "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": [ @@ -30787,6 +120416,36 @@ }, { "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": [ @@ -30797,6 +120456,40 @@ }, { "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": [ @@ -30807,6 +120500,36 @@ }, { "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": [ @@ -30817,6 +120540,35 @@ }, { "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": [ @@ -30827,6 +120579,56 @@ }, { "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": [ @@ -30837,6 +120639,40 @@ }, { "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": [ @@ -30847,6 +120683,35 @@ }, { "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": [ @@ -30857,6 +120722,37 @@ }, { "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": [ @@ -30867,6 +120763,36 @@ }, { "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": [ @@ -30877,6 +120803,37 @@ }, { "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": [ @@ -30887,6 +120844,35 @@ }, { "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": [ @@ -30897,6 +120883,36 @@ }, { "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": [ @@ -30907,6 +120923,37 @@ }, { "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": [ @@ -30917,6 +120964,34 @@ }, { "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": [ @@ -30927,6 +121002,40 @@ }, { "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": [ @@ -30937,6 +121046,36 @@ }, { "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": [ @@ -30947,6 +121086,36 @@ }, { "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": [ @@ -30957,6 +121126,37 @@ }, { "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": [ @@ -30967,6 +121167,37 @@ }, { "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": [ @@ -30977,6 +121208,40 @@ }, { "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": [ @@ -30987,6 +121252,36 @@ }, { "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": [ @@ -30997,6 +121292,37 @@ }, { "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": [ @@ -31007,6 +121333,40 @@ }, { "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": [ @@ -31017,6 +121377,35 @@ }, { "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": [ @@ -31027,6 +121416,35 @@ }, { "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": [ @@ -31037,6 +121455,40 @@ }, { "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": [ @@ -31047,6 +121499,40 @@ }, { "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": [ @@ -31057,6 +121543,35 @@ }, { "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": [ @@ -31067,6 +121582,35 @@ }, { "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": [ @@ -31077,6 +121621,36 @@ }, { "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": [ @@ -31087,6 +121661,36 @@ }, { "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": [ @@ -31097,6 +121701,40 @@ }, { "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": [ @@ -31107,6 +121745,41 @@ }, { "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": [ @@ -31117,6 +121790,36 @@ }, { "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": [ @@ -31127,6 +121830,38 @@ }, { "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": [ @@ -31137,6 +121872,36 @@ }, { "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": [ @@ -31147,6 +121912,35 @@ }, { "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": [ @@ -31157,6 +121951,38 @@ }, { "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": [ @@ -31167,6 +121993,37 @@ }, { "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": [ @@ -31177,6 +122034,35 @@ }, { "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": [ @@ -31187,6 +122073,35 @@ }, { "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": [ @@ -31197,6 +122112,37 @@ }, { "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": [ @@ -31207,6 +122153,35 @@ }, { "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": [ @@ -31217,6 +122192,37 @@ }, { "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": [ @@ -31227,6 +122233,36 @@ }, { "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": [ @@ -31237,6 +122273,37 @@ }, { "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": [ @@ -31247,6 +122314,35 @@ }, { "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": [ @@ -31257,6 +122353,36 @@ }, { "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": [ @@ -31267,6 +122393,35 @@ }, { "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": [ @@ -31277,6 +122432,38 @@ }, { "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": [ @@ -31287,6 +122474,35 @@ }, { "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": [ @@ -31297,6 +122513,38 @@ }, { "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": [ @@ -31307,6 +122555,38 @@ }, { "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": [ @@ -31317,6 +122597,38 @@ }, { "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": [ @@ -31327,6 +122639,37 @@ }, { "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": [ @@ -31337,6 +122680,37 @@ }, { "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": [ @@ -31347,6 +122721,35 @@ }, { "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": [ @@ -31357,6 +122760,35 @@ }, { "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": [ @@ -31367,6 +122799,40 @@ }, { "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": [ @@ -31377,6 +122843,40 @@ }, { "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": [ @@ -31387,6 +122887,36 @@ }, { "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": [ @@ -31397,6 +122927,36 @@ }, { "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": [ @@ -31407,6 +122967,37 @@ }, { "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": [ @@ -31417,6 +123008,40 @@ }, { "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": [ @@ -31427,6 +123052,37 @@ }, { "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": [ @@ -31437,6 +123093,35 @@ }, { "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": [ @@ -31447,6 +123132,36 @@ }, { "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": [ @@ -31457,6 +123172,37 @@ }, { "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": [ @@ -31467,6 +123213,37 @@ }, { "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": [ @@ -31477,6 +123254,37 @@ }, { "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": [ @@ -31487,6 +123295,36 @@ }, { "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": [ @@ -31497,6 +123335,37 @@ }, { "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": [ @@ -31507,6 +123376,34 @@ }, { "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": [ @@ -31517,6 +123414,40 @@ }, { "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": [ @@ -31527,6 +123458,40 @@ }, { "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": [ @@ -31537,6 +123502,35 @@ }, { "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": [ @@ -31547,6 +123541,35 @@ }, { "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": [ @@ -31557,6 +123580,35 @@ }, { "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": [ @@ -31567,6 +123619,37 @@ }, { "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": [ @@ -31577,6 +123660,35 @@ }, { "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": [ @@ -31587,6 +123699,36 @@ }, { "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": [ @@ -31597,6 +123739,37 @@ }, { "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": [ @@ -31607,6 +123780,37 @@ }, { "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": [ @@ -31617,6 +123821,38 @@ }, { "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": [ @@ -31627,6 +123863,40 @@ }, { "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": [ @@ -31637,6 +123907,35 @@ }, { "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": [ @@ -31647,6 +123946,35 @@ }, { "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": [ @@ -31657,6 +123985,36 @@ }, { "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": [ @@ -31667,6 +124025,37 @@ }, { "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": [ @@ -31677,6 +124066,35 @@ }, { "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": [ @@ -31687,6 +124105,35 @@ }, { "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": [ @@ -31697,6 +124144,34 @@ }, { "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": [ @@ -31707,6 +124182,37 @@ }, { "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": [ @@ -31717,6 +124223,36 @@ }, { "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": [ @@ -31727,6 +124263,36 @@ }, { "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": [ @@ -31737,6 +124303,41 @@ }, { "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": [ @@ -31747,6 +124348,36 @@ }, { "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": [ @@ -31757,6 +124388,35 @@ }, { "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": [ @@ -31767,6 +124427,37 @@ }, { "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": [ @@ -31777,6 +124468,38 @@ }, { "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": [ @@ -31787,6 +124510,36 @@ }, { "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": [ @@ -31797,6 +124550,36 @@ }, { "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": [ @@ -31807,6 +124590,35 @@ }, { "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": [ @@ -31817,6 +124629,37 @@ }, { "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": [ @@ -31827,6 +124670,35 @@ }, { "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": [ @@ -31837,6 +124709,35 @@ }, { "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": [ @@ -31847,6 +124748,35 @@ }, { "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": [ @@ -31857,6 +124787,36 @@ }, { "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": [ @@ -31867,6 +124827,41 @@ }, { "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": [ @@ -31877,6 +124872,40 @@ }, { "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": [ @@ -31887,6 +124916,40 @@ }, { "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": [ @@ -31897,6 +124960,36 @@ }, { "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": [ @@ -31907,6 +125000,38 @@ }, { "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": [ @@ -31917,6 +125042,37 @@ }, { "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": [ @@ -31927,6 +125083,37 @@ }, { "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": [ @@ -31937,6 +125124,35 @@ }, { "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": [ @@ -31947,6 +125163,35 @@ }, { "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": [ @@ -31957,6 +125202,36 @@ }, { "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": [ @@ -31967,6 +125242,36 @@ }, { "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": [ @@ -31977,6 +125282,36 @@ }, { "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": [ @@ -31987,6 +125322,36 @@ }, { "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": [ @@ -31997,6 +125362,36 @@ }, { "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": [ @@ -32007,6 +125402,35 @@ }, { "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": [ @@ -32017,6 +125441,37 @@ }, { "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": [ @@ -32027,6 +125482,36 @@ }, { "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": [ @@ -32037,6 +125522,38 @@ }, { "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": [ @@ -32047,6 +125564,40 @@ }, { "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": [ @@ -32057,6 +125608,36 @@ }, { "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": [ @@ -32067,6 +125648,37 @@ }, { "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": [ @@ -32077,6 +125689,35 @@ }, { "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": [ @@ -32087,6 +125728,38 @@ }, { "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": [ @@ -32097,6 +125770,35 @@ }, { "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": [ @@ -32107,6 +125809,35 @@ }, { "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": [ @@ -32117,6 +125848,36 @@ }, { "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": [ @@ -32127,6 +125888,40 @@ }, { "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": [ @@ -32137,6 +125932,38 @@ }, { "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": [ @@ -32147,6 +125974,40 @@ }, { "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": [ @@ -32157,6 +126018,35 @@ }, { "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": [ @@ -32167,6 +126057,44 @@ }, { "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": [ @@ -32177,6 +126105,36 @@ }, { "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": [ @@ -32187,6 +126145,36 @@ }, { "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": [ @@ -32197,6 +126185,36 @@ }, { "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": [ @@ -32207,6 +126225,35 @@ }, { "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": [ @@ -32217,6 +126264,37 @@ }, { "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": [ @@ -32227,6 +126305,36 @@ }, { "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": [ @@ -32237,6 +126345,37 @@ }, { "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": [ @@ -32247,6 +126386,35 @@ }, { "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": [ @@ -32257,6 +126425,35 @@ }, { "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": [ @@ -32267,6 +126464,36 @@ }, { "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": [ @@ -32277,6 +126504,35 @@ }, { "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": [ @@ -32287,6 +126543,36 @@ }, { "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": [ @@ -32297,6 +126583,37 @@ }, { "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": [ @@ -32307,6 +126624,37 @@ }, { "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": [ @@ -32317,6 +126665,36 @@ }, { "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": [ @@ -32327,6 +126705,35 @@ }, { "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": [ @@ -32337,6 +126744,35 @@ }, { "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": [ @@ -32347,6 +126783,37 @@ }, { "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": [ @@ -32357,6 +126824,41 @@ }, { "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": [ @@ -32367,6 +126869,37 @@ }, { "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": [ @@ -32377,6 +126910,43 @@ }, { "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": [ @@ -32387,6 +126957,42 @@ }, { "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": [ @@ -32397,6 +127003,40 @@ }, { "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": [ @@ -32407,6 +127047,42 @@ }, { "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": [ @@ -32417,6 +127093,40 @@ }, { "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": [ @@ -32427,6 +127137,46 @@ }, { "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": [ @@ -32437,6 +127187,39 @@ }, { "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": [ @@ -32447,6 +127230,39 @@ }, { "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": [ @@ -32457,6 +127273,39 @@ }, { "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": [ @@ -32467,6 +127316,35 @@ }, { "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": [ @@ -32477,6 +127355,40 @@ }, { "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": [ @@ -32487,6 +127399,42 @@ }, { "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": [ @@ -32497,6 +127445,43 @@ }, { "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": [ @@ -32507,6 +127492,35 @@ }, { "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": [ @@ -32517,6 +127531,40 @@ }, { "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": [ @@ -32527,6 +127575,41 @@ }, { "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": [ @@ -32537,6 +127620,40 @@ }, { "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": [ @@ -32547,6 +127664,40 @@ }, { "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": [ @@ -32557,6 +127708,40 @@ }, { "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": [ @@ -32567,6 +127752,40 @@ }, { "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": [ @@ -32577,6 +127796,47 @@ }, { "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": [ @@ -32587,6 +127847,45 @@ }, { "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": [ @@ -32597,6 +127896,52 @@ }, { "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": [ @@ -32607,6 +127952,42 @@ }, { "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": [ @@ -32617,6 +127998,45 @@ }, { "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": [ @@ -32627,6 +128047,35 @@ }, { "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": [ @@ -32637,6 +128086,41 @@ }, { "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": [ @@ -32647,6 +128131,37 @@ }, { "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": [ @@ -32657,6 +128172,40 @@ }, { "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": [ @@ -32667,6 +128216,37 @@ }, { "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": [ @@ -32677,6 +128257,45 @@ }, { "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": [ @@ -32687,6 +128306,43 @@ }, { "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": [ @@ -32697,6 +128353,42 @@ }, { "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": [ @@ -32707,6 +128399,43 @@ }, { "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": [ @@ -32717,6 +128446,43 @@ }, { "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": [ @@ -32727,6 +128493,44 @@ }, { "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": [ @@ -32737,6 +128541,41 @@ }, { "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": [ @@ -32747,6 +128586,41 @@ }, { "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": [ @@ -32757,6 +128631,43 @@ }, { "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": [ @@ -32767,6 +128678,39 @@ }, { "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": [ @@ -32777,6 +128721,44 @@ }, { "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": [ @@ -32787,6 +128769,40 @@ }, { "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": [ @@ -32797,6 +128813,40 @@ }, { "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": [ @@ -32807,6 +128857,40 @@ }, { "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": [ @@ -32817,6 +128901,40 @@ }, { "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": [ @@ -32827,6 +128945,40 @@ }, { "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": [ @@ -32837,6 +128989,40 @@ }, { "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": [ @@ -32847,6 +129033,40 @@ }, { "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": [ @@ -32857,6 +129077,40 @@ }, { "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": [ @@ -32867,6 +129121,40 @@ }, { "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": [ @@ -32877,6 +129165,40 @@ }, { "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": [ @@ -32887,6 +129209,37 @@ }, { "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": [ @@ -32897,6 +129250,40 @@ }, { "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": [ @@ -32907,6 +129294,40 @@ }, { "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": [ @@ -32917,6 +129338,40 @@ }, { "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": [ @@ -32927,6 +129382,40 @@ }, { "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": [ @@ -32937,6 +129426,40 @@ }, { "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": [ @@ -32947,6 +129470,40 @@ }, { "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": [ @@ -32957,6 +129514,40 @@ }, { "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": [ @@ -32967,6 +129558,40 @@ }, { "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": [ @@ -32977,6 +129602,38 @@ }, { "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": [ @@ -32987,6 +129644,39 @@ }, { "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": [ @@ -32997,6 +129687,36 @@ }, { "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": [ @@ -33007,6 +129727,40 @@ }, { "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": [ @@ -33017,6 +129771,37 @@ }, { "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": [ @@ -33027,6 +129812,40 @@ }, { "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": [ @@ -33037,6 +129856,40 @@ }, { "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": [ @@ -33047,6 +129900,40 @@ }, { "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": [ @@ -33057,6 +129944,40 @@ }, { "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": [ @@ -33067,6 +129988,41 @@ }, { "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": [ @@ -33077,6 +130033,40 @@ }, { "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": [ @@ -33087,6 +130077,37 @@ }, { "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": [ @@ -33097,6 +130118,40 @@ }, { "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": [ @@ -33107,6 +130162,41 @@ }, { "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": [ @@ -33117,6 +130207,35 @@ }, { "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": [ @@ -33127,6 +130246,40 @@ }, { "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": [ @@ -33137,6 +130290,40 @@ }, { "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": [ @@ -33147,6 +130334,40 @@ }, { "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": [ @@ -33157,6 +130378,40 @@ }, { "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": [ @@ -33167,6 +130422,40 @@ }, { "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": [ @@ -33177,6 +130466,40 @@ }, { "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": [ @@ -33187,6 +130510,40 @@ }, { "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": [ @@ -33197,6 +130554,40 @@ }, { "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": [ @@ -33207,6 +130598,35 @@ }, { "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": [ @@ -33217,6 +130637,35 @@ }, { "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": [ @@ -33227,6 +130676,40 @@ }, { "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": [ @@ -33237,6 +130720,40 @@ }, { "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": [ @@ -33247,6 +130764,40 @@ }, { "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": [ @@ -33257,6 +130808,40 @@ }, { "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": [ @@ -33267,6 +130852,40 @@ }, { "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": [ @@ -33277,6 +130896,40 @@ }, { "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": [ @@ -33287,6 +130940,35 @@ }, { "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": [ @@ -33297,6 +130979,35 @@ }, { "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": [ @@ -33307,6 +131018,40 @@ }, { "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": [ @@ -33317,6 +131062,40 @@ }, { "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": [ @@ -33327,6 +131106,40 @@ }, { "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": [ @@ -33337,6 +131150,39 @@ }, { "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": [ @@ -33347,6 +131193,40 @@ }, { "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": [ @@ -33357,6 +131237,36 @@ }, { "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": [ @@ -33367,6 +131277,36 @@ }, { "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": [ @@ -33377,6 +131317,40 @@ }, { "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": [ @@ -33387,6 +131361,40 @@ }, { "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": [ @@ -33397,6 +131405,36 @@ }, { "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": [ @@ -33407,6 +131445,42 @@ }, { "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": [ @@ -33417,6 +131491,43 @@ }, { "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": [ @@ -33427,6 +131538,41 @@ }, { "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": [ @@ -33437,6 +131583,42 @@ }, { "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": [ @@ -33447,6 +131629,40 @@ }, { "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": [ @@ -33457,6 +131673,40 @@ }, { "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": [ @@ -33467,6 +131717,39 @@ }, { "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": [ @@ -33477,6 +131760,39 @@ }, { "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": [ @@ -33487,6 +131803,36 @@ }, { "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": [ @@ -33497,6 +131843,37 @@ }, { "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": [ @@ -33507,6 +131884,39 @@ }, { "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": [ @@ -33517,6 +131927,40 @@ }, { "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": [ @@ -33527,6 +131971,39 @@ }, { "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": [ @@ -33537,6 +132014,40 @@ }, { "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": [ @@ -33547,6 +132058,40 @@ }, { "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": [ @@ -33557,6 +132102,39 @@ }, { "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": [ @@ -33567,6 +132145,40 @@ }, { "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": [ @@ -33577,6 +132189,36 @@ }, { "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": [ @@ -33587,6 +132229,39 @@ }, { "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": [ @@ -33597,6 +132272,42 @@ }, { "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": [ @@ -33607,6 +132318,40 @@ }, { "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": [ @@ -33617,6 +132362,40 @@ }, { "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": [ @@ -33627,6 +132406,40 @@ }, { "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": [ @@ -33637,6 +132450,40 @@ }, { "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": [ @@ -33647,6 +132494,40 @@ }, { "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": [ @@ -33657,6 +132538,39 @@ }, { "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": [ @@ -33667,6 +132581,42 @@ }, { "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": [ @@ -33677,6 +132627,40 @@ }, { "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": [ @@ -33687,6 +132671,39 @@ }, { "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": [ @@ -33697,6 +132714,39 @@ }, { "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": [ @@ -33707,6 +132757,42 @@ }, { "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": [ @@ -33717,6 +132803,44 @@ }, { "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": [ @@ -33727,6 +132851,40 @@ }, { "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": [ @@ -33737,6 +132895,39 @@ }, { "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": [ @@ -33747,6 +132938,39 @@ }, { "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": [ @@ -33757,6 +132981,39 @@ }, { "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": [ @@ -33767,6 +133024,42 @@ }, { "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": [ @@ -33777,6 +133070,68 @@ }, { "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": [ @@ -33787,6 +133142,39 @@ }, { "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": [ @@ -33797,6 +133185,39 @@ }, { "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": [ @@ -33807,6 +133228,42 @@ }, { "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": [ @@ -33817,6 +133274,40 @@ }, { "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": [ @@ -33827,6 +133318,37 @@ }, { "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": [ @@ -33837,6 +133359,40 @@ }, { "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": [ @@ -33847,6 +133403,39 @@ }, { "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": [ @@ -33857,6 +133446,40 @@ }, { "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": [ @@ -33867,6 +133490,40 @@ }, { "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": [ @@ -33877,6 +133534,40 @@ }, { "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": [ @@ -33887,6 +133578,39 @@ }, { "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": [ @@ -33897,6 +133621,40 @@ }, { "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": [ @@ -33907,6 +133665,40 @@ }, { "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": [ @@ -33917,6 +133709,39 @@ }, { "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": [ @@ -33927,6 +133752,40 @@ }, { "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": [ @@ -33937,6 +133796,35 @@ }, { "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": [ @@ -33947,6 +133835,40 @@ }, { "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": [ @@ -33957,6 +133879,42 @@ }, { "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": [ @@ -33967,6 +133925,41 @@ }, { "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": [ @@ -33977,6 +133970,39 @@ }, { "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": [ @@ -33987,6 +134013,41 @@ }, { "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": [ @@ -33997,6 +134058,38 @@ }, { "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": [ @@ -34007,6 +134100,42 @@ }, { "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": [ @@ -34017,6 +134146,43 @@ }, { "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": [ @@ -34027,6 +134193,42 @@ }, { "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": [ @@ -34037,6 +134239,40 @@ }, { "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": [ @@ -34047,6 +134283,41 @@ }, { "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": [ @@ -34057,6 +134328,45 @@ }, { "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": [ @@ -34067,6 +134377,41 @@ }, { "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": [ @@ -34077,6 +134422,41 @@ }, { "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": [ @@ -34087,6 +134467,42 @@ }, { "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": [ @@ -34097,6 +134513,41 @@ }, { "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": [ @@ -34107,6 +134558,41 @@ }, { "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": [ @@ -34117,6 +134603,42 @@ }, { "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": [ @@ -34127,6 +134649,42 @@ }, { "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": [ @@ -34137,6 +134695,43 @@ }, { "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": [ @@ -34147,6 +134742,43 @@ }, { "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": [ @@ -34157,6 +134789,41 @@ }, { "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": [ @@ -34167,6 +134834,39 @@ }, { "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": [ @@ -34177,6 +134877,36 @@ }, { "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": [ @@ -34187,6 +134917,41 @@ }, { "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": [ @@ -34197,6 +134962,41 @@ }, { "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": [ @@ -34207,6 +135007,37 @@ }, { "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": [ @@ -34217,6 +135048,58 @@ }, { "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": [ @@ -34227,6 +135110,37 @@ }, { "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": [ @@ -34237,6 +135151,41 @@ }, { "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": [ @@ -34247,6 +135196,39 @@ }, { "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": [ @@ -34257,6 +135239,43 @@ }, { "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": [ @@ -34267,6 +135286,39 @@ }, { "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": [ @@ -34277,6 +135329,35 @@ }, { "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": [ @@ -34287,6 +135368,41 @@ }, { "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": [ @@ -34297,6 +135413,40 @@ }, { "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": [ @@ -34307,6 +135457,40 @@ }, { "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": [ @@ -34317,6 +135501,42 @@ }, { "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": [ @@ -34327,6 +135547,39 @@ }, { "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": [ @@ -34337,6 +135590,42 @@ }, { "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": [ @@ -34347,6 +135636,41 @@ }, { "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": [ @@ -34357,6 +135681,41 @@ }, { "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": [ @@ -34367,6 +135726,40 @@ }, { "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": [ @@ -34377,6 +135770,36 @@ }, { "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": [ @@ -34387,6 +135810,40 @@ }, { "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": [ @@ -34397,6 +135854,39 @@ }, { "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": [ @@ -34407,6 +135897,58 @@ }, { "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": [ @@ -34417,6 +135959,41 @@ }, { "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": [ @@ -34427,6 +136004,41 @@ }, { "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": [ @@ -34437,6 +136049,40 @@ }, { "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": [ @@ -34447,6 +136093,43 @@ }, { "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": [ @@ -34457,6 +136140,40 @@ }, { "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": [ @@ -34467,6 +136184,40 @@ }, { "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": [ @@ -34477,6 +136228,40 @@ }, { "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": [ @@ -34487,6 +136272,40 @@ }, { "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": [ @@ -34497,6 +136316,36 @@ }, { "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": [ @@ -34507,6 +136356,35 @@ }, { "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": [ @@ -34517,6 +136395,40 @@ }, { "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": [ @@ -34527,6 +136439,40 @@ }, { "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": [ @@ -34537,6 +136483,35 @@ }, { "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": [ @@ -34547,6 +136522,36 @@ }, { "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": [ @@ -34557,6 +136562,36 @@ }, { "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": [ @@ -34567,6 +136602,35 @@ }, { "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": [ @@ -34577,6 +136641,40 @@ }, { "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": [ @@ -34587,6 +136685,40 @@ }, { "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": [ @@ -34597,6 +136729,40 @@ }, { "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": [ @@ -34607,6 +136773,40 @@ }, { "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": [ @@ -34617,6 +136817,40 @@ }, { "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": [ @@ -34627,6 +136861,40 @@ }, { "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": [ @@ -34637,6 +136905,40 @@ }, { "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": [ @@ -34647,6 +136949,40 @@ }, { "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": [ @@ -34657,6 +136993,40 @@ }, { "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": [ @@ -34667,6 +137037,40 @@ }, { "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": [ @@ -34677,6 +137081,40 @@ }, { "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": [ @@ -34687,6 +137125,40 @@ }, { "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": [ @@ -34697,6 +137169,40 @@ }, { "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": [ @@ -34707,6 +137213,40 @@ }, { "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": [ @@ -34717,6 +137257,40 @@ }, { "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": [ @@ -34727,6 +137301,40 @@ }, { "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": [ @@ -34737,6 +137345,39 @@ }, { "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": [ @@ -34747,6 +137388,40 @@ }, { "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": [ @@ -34757,6 +137432,40 @@ }, { "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": [ @@ -34767,6 +137476,40 @@ }, { "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": [ @@ -34777,6 +137520,35 @@ }, { "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": [ @@ -34787,6 +137559,40 @@ }, { "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": [ @@ -34797,6 +137603,38 @@ }, { "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": [ @@ -34807,6 +137645,40 @@ }, { "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": [ @@ -34817,6 +137689,40 @@ }, { "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": [ @@ -34827,6 +137733,36 @@ }, { "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": [ @@ -34837,6 +137773,35 @@ }, { "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": [ @@ -34847,6 +137812,40 @@ }, { "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": [ @@ -34857,6 +137856,36 @@ }, { "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": [ @@ -34867,6 +137896,40 @@ }, { "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": [ @@ -34877,6 +137940,36 @@ }, { "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": [ @@ -34887,6 +137980,36 @@ }, { "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": [ @@ -34897,6 +138020,41 @@ }, { "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": [ @@ -34907,6 +138065,40 @@ }, { "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": [ @@ -34917,6 +138109,35 @@ }, { "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": [ @@ -34927,6 +138148,40 @@ }, { "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": [ @@ -34937,6 +138192,40 @@ }, { "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": [ @@ -34947,6 +138236,40 @@ }, { "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": [ @@ -34957,6 +138280,47 @@ }, { "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": [ @@ -34967,6 +138331,40 @@ }, { "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": [ @@ -34977,6 +138375,40 @@ }, { "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": [ @@ -34987,6 +138419,40 @@ }, { "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": [ @@ -34997,6 +138463,40 @@ }, { "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": [ @@ -35007,6 +138507,42 @@ }, { "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": [ @@ -35017,6 +138553,41 @@ }, { "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": [ @@ -35027,6 +138598,40 @@ }, { "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": [ @@ -35037,6 +138642,46 @@ }, { "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": [ @@ -35047,6 +138692,40 @@ }, { "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": [ @@ -35057,6 +138736,40 @@ }, { "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": [ @@ -35067,6 +138780,42 @@ }, { "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": [ @@ -35077,6 +138826,39 @@ }, { "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": [ @@ -35087,6 +138869,40 @@ }, { "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": [ @@ -35097,6 +138913,40 @@ }, { "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": [ @@ -35107,6 +138957,40 @@ }, { "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": [ @@ -35117,6 +139001,40 @@ }, { "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": [ @@ -35127,6 +139045,40 @@ }, { "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": [ @@ -35137,6 +139089,36 @@ }, { "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": [ @@ -35147,6 +139129,35 @@ }, { "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": [ @@ -35157,6 +139168,40 @@ }, { "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": [ @@ -35167,6 +139212,39 @@ }, { "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": [ @@ -35177,6 +139255,40 @@ }, { "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": [ @@ -35187,6 +139299,35 @@ }, { "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": [ @@ -35197,6 +139338,40 @@ }, { "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": [ @@ -35207,6 +139382,36 @@ }, { "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": [ @@ -35217,6 +139422,35 @@ }, { "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": [ @@ -35227,6 +139461,35 @@ }, { "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": [ @@ -35237,6 +139500,35 @@ }, { "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": [ @@ -35247,6 +139539,40 @@ }, { "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": [ @@ -35257,6 +139583,35 @@ }, { "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": [ @@ -35267,6 +139622,35 @@ }, { "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": [ @@ -35277,6 +139661,35 @@ }, { "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": [ @@ -35287,6 +139700,37 @@ }, { "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": [ @@ -35297,6 +139741,35 @@ }, { "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": [ @@ -35307,6 +139780,35 @@ }, { "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": [ @@ -35317,6 +139819,35 @@ }, { "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": [ @@ -35327,6 +139858,35 @@ }, { "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": [ @@ -35337,6 +139897,36 @@ }, { "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": [ @@ -35347,6 +139937,36 @@ }, { "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": [ @@ -35357,6 +139977,42 @@ }, { "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": [ @@ -35367,6 +140023,35 @@ }, { "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": [ @@ -35377,6 +140062,36 @@ }, { "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": [ @@ -35387,6 +140102,35 @@ }, { "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": [ @@ -35397,6 +140141,35 @@ }, { "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": [ @@ -35407,6 +140180,35 @@ }, { "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": [ @@ -35417,6 +140219,35 @@ }, { "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": [ @@ -35427,6 +140258,35 @@ }, { "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": [ @@ -35437,6 +140297,35 @@ }, { "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": [ @@ -35447,6 +140336,36 @@ }, { "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": [ @@ -35457,6 +140376,35 @@ }, { "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": [ @@ -35467,6 +140415,35 @@ }, { "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": [ @@ -35477,6 +140454,35 @@ }, { "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": [ @@ -35487,6 +140493,35 @@ }, { "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": [ @@ -35497,6 +140532,37 @@ }, { "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": [ @@ -35507,6 +140573,35 @@ }, { "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": [ @@ -35517,6 +140612,35 @@ }, { "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": [ @@ -35527,6 +140651,35 @@ }, { "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": [ @@ -35537,6 +140690,35 @@ }, { "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": [ @@ -35547,6 +140729,35 @@ }, { "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": [ @@ -35557,6 +140768,35 @@ }, { "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": [ @@ -35567,6 +140807,35 @@ }, { "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": [ @@ -35577,6 +140846,35 @@ }, { "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": [ @@ -35587,6 +140885,35 @@ }, { "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": [ @@ -35597,6 +140924,35 @@ }, { "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": [ @@ -35607,6 +140963,36 @@ }, { "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": [ @@ -35617,6 +141003,35 @@ }, { "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": [ @@ -35627,6 +141042,35 @@ }, { "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": [ @@ -35637,6 +141081,35 @@ }, { "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": [ @@ -35647,6 +141120,41 @@ }, { "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": [ @@ -35657,6 +141165,36 @@ }, { "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": [ @@ -35667,6 +141205,36 @@ }, { "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": [ @@ -35677,6 +141245,37 @@ }, { "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": [ @@ -35687,6 +141286,35 @@ }, { "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": [ @@ -35697,6 +141325,35 @@ }, { "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": [ @@ -35707,6 +141364,35 @@ }, { "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": [ @@ -35717,6 +141403,41 @@ }, { "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": [ @@ -35727,6 +141448,35 @@ }, { "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": [ @@ -35737,6 +141487,35 @@ }, { "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": [ @@ -35747,6 +141526,37 @@ }, { "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": [ @@ -35757,6 +141567,40 @@ }, { "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": [ @@ -35767,6 +141611,35 @@ }, { "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": [ @@ -35777,6 +141650,40 @@ }, { "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": [ @@ -35787,6 +141694,36 @@ }, { "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": [ @@ -35797,6 +141734,35 @@ }, { "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": [ @@ -35807,6 +141773,35 @@ }, { "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": [ @@ -35817,6 +141812,37 @@ }, { "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": [ @@ -35827,6 +141853,36 @@ }, { "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": [ @@ -35837,6 +141893,36 @@ }, { "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": [ @@ -35847,6 +141933,35 @@ }, { "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": [ @@ -35857,6 +141972,37 @@ }, { "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": [ @@ -35867,6 +142013,38 @@ }, { "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": [ @@ -35877,6 +142055,37 @@ }, { "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": [ @@ -35887,6 +142096,36 @@ }, { "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": [ @@ -35897,6 +142136,38 @@ }, { "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": [ @@ -35907,6 +142178,35 @@ }, { "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": [ @@ -35917,6 +142217,36 @@ }, { "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": [ @@ -35927,6 +142257,35 @@ }, { "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": [ @@ -35937,6 +142296,35 @@ }, { "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": [ @@ -35947,6 +142335,35 @@ }, { "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": [ @@ -35957,6 +142374,36 @@ }, { "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": [ @@ -35967,6 +142414,35 @@ }, { "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": [ @@ -35977,6 +142453,35 @@ }, { "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": [ @@ -35987,6 +142492,36 @@ }, { "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": [ @@ -35997,6 +142532,35 @@ }, { "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": [ @@ -36007,6 +142571,36 @@ }, { "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": [ @@ -36017,6 +142611,35 @@ }, { "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": [ @@ -36027,6 +142650,36 @@ }, { "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": [ @@ -36037,6 +142690,37 @@ }, { "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": [ @@ -36047,6 +142731,36 @@ }, { "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": [ @@ -36057,6 +142771,36 @@ }, { "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": [ @@ -36067,6 +142811,37 @@ }, { "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": [ @@ -36077,6 +142852,40 @@ }, { "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": [ @@ -36087,6 +142896,37 @@ }, { "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": [ @@ -36097,6 +142937,35 @@ }, { "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": [ @@ -36107,6 +142976,41 @@ }, { "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": [ @@ -36117,6 +143021,35 @@ }, { "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": [ @@ -36127,6 +143060,35 @@ }, { "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": [ @@ -36137,6 +143099,35 @@ }, { "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": [ @@ -36147,6 +143138,42 @@ }, { "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": [ @@ -36157,6 +143184,37 @@ }, { "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": [ @@ -36167,6 +143225,33 @@ }, { "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": [ @@ -36177,6 +143262,35 @@ }, { "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": [ @@ -36187,6 +143301,40 @@ }, { "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": [ @@ -36197,6 +143345,37 @@ }, { "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": [ @@ -36207,6 +143386,36 @@ }, { "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": [ @@ -36217,6 +143426,35 @@ }, { "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": [ @@ -36227,6 +143465,35 @@ }, { "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": [ @@ -36237,6 +143504,35 @@ }, { "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": [ @@ -36247,6 +143543,40 @@ }, { "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": [ @@ -36257,6 +143587,36 @@ }, { "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": [ @@ -36267,6 +143627,35 @@ }, { "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": [ @@ -36277,6 +143666,35 @@ }, { "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": [ @@ -36287,6 +143705,38 @@ }, { "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": [ @@ -36297,6 +143747,36 @@ }, { "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": [ @@ -36307,6 +143787,37 @@ }, { "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": [ @@ -36317,6 +143828,35 @@ }, { "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": [ @@ -36327,6 +143867,37 @@ }, { "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": [ @@ -36337,6 +143908,35 @@ }, { "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": [ @@ -36347,6 +143947,36 @@ }, { "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": [ @@ -36357,6 +143987,36 @@ }, { "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": [ @@ -36367,6 +144027,35 @@ }, { "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": [ @@ -36377,6 +144066,37 @@ }, { "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": [ @@ -36387,6 +144107,40 @@ }, { "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": [ @@ -36397,6 +144151,37 @@ }, { "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": [ @@ -36407,6 +144192,37 @@ }, { "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": [ @@ -36417,6 +144233,37 @@ }, { "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": [ @@ -36427,6 +144274,38 @@ }, { "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": [ @@ -36437,6 +144316,35 @@ }, { "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": [ @@ -36447,6 +144355,36 @@ }, { "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": [ @@ -36457,6 +144395,39 @@ }, { "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": [ @@ -36467,6 +144438,36 @@ }, { "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": [ @@ -36477,6 +144478,39 @@ }, { "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": [ @@ -36487,6 +144521,35 @@ }, { "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": [ @@ -36497,6 +144560,36 @@ }, { "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": [ @@ -36507,6 +144600,35 @@ }, { "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": [ @@ -36517,6 +144639,36 @@ }, { "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": [ @@ -36527,6 +144679,35 @@ }, { "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": [ @@ -36537,6 +144718,37 @@ }, { "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": [ @@ -36547,6 +144759,36 @@ }, { "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": [ @@ -36557,6 +144799,39 @@ }, { "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": [ @@ -36567,6 +144842,37 @@ }, { "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": [ @@ -36577,6 +144883,40 @@ }, { "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": [ @@ -36587,6 +144927,38 @@ }, { "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": [ @@ -36597,6 +144969,35 @@ }, { "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": [ @@ -36607,6 +145008,35 @@ }, { "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": [ @@ -36617,6 +145047,36 @@ }, { "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": [ @@ -36627,6 +145087,40 @@ }, { "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": [ @@ -36637,6 +145131,37 @@ }, { "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": [ @@ -36647,6 +145172,39 @@ }, { "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": [ @@ -36657,6 +145215,40 @@ }, { "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": [ @@ -36667,6 +145259,35 @@ }, { "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": [ @@ -36677,6 +145298,42 @@ }, { "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": [ @@ -36687,6 +145344,40 @@ }, { "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": [ @@ -36697,6 +145388,40 @@ }, { "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": [ @@ -36707,6 +145432,35 @@ }, { "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": [ @@ -36717,6 +145471,36 @@ }, { "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": [ @@ -36727,6 +145511,36 @@ }, { "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": [ @@ -36737,6 +145551,53 @@ }, { "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": [ @@ -36747,6 +145608,42 @@ }, { "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": [ @@ -36757,6 +145654,37 @@ }, { "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": [ @@ -36767,6 +145695,35 @@ }, { "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": [ @@ -36777,6 +145734,35 @@ }, { "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": [ @@ -36787,6 +145773,35 @@ }, { "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": [ @@ -36797,6 +145812,35 @@ }, { "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": [ @@ -36807,6 +145851,67 @@ }, { "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": [ @@ -36817,6 +145922,39 @@ }, { "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": [ @@ -36827,6 +145965,40 @@ }, { "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": [ @@ -36837,6 +146009,39 @@ }, { "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": [ @@ -36847,6 +146052,40 @@ }, { "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": [ @@ -36857,6 +146096,40 @@ }, { "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": [ @@ -36867,6 +146140,40 @@ }, { "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": [ @@ -36877,6 +146184,36 @@ }, { "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": [ @@ -36887,6 +146224,35 @@ }, { "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": [ @@ -36897,6 +146263,39 @@ }, { "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": [ @@ -36907,6 +146306,37 @@ }, { "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": [ @@ -36917,6 +146347,35 @@ }, { "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": [ @@ -36927,6 +146386,37 @@ }, { "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": [ @@ -36937,6 +146427,38 @@ }, { "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": [ @@ -36947,6 +146469,37 @@ }, { "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": [ @@ -36957,6 +146510,40 @@ }, { "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": [ @@ -36967,6 +146554,38 @@ }, { "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": [ @@ -36977,6 +146596,39 @@ }, { "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": [ @@ -36987,6 +146639,38 @@ }, { "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": [ @@ -36997,6 +146681,37 @@ }, { "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": [ @@ -37007,6 +146722,36 @@ }, { "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": [ @@ -37017,6 +146762,88 @@ }, { "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": [ @@ -37027,6 +146854,35 @@ }, { "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": [ @@ -37037,6 +146893,35 @@ }, { "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": [ @@ -37047,6 +146932,36 @@ }, { "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": [ @@ -37057,6 +146972,35 @@ }, { "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": [ @@ -37067,6 +147011,37 @@ }, { "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": [ @@ -37077,6 +147052,37 @@ }, { "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": [ @@ -37087,6 +147093,41 @@ }, { "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": [ @@ -37097,6 +147138,37 @@ }, { "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": [ @@ -37107,6 +147179,38 @@ }, { "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": [ @@ -37117,6 +147221,35 @@ }, { "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": [ @@ -37127,6 +147260,35 @@ }, { "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": [ @@ -37137,6 +147299,35 @@ }, { "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": [ @@ -37147,6 +147338,38 @@ }, { "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": [ @@ -37157,6 +147380,39 @@ }, { "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": [ @@ -37167,6 +147423,35 @@ }, { "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": [ @@ -37177,6 +147462,37 @@ }, { "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": [ @@ -37187,6 +147503,35 @@ }, { "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": [ @@ -37197,6 +147542,40 @@ }, { "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": [ @@ -37207,6 +147586,41 @@ }, { "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": [ @@ -37217,6 +147631,35 @@ }, { "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": [ @@ -37227,6 +147670,35 @@ }, { "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": [ @@ -37237,6 +147709,36 @@ }, { "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": [ @@ -37247,6 +147749,35 @@ }, { "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": [ @@ -37257,6 +147788,35 @@ }, { "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": [ @@ -37267,6 +147827,35 @@ }, { "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": [ @@ -37277,6 +147866,40 @@ }, { "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": [ @@ -37287,6 +147910,36 @@ }, { "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": [ @@ -37297,6 +147950,37 @@ }, { "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": [ @@ -37307,6 +147991,38 @@ }, { "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": [ @@ -37317,6 +148033,36 @@ }, { "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": [ @@ -37327,6 +148073,35 @@ }, { "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": [ @@ -37337,6 +148112,36 @@ }, { "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": [ @@ -37347,6 +148152,39 @@ }, { "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": [ @@ -37357,6 +148195,35 @@ }, { "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": [ @@ -37367,6 +148234,123 @@ }, { "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": [ @@ -37377,6 +148361,42 @@ }, { "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": [ @@ -37387,6 +148407,38 @@ }, { "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": [ @@ -37397,6 +148449,39 @@ }, { "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": [ @@ -37407,6 +148492,53 @@ }, { "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": [ @@ -37417,6 +148549,38 @@ }, { "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": [ @@ -37427,6 +148591,38 @@ }, { "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": [ @@ -37437,6 +148633,37 @@ }, { "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": [ @@ -37447,6 +148674,35 @@ }, { "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": [ @@ -37457,6 +148713,38 @@ }, { "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": [ @@ -37467,6 +148755,37 @@ }, { "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": [ @@ -37477,6 +148796,35 @@ }, { "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": [ @@ -37487,6 +148835,38 @@ }, { "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": [ @@ -37497,6 +148877,35 @@ }, { "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": [ @@ -37507,6 +148916,35 @@ }, { "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": [ @@ -37517,6 +148955,35 @@ }, { "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": [ @@ -37527,6 +148994,37 @@ }, { "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": [ @@ -37537,6 +149035,35 @@ }, { "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": [ @@ -37547,6 +149074,37 @@ }, { "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": [ @@ -37557,6 +149115,37 @@ }, { "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": [ @@ -37567,6 +149156,35 @@ }, { "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": [ @@ -37577,6 +149195,39 @@ }, { "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": [ @@ -37587,6 +149238,37 @@ }, { "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": [ @@ -37597,6 +149279,35 @@ }, { "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": [ @@ -37607,6 +149318,35 @@ }, { "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": [ @@ -37617,6 +149357,37 @@ }, { "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": [ @@ -37627,6 +149398,37 @@ }, { "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": [ @@ -37637,6 +149439,34 @@ }, { "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": [ @@ -37647,6 +149477,35 @@ }, { "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": [ @@ -37657,6 +149516,37 @@ }, { "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": [ @@ -37667,6 +149557,36 @@ }, { "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": [ @@ -37677,6 +149597,37 @@ }, { "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": [ @@ -37687,6 +149638,37 @@ }, { "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": [ @@ -37697,6 +149679,35 @@ }, { "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": [ @@ -37707,6 +149718,35 @@ }, { "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": [ @@ -37717,6 +149757,35 @@ }, { "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": [ @@ -37727,6 +149796,35 @@ }, { "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": [ @@ -37737,6 +149835,36 @@ }, { "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": [ @@ -37747,6 +149875,35 @@ }, { "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": [ @@ -37757,6 +149914,37 @@ }, { "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": [ @@ -37767,6 +149955,43 @@ }, { "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": [ @@ -37777,6 +150002,35 @@ }, { "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": [ @@ -37787,6 +150041,35 @@ }, { "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": [ @@ -37797,6 +150080,35 @@ }, { "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": [ @@ -37807,6 +150119,36 @@ }, { "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": [ @@ -37817,6 +150159,1080 @@ }, { "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": [ @@ -37827,6 +151243,35 @@ }, { "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": [ @@ -37837,6 +151282,35 @@ }, { "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": [ @@ -37847,6 +151321,34 @@ }, { "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": [ @@ -37857,6 +151359,34 @@ }, { "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": [ @@ -37867,6 +151397,34 @@ }, { "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": [ @@ -37877,6 +151435,34 @@ }, { "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": [ @@ -37887,6 +151473,34 @@ }, { "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": [ @@ -37897,6 +151511,34 @@ }, { "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": [ @@ -37907,6 +151549,39 @@ }, { "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": [ @@ -37917,6 +151592,34 @@ }, { "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": [ @@ -37927,6 +151630,39 @@ }, { "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": [ @@ -37937,6 +151673,39 @@ }, { "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": [ @@ -37947,6 +151716,34 @@ }, { "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": [ @@ -37957,6 +151754,39 @@ }, { "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": [ @@ -37967,6 +151797,34 @@ }, { "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": [ @@ -37977,6 +151835,39 @@ }, { "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": [ @@ -37987,6 +151878,34 @@ }, { "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": [ @@ -37997,6 +151916,34 @@ }, { "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": [ @@ -38007,6 +151954,37 @@ }, { "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": [ @@ -38017,6 +151995,46 @@ }, { "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": [ @@ -38027,6 +152045,34 @@ }, { "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": [ @@ -38037,6 +152083,34 @@ }, { "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": [ @@ -38047,6 +152121,34 @@ }, { "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": [ @@ -38057,6 +152159,34 @@ }, { "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": [ @@ -38067,6 +152197,34 @@ }, { "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": [ @@ -38077,6 +152235,34 @@ }, { "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": [ @@ -38087,6 +152273,37 @@ }, { "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": [ @@ -38097,6 +152314,38 @@ }, { "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": [ @@ -38107,6 +152356,35 @@ }, { "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": [ @@ -38117,6 +152395,34 @@ }, { "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": [ @@ -38127,6 +152433,34 @@ }, { "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": [ @@ -38137,6 +152471,34 @@ }, { "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": [ @@ -38147,6 +152509,34 @@ }, { "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": [ @@ -38157,6 +152547,34 @@ }, { "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": [ @@ -38167,6 +152585,34 @@ }, { "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": [ @@ -38177,6 +152623,34 @@ }, { "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": [ @@ -38187,6 +152661,34 @@ }, { "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": [ @@ -38197,6 +152699,39 @@ }, { "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": [ @@ -38207,6 +152742,36 @@ }, { "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": [ @@ -38217,6 +152782,36 @@ }, { "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": [ @@ -38227,6 +152822,55 @@ }, { "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": [ @@ -38237,6 +152881,35 @@ }, { "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": [ @@ -38247,6 +152920,35 @@ }, { "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": [ @@ -38257,6 +152959,35 @@ }, { "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": [ @@ -38267,6 +152998,35 @@ }, { "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": [ @@ -38277,6 +153037,36 @@ }, { "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": [ @@ -38287,6 +153077,35 @@ }, { "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": [ @@ -38297,6 +153116,35 @@ }, { "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": [ @@ -38307,6 +153155,35 @@ }, { "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": [ @@ -38317,6 +153194,36 @@ }, { "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": [ @@ -38327,6 +153234,35 @@ }, { "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": [ @@ -38337,6 +153273,35 @@ }, { "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": [ @@ -38347,6 +153312,38 @@ }, { "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": [ @@ -38357,6 +153354,39 @@ }, { "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": [ @@ -38367,6 +153397,35 @@ }, { "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": [ @@ -38377,6 +153436,35 @@ }, { "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": [ @@ -38387,6 +153475,308 @@ }, { "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": [ @@ -38397,6 +153787,53 @@ }, { "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": [ @@ -38407,6 +153844,34 @@ }, { "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": [ @@ -38417,6 +153882,34 @@ }, { "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": [ @@ -38427,6 +153920,34 @@ }, { "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": [ @@ -38437,6 +153958,34 @@ }, { "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": [ @@ -38447,6 +153996,34 @@ }, { "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": [ @@ -38457,6 +154034,34 @@ }, { "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": [ @@ -38467,6 +154072,34 @@ }, { "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": [ @@ -38477,6 +154110,34 @@ }, { "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": [ @@ -38487,6 +154148,34 @@ }, { "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": [ @@ -38497,6 +154186,34 @@ }, { "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": [ @@ -38507,6 +154224,34 @@ }, { "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": [ @@ -38517,6 +154262,34 @@ }, { "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": [ @@ -38527,6 +154300,34 @@ }, { "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": [ @@ -38537,6 +154338,34 @@ }, { "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": [ @@ -38547,6 +154376,34 @@ }, { "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": [ @@ -38557,6 +154414,34 @@ }, { "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": [ @@ -38567,6 +154452,34 @@ }, { "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": [ @@ -38577,6 +154490,34 @@ }, { "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": [ @@ -38587,6 +154528,34 @@ }, { "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": [ @@ -38597,6 +154566,34 @@ }, { "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": [ @@ -38607,6 +154604,34 @@ }, { "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": [ @@ -38617,6 +154642,36 @@ }, { "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": [ @@ -38627,6 +154682,90 @@ }, { "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": [ @@ -38637,6 +154776,37 @@ }, { "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": [ @@ -38647,6 +154817,35 @@ }, { "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": [ @@ -38657,6 +154856,33 @@ }, { "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": [ @@ -38667,6 +154893,36 @@ }, { "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": [ @@ -38677,6 +154933,36 @@ }, { "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": [ @@ -38687,6 +154973,35 @@ }, { "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": [ @@ -38697,6 +155012,36 @@ }, { "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": [ @@ -38707,6 +155052,35 @@ }, { "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": [ @@ -38717,6 +155091,35 @@ }, { "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": [ @@ -38727,6 +155130,38 @@ }, { "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": [ @@ -38737,6 +155172,40 @@ }, { "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": [ @@ -38747,6 +155216,38 @@ }, { "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": [ @@ -38757,6 +155258,36 @@ }, { "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": [ @@ -38767,6 +155298,35 @@ }, { "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": [ @@ -38777,6 +155337,35 @@ }, { "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": [ @@ -38787,6 +155376,36 @@ }, { "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": [ @@ -38797,6 +155416,34 @@ }, { "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": [ @@ -38807,6 +155454,34 @@ }, { "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": [ @@ -38817,6 +155492,34 @@ }, { "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": [ @@ -38827,6 +155530,39 @@ }, { "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": [ @@ -38837,6 +155573,34 @@ }, { "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": [ @@ -38847,6 +155611,34 @@ }, { "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": [ @@ -38857,6 +155649,34 @@ }, { "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": [ @@ -38867,6 +155687,34 @@ }, { "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": [ @@ -38877,6 +155725,34 @@ }, { "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": [ @@ -38887,6 +155763,34 @@ }, { "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": [ @@ -38897,6 +155801,34 @@ }, { "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": [ @@ -38907,6 +155839,34 @@ }, { "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": [ @@ -38917,6 +155877,34 @@ }, { "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": [ @@ -38927,6 +155915,34 @@ }, { "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": [ @@ -38937,6 +155953,34 @@ }, { "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": [ @@ -38947,6 +155991,34 @@ }, { "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": [ @@ -38957,6 +156029,34 @@ }, { "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": [ @@ -38967,6 +156067,34 @@ }, { "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": [ @@ -38977,6 +156105,34 @@ }, { "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": [ @@ -38987,6 +156143,34 @@ }, { "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": [ @@ -38997,6 +156181,34 @@ }, { "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": [ @@ -39007,6 +156219,34 @@ }, { "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": [ @@ -39017,6 +156257,34 @@ }, { "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": [ @@ -39027,6 +156295,34 @@ }, { "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": [ @@ -39037,6 +156333,33 @@ }, { "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": [ @@ -39047,6 +156370,34 @@ }, { "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": [ @@ -39057,6 +156408,34 @@ }, { "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": [ @@ -39067,6 +156446,34 @@ }, { "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": [ @@ -39077,6 +156484,34 @@ }, { "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": [ @@ -39087,6 +156522,34 @@ }, { "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": [ @@ -39097,6 +156560,34 @@ }, { "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": [ @@ -39107,6 +156598,34 @@ }, { "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": [ @@ -39117,6 +156636,34 @@ }, { "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": [ @@ -39127,6 +156674,34 @@ }, { "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": [ @@ -39137,6 +156712,34 @@ }, { "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": [ @@ -39147,6 +156750,34 @@ }, { "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": [ @@ -39157,6 +156788,34 @@ }, { "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": [ @@ -39167,6 +156826,34 @@ }, { "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": [ @@ -39177,6 +156864,34 @@ }, { "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": [ @@ -39187,6 +156902,34 @@ }, { "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": [ @@ -39197,6 +156940,34 @@ }, { "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": [ @@ -39207,6 +156978,34 @@ }, { "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": [ @@ -39217,6 +157016,34 @@ }, { "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": [ @@ -39227,6 +157054,34 @@ }, { "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": [ @@ -39237,6 +157092,34 @@ }, { "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": [ @@ -39247,6 +157130,34 @@ }, { "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": [ @@ -39257,6 +157168,34 @@ }, { "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": [ @@ -39267,6 +157206,34 @@ }, { "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": [ @@ -39277,6 +157244,34 @@ }, { "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": [ @@ -39287,6 +157282,34 @@ }, { "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": [ @@ -39297,6 +157320,34 @@ }, { "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": [ @@ -39307,6 +157358,34 @@ }, { "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": [ @@ -39317,6 +157396,37 @@ }, { "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": [ @@ -39327,6 +157437,37 @@ }, { "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": [ @@ -39337,6 +157478,37 @@ }, { "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": [ @@ -39347,6 +157519,35 @@ }, { "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": [ @@ -39357,6 +157558,40 @@ }, { "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": [ @@ -39367,6 +157602,37 @@ }, { "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": [ @@ -39377,6 +157643,38 @@ }, { "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": [ @@ -39387,6 +157685,39 @@ }, { "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": [ @@ -39397,6 +157728,40 @@ }, { "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": [ @@ -39407,6 +157772,35 @@ }, { "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": [ @@ -39417,6 +157811,37 @@ }, { "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": [ @@ -39427,6 +157852,36 @@ }, { "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": [ @@ -39437,6 +157892,37 @@ }, { "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": [ @@ -39447,6 +157933,40 @@ }, { "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": [ @@ -39457,6 +157977,35 @@ }, { "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": [ @@ -39467,6 +158016,36 @@ }, { "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": [ @@ -39477,6 +158056,37 @@ }, { "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": [ @@ -39487,6 +158097,39 @@ }, { "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": [ @@ -39497,6 +158140,38 @@ }, { "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": [ @@ -39507,6 +158182,38 @@ }, { "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": [ @@ -39517,6 +158224,38 @@ }, { "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": [ @@ -39527,6 +158266,37 @@ }, { "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": [ @@ -39537,6 +158307,36 @@ }, { "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": [ @@ -39547,6 +158347,35 @@ }, { "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": [ @@ -39557,6 +158386,36 @@ }, { "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": [ @@ -39567,6 +158426,36 @@ }, { "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": [ @@ -39577,6 +158466,36 @@ }, { "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": [ @@ -39587,6 +158506,36 @@ }, { "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": [ @@ -39597,6 +158546,36 @@ }, { "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": [ @@ -39607,6 +158586,35 @@ }, { "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": [ @@ -39617,6 +158625,57 @@ }, { "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": [ @@ -39627,6 +158686,37 @@ }, { "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": [ @@ -39637,6 +158727,39 @@ }, { "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": [ @@ -39647,6 +158770,37 @@ }, { "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": [ @@ -39657,6 +158811,35 @@ }, { "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": [ @@ -39667,6 +158850,38 @@ }, { "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": [ @@ -39677,6 +158892,39 @@ }, { "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": [ @@ -39687,6 +158935,36 @@ }, { "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": [ @@ -39697,6 +158975,35 @@ }, { "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": [ @@ -39707,6 +159014,36 @@ }, { "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": [ @@ -39717,6 +159054,36 @@ }, { "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": [ @@ -39727,6 +159094,35 @@ }, { "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": [ @@ -39737,6 +159133,37 @@ }, { "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": [ @@ -39747,6 +159174,37 @@ }, { "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": [ @@ -39757,6 +159215,39 @@ }, { "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": [ @@ -39767,6 +159258,39 @@ }, { "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": [ @@ -39777,6 +159301,35 @@ }, { "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": [ @@ -39787,6 +159340,37 @@ }, { "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": [ @@ -39797,6 +159381,36 @@ }, { "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": [ @@ -39807,6 +159421,35 @@ }, { "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": [ @@ -39817,6 +159460,36 @@ }, { "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": [ @@ -39827,6 +159500,37 @@ }, { "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": [ @@ -39837,6 +159541,40 @@ }, { "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": [ @@ -39847,6 +159585,41 @@ }, { "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": [ @@ -39857,6 +159630,35 @@ }, { "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": [ @@ -39867,6 +159669,35 @@ }, { "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": [ @@ -39877,6 +159708,35 @@ }, { "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": [ @@ -39887,6 +159747,36 @@ }, { "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": [ @@ -39897,6 +159787,36 @@ }, { "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": [ @@ -39907,6 +159827,39 @@ }, { "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": [ @@ -39917,6 +159870,37 @@ }, { "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": [ @@ -39927,6 +159911,35 @@ }, { "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": [ @@ -39937,6 +159950,42 @@ }, { "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": [ @@ -39947,6 +159996,38 @@ }, { "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": [ @@ -39957,6 +160038,35 @@ }, { "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": [ @@ -39967,6 +160077,35 @@ }, { "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": [ @@ -39977,6 +160116,38 @@ }, { "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": [ @@ -39987,6 +160158,37 @@ }, { "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": [ @@ -39997,6 +160199,35 @@ }, { "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": [ @@ -40007,6 +160238,40 @@ }, { "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": [ @@ -40017,6 +160282,36 @@ }, { "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": [ @@ -40027,6 +160322,35 @@ }, { "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": [ @@ -40037,6 +160361,42 @@ }, { "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": [ @@ -40047,6 +160407,40 @@ }, { "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": [ @@ -40057,6 +160451,37 @@ }, { "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": [ @@ -40067,6 +160492,36 @@ }, { "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": [ @@ -40077,6 +160532,38 @@ }, { "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": [ @@ -40087,6 +160574,38 @@ }, { "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": [ @@ -40097,6 +160616,37 @@ }, { "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": [ @@ -40107,6 +160657,36 @@ }, { "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": [ @@ -40117,6 +160697,37 @@ }, { "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": [ @@ -40127,6 +160738,39 @@ }, { "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": [ @@ -40137,6 +160781,37 @@ }, { "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": [ @@ -40147,6 +160822,39 @@ }, { "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": [ @@ -40157,6 +160865,38 @@ }, { "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": [ @@ -40167,6 +160907,36 @@ }, { "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": [ @@ -40177,6 +160947,37 @@ }, { "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": [ @@ -40187,6 +160988,37 @@ }, { "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": [ @@ -40197,6 +161029,35 @@ }, { "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": [ @@ -40207,6 +161068,37 @@ }, { "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": [ @@ -40217,6 +161109,39 @@ }, { "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": [ @@ -40227,6 +161152,38 @@ }, { "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": [ @@ -40237,6 +161194,38 @@ }, { "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": [ @@ -40247,6 +161236,35 @@ }, { "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": [ @@ -40257,6 +161275,35 @@ }, { "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": [ @@ -40267,6 +161314,35 @@ }, { "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": [ @@ -40277,6 +161353,35 @@ }, { "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": [ @@ -40287,6 +161392,38 @@ }, { "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": [ @@ -40297,6 +161434,37 @@ }, { "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": [ @@ -40307,6 +161475,37 @@ }, { "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": [ @@ -40317,6 +161516,37 @@ }, { "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": [ @@ -40327,6 +161557,37 @@ }, { "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": [ @@ -40337,6 +161598,36 @@ }, { "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": [ @@ -40347,6 +161638,37 @@ }, { "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": [ @@ -40357,6 +161679,40 @@ }, { "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": [ @@ -40367,6 +161723,38 @@ }, { "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": [ @@ -40377,6 +161765,38 @@ }, { "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": [ @@ -40387,6 +161807,35 @@ }, { "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": [ @@ -40397,6 +161846,38 @@ }, { "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": [ @@ -40407,6 +161888,38 @@ }, { "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": [ @@ -40417,6 +161930,38 @@ }, { "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": [ @@ -40427,6 +161972,39 @@ }, { "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": [ @@ -40437,6 +162015,75 @@ }, { "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": [ @@ -40447,6 +162094,143 @@ }, { "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": [ @@ -40457,6 +162241,37 @@ }, { "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": [ @@ -40467,6 +162282,36 @@ }, { "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": [ @@ -40477,6 +162322,36 @@ }, { "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": [ @@ -40487,6 +162362,37 @@ }, { "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": [ @@ -40497,6 +162403,38 @@ }, { "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": [ @@ -40507,6 +162445,38 @@ }, { "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": [ @@ -40517,6 +162487,35 @@ }, { "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": [ @@ -40527,6 +162526,36 @@ }, { "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": [ @@ -40537,6 +162566,37 @@ }, { "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": [ @@ -40547,6 +162607,38 @@ }, { "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": [ @@ -40557,6 +162649,35 @@ }, { "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": [ @@ -40567,6 +162688,35 @@ }, { "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": [ @@ -40577,6 +162727,36 @@ }, { "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": [ @@ -40587,6 +162767,35 @@ }, { "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": [ @@ -40597,6 +162806,39 @@ }, { "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": [ @@ -40607,6 +162849,35 @@ }, { "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": [ @@ -40617,6 +162888,35 @@ }, { "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": [ @@ -40627,6 +162927,40 @@ }, { "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": [ @@ -40637,6 +162971,35 @@ }, { "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": [ @@ -40647,6 +163010,39 @@ }, { "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": [ @@ -40657,6 +163053,39 @@ }, { "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": [ @@ -40667,6 +163096,35 @@ }, { "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": [ @@ -40677,6 +163135,36 @@ }, { "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": [ @@ -40687,6 +163175,37 @@ }, { "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": [ @@ -40697,6 +163216,36 @@ }, { "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": [ @@ -40707,6 +163256,38 @@ }, { "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": [ @@ -40717,6 +163298,35 @@ }, { "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": [ @@ -40727,6 +163337,35 @@ }, { "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": [ @@ -40737,6 +163376,35 @@ }, { "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": [ @@ -40747,6 +163415,40 @@ }, { "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": [ @@ -40757,6 +163459,44 @@ }, { "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": [ @@ -40767,6 +163507,35 @@ }, { "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": [ @@ -40777,6 +163546,34 @@ }, { "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": [ @@ -40787,6 +163584,36 @@ }, { "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": [ @@ -40797,6 +163624,37 @@ }, { "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": [ @@ -40807,6 +163665,37 @@ }, { "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": [ @@ -40817,6 +163706,38 @@ }, { "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": [ @@ -40827,6 +163748,35 @@ }, { "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": [ @@ -40837,6 +163787,34 @@ }, { "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": [ @@ -40847,6 +163825,34 @@ }, { "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": [ @@ -40857,6 +163863,34 @@ }, { "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": [ @@ -40867,6 +163901,34 @@ }, { "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": [ @@ -40877,6 +163939,34 @@ }, { "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": [ @@ -40887,6 +163977,35 @@ }, { "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": [ @@ -40897,6 +164016,35 @@ }, { "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": [ @@ -40907,6 +164055,35 @@ }, { "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": [ @@ -40917,6 +164094,35 @@ }, { "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": [ @@ -40927,6 +164133,35 @@ }, { "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": [ @@ -40937,6 +164172,35 @@ }, { "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": [ @@ -40947,6 +164211,35 @@ }, { "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": [ @@ -40957,6 +164250,35 @@ }, { "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": [ @@ -40967,6 +164289,35 @@ }, { "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": [ @@ -40977,6 +164328,35 @@ }, { "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": [ @@ -40987,6 +164367,35 @@ }, { "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": [ @@ -40997,6 +164406,34 @@ }, { "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": [ @@ -41007,6 +164444,35 @@ }, { "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": [ @@ -41017,6 +164483,40 @@ }, { "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": [ @@ -41027,6 +164527,35 @@ }, { "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": [ @@ -41037,6 +164566,35 @@ }, { "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": [ @@ -41047,6 +164605,35 @@ }, { "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": [ @@ -41057,6 +164644,35 @@ }, { "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": [ @@ -41067,6 +164683,35 @@ }, { "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": [ @@ -41077,6 +164722,35 @@ }, { "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": [ @@ -41087,6 +164761,35 @@ }, { "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": [ @@ -41097,6 +164800,35 @@ }, { "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": [ @@ -41107,6 +164839,35 @@ }, { "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": [ @@ -41117,6 +164878,40 @@ }, { "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": [ @@ -41127,6 +164922,35 @@ }, { "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": [ @@ -41137,6 +164961,35 @@ }, { "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": [ @@ -41147,6 +165000,34 @@ }, { "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": [ @@ -41157,6 +165038,35 @@ }, { "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": [ @@ -41167,6 +165077,35 @@ }, { "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": [ @@ -41177,6 +165116,35 @@ }, { "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": [ @@ -41187,6 +165155,34 @@ }, { "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": [ @@ -41197,6 +165193,35 @@ }, { "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": [ @@ -41207,6 +165232,57 @@ }, { "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": [ @@ -41217,6 +165293,35 @@ }, { "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": [ @@ -41227,6 +165332,35 @@ }, { "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": [ @@ -41237,6 +165371,40 @@ }, { "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": [ @@ -41247,6 +165415,39 @@ }, { "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": [ @@ -41257,6 +165458,34 @@ }, { "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": [ @@ -41267,6 +165496,35 @@ }, { "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": [ @@ -41277,6 +165535,35 @@ }, { "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": [ @@ -41287,6 +165574,35 @@ }, { "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": [ @@ -41297,6 +165613,35 @@ }, { "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": [ @@ -41307,6 +165652,34 @@ }, { "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": [ @@ -41317,6 +165690,52 @@ }, { "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": [ @@ -41327,6 +165746,35 @@ }, { "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": [ @@ -41337,6 +165785,35 @@ }, { "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": [ @@ -41347,6 +165824,33 @@ }, { "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": [ @@ -41357,6 +165861,35 @@ }, { "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": [ @@ -41367,6 +165900,35 @@ }, { "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": [ @@ -41377,6 +165939,35 @@ }, { "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": [ @@ -41387,6 +165978,35 @@ }, { "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": [ @@ -41397,6 +166017,35 @@ }, { "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": [ @@ -41407,6 +166056,39 @@ }, { "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": [ @@ -41417,6 +166099,33 @@ }, { "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": [ @@ -41427,6 +166136,35 @@ }, { "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": [ @@ -41437,6 +166175,35 @@ }, { "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": [ @@ -41447,6 +166214,34 @@ }, { "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": [ @@ -41457,6 +166252,40 @@ }, { "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": [ @@ -41467,6 +166296,35 @@ }, { "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": [ @@ -41477,6 +166335,34 @@ }, { "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": [ @@ -41487,6 +166373,35 @@ }, { "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": [ @@ -41497,6 +166412,34 @@ }, { "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": [ @@ -41507,6 +166450,40 @@ }, { "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": [ @@ -41517,6 +166494,35 @@ }, { "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": [ @@ -41527,6 +166533,35 @@ }, { "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": [ @@ -41537,6 +166572,34 @@ }, { "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": [ @@ -41547,6 +166610,35 @@ }, { "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": [ @@ -41557,6 +166649,35 @@ }, { "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": [ @@ -41567,6 +166688,63 @@ }, { "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": [ @@ -41577,6 +166755,35 @@ }, { "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": [ @@ -41587,6 +166794,35 @@ }, { "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": [ @@ -41597,6 +166833,35 @@ }, { "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": [ @@ -41607,6 +166872,35 @@ }, { "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": [ @@ -41617,6 +166911,35 @@ }, { "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": [ @@ -41627,6 +166950,35 @@ }, { "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": [ @@ -41637,6 +166989,34 @@ }, { "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": [ @@ -41647,6 +167027,35 @@ }, { "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": [ @@ -41657,6 +167066,39 @@ }, { "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": [ @@ -41667,6 +167109,40 @@ }, { "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": [ @@ -41677,6 +167153,52 @@ }, { "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": [ @@ -41687,6 +167209,34 @@ }, { "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": [ @@ -41697,6 +167247,34 @@ }, { "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": [ @@ -41707,6 +167285,34 @@ }, { "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": [ @@ -41717,6 +167323,34 @@ }, { "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": [ @@ -41727,6 +167361,35 @@ }, { "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": [ @@ -41737,6 +167400,35 @@ }, { "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": [ @@ -41747,6 +167439,35 @@ }, { "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": [ @@ -41757,6 +167478,34 @@ }, { "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": [ @@ -41767,6 +167516,35 @@ }, { "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": [ @@ -41777,6 +167555,35 @@ }, { "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": [ @@ -41787,6 +167594,35 @@ }, { "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": [ @@ -41797,6 +167633,35 @@ }, { "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": [ @@ -41807,6 +167672,35 @@ }, { "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": [ @@ -41817,6 +167711,35 @@ }, { "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": [ @@ -41827,6 +167750,35 @@ }, { "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": [ @@ -41837,6 +167789,35 @@ }, { "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": [ @@ -41847,6 +167828,35 @@ }, { "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": [ @@ -41857,6 +167867,35 @@ }, { "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": [ @@ -41867,6 +167906,35 @@ }, { "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": [ @@ -41877,6 +167945,35 @@ }, { "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": [ @@ -41887,6 +167984,35 @@ }, { "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": [ @@ -41897,6 +168023,35 @@ }, { "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": [ @@ -41907,6 +168062,34 @@ }, { "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": [ @@ -41917,6 +168100,35 @@ }, { "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": [ @@ -41927,6 +168139,56 @@ }, { "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": [ @@ -41937,6 +168199,35 @@ }, { "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": [ @@ -41947,6 +168238,35 @@ }, { "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": [ @@ -41957,6 +168277,52 @@ }, { "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": [ @@ -41967,6 +168333,35 @@ }, { "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": [ @@ -41977,6 +168372,35 @@ }, { "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": [ @@ -41987,6 +168411,35 @@ }, { "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": [ @@ -41997,6 +168450,34 @@ }, { "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": [ @@ -42007,6 +168488,34 @@ }, { "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": [ @@ -42017,6 +168526,34 @@ }, { "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": [ @@ -42027,6 +168564,34 @@ }, { "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": [ @@ -42037,6 +168602,34 @@ }, { "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": [ @@ -42047,6 +168640,35 @@ }, { "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": [ @@ -42057,6 +168679,35 @@ }, { "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": [ @@ -42067,6 +168718,35 @@ }, { "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": [ @@ -42077,6 +168757,35 @@ }, { "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": [ @@ -42087,6 +168796,34 @@ }, { "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": [ @@ -42097,6 +168834,35 @@ }, { "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": [ @@ -42107,6 +168873,34 @@ }, { "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": [ @@ -42117,6 +168911,35 @@ }, { "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": [ @@ -42127,6 +168950,35 @@ }, { "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": [ @@ -42137,6 +168989,34 @@ }, { "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": [ @@ -42147,6 +169027,34 @@ }, { "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": [ @@ -42157,6 +169065,34 @@ }, { "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": [ @@ -42167,6 +169103,35 @@ }, { "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": [ @@ -42177,6 +169142,35 @@ }, { "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": [ @@ -42187,6 +169181,34 @@ }, { "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": [ @@ -42197,6 +169219,35 @@ }, { "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": [ @@ -42207,6 +169258,35 @@ }, { "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": [ @@ -42217,6 +169297,35 @@ }, { "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": [ @@ -42227,6 +169336,35 @@ }, { "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": [ @@ -42237,6 +169375,35 @@ }, { "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": [ @@ -42247,6 +169414,34 @@ }, { "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": [ @@ -42257,6 +169452,39 @@ }, { "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": [ @@ -42267,6 +169495,35 @@ }, { "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": [ @@ -42277,6 +169534,35 @@ }, { "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": [ @@ -42287,6 +169573,35 @@ }, { "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": [ @@ -42297,6 +169612,35 @@ }, { "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": [ @@ -42307,6 +169651,35 @@ }, { "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": [ @@ -42317,6 +169690,35 @@ }, { "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": [ @@ -42327,6 +169729,35 @@ }, { "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": [ @@ -42337,6 +169768,35 @@ }, { "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": [ @@ -42347,6 +169807,35 @@ }, { "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": [ @@ -42357,6 +169846,35 @@ }, { "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": [ @@ -42367,6 +169885,34 @@ }, { "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": [ @@ -42377,6 +169923,35 @@ }, { "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": [ @@ -42387,6 +169962,35 @@ }, { "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": [ @@ -42397,6 +170001,35 @@ }, { "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": [ @@ -42407,6 +170040,34 @@ }, { "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": [ @@ -42417,6 +170078,35 @@ }, { "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": [ @@ -42427,6 +170117,35 @@ }, { "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": [ @@ -42437,6 +170156,35 @@ }, { "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": [ @@ -42447,6 +170195,35 @@ }, { "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": [ @@ -42457,6 +170234,35 @@ }, { "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": [ @@ -42467,6 +170273,35 @@ }, { "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": [ @@ -42477,6 +170312,35 @@ }, { "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": [ @@ -42487,6 +170351,35 @@ }, { "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": [ @@ -42497,6 +170390,39 @@ }, { "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": [ @@ -42507,6 +170433,34 @@ }, { "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": [ @@ -42517,6 +170471,35 @@ }, { "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": [ @@ -42527,6 +170510,35 @@ }, { "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": [ @@ -42537,6 +170549,34 @@ }, { "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": [ @@ -42547,6 +170587,35 @@ }, { "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": [ @@ -42557,6 +170626,34 @@ }, { "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": [ @@ -42567,6 +170664,35 @@ }, { "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": [ @@ -42577,6 +170703,35 @@ }, { "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": [ @@ -42587,6 +170742,40 @@ }, { "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": [ @@ -42597,6 +170786,40 @@ }, { "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": [ @@ -42607,6 +170830,34 @@ }, { "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": [ @@ -42617,6 +170868,34 @@ }, { "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": [ @@ -42627,6 +170906,35 @@ }, { "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": [ @@ -42637,6 +170945,35 @@ }, { "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": [ @@ -42647,6 +170984,34 @@ }, { "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": [ @@ -42657,6 +171022,35 @@ }, { "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": [ @@ -42667,6 +171061,35 @@ }, { "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": [ @@ -42677,6 +171100,35 @@ }, { "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": [ @@ -42687,6 +171139,35 @@ }, { "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": [ @@ -42697,6 +171178,35 @@ }, { "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": [ @@ -42707,6 +171217,35 @@ }, { "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": [ @@ -42717,6 +171256,35 @@ }, { "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": [ @@ -42727,6 +171295,35 @@ }, { "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": [ @@ -42737,6 +171334,35 @@ }, { "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": [ @@ -42747,6 +171373,77 @@ }, { "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": [ @@ -42757,6 +171454,81 @@ }, { "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": [ @@ -42767,6 +171539,35 @@ }, { "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": [ @@ -42777,6 +171578,35 @@ }, { "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": [ @@ -42787,6 +171617,35 @@ }, { "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": [ @@ -42797,6 +171656,34 @@ }, { "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": [ @@ -42807,6 +171694,40 @@ }, { "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": [ @@ -42817,6 +171738,34 @@ }, { "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": [ @@ -42827,6 +171776,68 @@ }, { "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": [ @@ -42837,6 +171848,39 @@ }, { "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": [ @@ -42847,6 +171891,35 @@ }, { "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": [ @@ -42857,6 +171930,35 @@ }, { "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": [ @@ -42867,6 +171969,53 @@ }, { "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": [ @@ -42877,6 +172026,35 @@ }, { "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": [ @@ -42887,6 +172065,57 @@ }, { "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": [ @@ -42897,6 +172126,35 @@ }, { "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": [ @@ -42907,6 +172165,39 @@ }, { "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": [ @@ -42917,6 +172208,35 @@ }, { "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": [ @@ -42927,6 +172247,40 @@ }, { "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": [ @@ -42937,6 +172291,39 @@ }, { "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": [ @@ -42947,6 +172334,35 @@ }, { "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": [ @@ -42957,6 +172373,35 @@ }, { "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": [ @@ -42967,6 +172412,35 @@ }, { "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": [ @@ -42977,6 +172451,34 @@ }, { "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": [ @@ -42987,6 +172489,34 @@ }, { "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": [ @@ -42997,6 +172527,35 @@ }, { "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": [ @@ -43007,6 +172566,34 @@ }, { "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": [ @@ -43017,6 +172604,35 @@ }, { "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": [ @@ -43027,6 +172643,35 @@ }, { "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": [ @@ -43037,6 +172682,35 @@ }, { "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": [ @@ -43047,6 +172721,35 @@ }, { "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": [ @@ -43057,6 +172760,35 @@ }, { "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": [ @@ -43067,6 +172799,35 @@ }, { "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": [ @@ -43077,6 +172838,35 @@ }, { "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": [ @@ -43087,6 +172877,35 @@ }, { "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": [ @@ -43097,6 +172916,35 @@ }, { "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": [ @@ -43107,6 +172955,35 @@ }, { "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": [ @@ -43117,6 +172994,39 @@ }, { "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": [ @@ -43127,6 +173037,34 @@ }, { "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": [ @@ -43137,6 +173075,34 @@ }, { "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": [ @@ -43147,6 +173113,35 @@ }, { "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": [ @@ -43157,6 +173152,39 @@ }, { "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": [ @@ -43167,6 +173195,35 @@ }, { "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": [ @@ -43177,6 +173234,35 @@ }, { "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": [ @@ -43187,6 +173273,35 @@ }, { "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": [ @@ -43197,6 +173312,35 @@ }, { "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": [ @@ -43207,6 +173351,35 @@ }, { "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": [ @@ -43217,6 +173390,35 @@ }, { "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": [ @@ -43227,6 +173429,35 @@ }, { "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": [ @@ -43237,6 +173468,34 @@ }, { "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": [ @@ -43247,6 +173506,39 @@ }, { "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": [ @@ -43257,6 +173549,52 @@ }, { "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": [ @@ -43267,6 +173605,35 @@ }, { "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": [ @@ -43277,6 +173644,34 @@ }, { "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": [ @@ -43287,6 +173682,35 @@ }, { "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": [ @@ -43297,6 +173721,34 @@ }, { "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": [ @@ -43307,6 +173759,35 @@ }, { "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": [ @@ -43317,6 +173798,34 @@ }, { "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": [ @@ -43327,6 +173836,35 @@ }, { "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": [ @@ -43337,6 +173875,35 @@ }, { "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": [ @@ -43347,6 +173914,35 @@ }, { "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": [ @@ -43357,6 +173953,34 @@ }, { "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": [ @@ -43367,6 +173991,39 @@ }, { "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": [ @@ -43377,6 +174034,39 @@ }, { "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": [ @@ -43387,6 +174077,35 @@ }, { "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": [ @@ -43397,6 +174116,34 @@ }, { "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": [ @@ -43407,6 +174154,35 @@ }, { "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": [ @@ -43417,6 +174193,35 @@ }, { "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": [ @@ -43427,6 +174232,34 @@ }, { "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": [ @@ -43437,6 +174270,35 @@ }, { "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": [ @@ -43447,6 +174309,35 @@ }, { "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": [ @@ -43457,6 +174348,35 @@ }, { "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": [ @@ -43467,6 +174387,35 @@ }, { "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": [ @@ -43477,6 +174426,35 @@ }, { "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": [ @@ -43487,6 +174465,35 @@ }, { "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": [ @@ -43497,6 +174504,35 @@ }, { "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": [ @@ -43507,6 +174543,35 @@ }, { "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": [ @@ -43517,6 +174582,35 @@ }, { "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": [ @@ -43527,6 +174621,35 @@ }, { "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": [ @@ -43537,6 +174660,35 @@ }, { "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": [ @@ -43547,6 +174699,35 @@ }, { "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": [ @@ -43557,6 +174738,35 @@ }, { "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": [ @@ -43567,6 +174777,35 @@ }, { "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": [ @@ -43577,6 +174816,35 @@ }, { "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": [ @@ -43587,6 +174855,35 @@ }, { "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": [ @@ -43597,6 +174894,35 @@ }, { "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": [ @@ -43607,6 +174933,34 @@ }, { "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": [ @@ -43617,6 +174971,35 @@ }, { "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": [ @@ -43627,6 +175010,34 @@ }, { "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": [ @@ -43637,6 +175048,35 @@ }, { "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": [ @@ -43647,6 +175087,35 @@ }, { "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": [ @@ -43657,6 +175126,34 @@ }, { "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": [ @@ -43667,6 +175164,35 @@ }, { "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": [ @@ -43677,6 +175203,35 @@ }, { "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": [ @@ -43687,6 +175242,35 @@ }, { "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": [ @@ -43697,6 +175281,35 @@ }, { "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": [ @@ -43707,6 +175320,35 @@ }, { "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": [ @@ -43717,6 +175359,34 @@ }, { "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": [ @@ -43727,6 +175397,34 @@ }, { "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": [ @@ -43737,6 +175435,35 @@ }, { "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": [ @@ -43747,6 +175474,34 @@ }, { "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": [ @@ -43757,6 +175512,35 @@ }, { "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": [ @@ -43767,6 +175551,35 @@ }, { "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": [ @@ -43777,6 +175590,34 @@ }, { "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": [ @@ -43787,6 +175628,34 @@ }, { "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": [ @@ -43797,6 +175666,35 @@ }, { "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": [ @@ -43807,6 +175705,35 @@ }, { "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": [ @@ -43817,6 +175744,35 @@ }, { "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": [ @@ -43827,6 +175783,35 @@ }, { "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": [ @@ -43837,6 +175822,40 @@ }, { "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": [ @@ -43847,6 +175866,35 @@ }, { "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": [ @@ -43857,6 +175905,35 @@ }, { "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": [ @@ -43867,6 +175944,35 @@ }, { "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": [ @@ -43877,6 +175983,35 @@ }, { "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": [ @@ -43887,6 +176022,35 @@ }, { "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": [ @@ -43897,6 +176061,35 @@ }, { "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": [ @@ -43907,6 +176100,35 @@ }, { "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": [ @@ -43917,6 +176139,35 @@ }, { "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": [ @@ -43927,6 +176178,35 @@ }, { "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": [ @@ -43937,6 +176217,35 @@ }, { "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": [ @@ -43947,6 +176256,35 @@ }, { "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": [ @@ -43957,6 +176295,35 @@ }, { "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": [ @@ -43967,6 +176334,34 @@ }, { "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": [ @@ -43977,6 +176372,39 @@ }, { "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": [ @@ -43987,6 +176415,35 @@ }, { "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": [ @@ -43997,6 +176454,35 @@ }, { "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": [ @@ -44007,6 +176493,35 @@ }, { "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": [ @@ -44017,6 +176532,35 @@ }, { "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": [ @@ -44027,6 +176571,35 @@ }, { "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": [ @@ -44037,6 +176610,35 @@ }, { "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": [ @@ -44047,6 +176649,35 @@ }, { "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": [ @@ -44057,6 +176688,34 @@ }, { "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": [ @@ -44067,6 +176726,35 @@ }, { "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": [ @@ -44077,6 +176765,34 @@ }, { "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": [ @@ -44087,6 +176803,34 @@ }, { "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": [ @@ -44097,6 +176841,35 @@ }, { "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": [ @@ -44107,6 +176880,35 @@ }, { "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": [ @@ -44117,6 +176919,35 @@ }, { "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": [ @@ -44127,6 +176958,35 @@ }, { "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": [ @@ -44137,6 +176997,35 @@ }, { "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": [ @@ -44147,6 +177036,35 @@ }, { "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": [ @@ -44157,6 +177075,34 @@ }, { "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": [ @@ -44167,6 +177113,35 @@ }, { "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": [ @@ -44177,6 +177152,35 @@ }, { "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": [ @@ -44187,6 +177191,35 @@ }, { "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": [ @@ -44197,6 +177230,35 @@ }, { "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": [ @@ -44207,6 +177269,35 @@ }, { "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": [ @@ -44217,6 +177308,35 @@ }, { "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": [ @@ -44227,6 +177347,34 @@ }, { "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": [ @@ -44237,6 +177385,35 @@ }, { "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": [ @@ -44247,6 +177424,35 @@ }, { "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": [ @@ -44257,6 +177463,35 @@ }, { "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": [ @@ -44267,6 +177502,35 @@ }, { "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": [ @@ -44277,6 +177541,35 @@ }, { "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": [ @@ -44287,6 +177580,35 @@ }, { "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": [ @@ -44297,6 +177619,35 @@ }, { "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": [ @@ -44307,6 +177658,35 @@ }, { "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": [ @@ -44317,6 +177697,35 @@ }, { "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": [ @@ -44327,6 +177736,35 @@ }, { "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": [ @@ -44337,6 +177775,35 @@ }, { "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": [ @@ -44347,6 +177814,35 @@ }, { "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": [ @@ -44357,6 +177853,35 @@ }, { "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": [ @@ -44367,6 +177892,35 @@ }, { "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": [ @@ -44377,6 +177931,35 @@ }, { "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": [ @@ -44387,6 +177970,35 @@ }, { "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": [ @@ -44397,6 +178009,35 @@ }, { "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": [ @@ -44407,6 +178048,35 @@ }, { "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": [ @@ -44417,6 +178087,35 @@ }, { "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": [ @@ -44427,6 +178126,34 @@ }, { "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": [ @@ -44437,6 +178164,34 @@ }, { "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": [ @@ -44447,6 +178202,34 @@ }, { "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": [ @@ -44457,6 +178240,34 @@ }, { "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": [ @@ -44467,6 +178278,35 @@ }, { "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": [ @@ -44477,6 +178317,34 @@ }, { "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": [ @@ -44487,6 +178355,35 @@ }, { "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": [ @@ -44497,6 +178394,34 @@ }, { "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": [ @@ -44507,6 +178432,35 @@ }, { "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": [ @@ -44517,6 +178471,35 @@ }, { "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": [ @@ -44527,6 +178510,35 @@ }, { "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": [ @@ -44537,6 +178549,63 @@ }, { "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": [ @@ -44547,6 +178616,35 @@ }, { "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": [ @@ -44557,6 +178655,34 @@ }, { "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": [ @@ -44567,6 +178693,35 @@ }, { "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": [ @@ -44577,6 +178732,35 @@ }, { "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": [ @@ -44587,6 +178771,35 @@ }, { "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": [ @@ -44597,6 +178810,35 @@ }, { "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": [ @@ -44607,6 +178849,35 @@ }, { "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": [ @@ -44617,6 +178888,35 @@ }, { "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": [ @@ -44627,6 +178927,55 @@ }, { "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": [ @@ -44637,6 +178986,35 @@ }, { "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": [ @@ -44647,6 +179025,35 @@ }, { "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": [ @@ -44657,6 +179064,35 @@ }, { "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": [ @@ -44667,6 +179103,34 @@ }, { "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": [ @@ -44677,6 +179141,35 @@ }, { "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": [ @@ -44687,6 +179180,35 @@ }, { "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": [ @@ -44697,6 +179219,34 @@ }, { "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": [ @@ -44707,6 +179257,35 @@ }, { "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": [ @@ -44717,6 +179296,35 @@ }, { "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": [ @@ -44727,6 +179335,49 @@ }, { "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": [ @@ -44737,6 +179388,34 @@ }, { "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": [ @@ -44747,6 +179426,35 @@ }, { "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": [ @@ -44757,6 +179465,35 @@ }, { "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": [ @@ -44767,6 +179504,35 @@ }, { "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": [ @@ -44777,6 +179543,35 @@ }, { "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": [ @@ -44787,6 +179582,34 @@ }, { "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": [ @@ -44797,6 +179620,35 @@ }, { "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": [ @@ -44807,6 +179659,35 @@ }, { "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": [ @@ -44817,6 +179698,35 @@ }, { "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": [ @@ -44827,6 +179737,35 @@ }, { "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": [ @@ -44837,6 +179776,35 @@ }, { "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": [ @@ -44847,6 +179815,35 @@ }, { "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": [ @@ -44857,6 +179854,35 @@ }, { "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": [ @@ -44867,6 +179893,34 @@ }, { "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": [ @@ -44877,6 +179931,34 @@ }, { "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": [ @@ -44887,6 +179969,35 @@ }, { "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": [ @@ -44897,6 +180008,35 @@ }, { "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": [ @@ -44907,6 +180047,34 @@ }, { "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": [ @@ -44917,6 +180085,35 @@ }, { "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": [ @@ -44927,6 +180124,35 @@ }, { "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": [ @@ -44937,6 +180163,35 @@ }, { "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": [ @@ -44947,6 +180202,40 @@ }, { "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": [ @@ -44957,6 +180246,35 @@ }, { "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": [ @@ -44967,6 +180285,35 @@ }, { "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": [ @@ -44977,6 +180324,35 @@ }, { "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": [ @@ -44987,6 +180363,34 @@ }, { "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": [ @@ -44997,6 +180401,35 @@ }, { "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": [ @@ -45007,6 +180440,35 @@ }, { "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": [ @@ -45017,6 +180479,35 @@ }, { "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": [ @@ -45027,6 +180518,35 @@ }, { "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": [ @@ -45037,6 +180557,35 @@ }, { "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": [ @@ -45047,6 +180596,35 @@ }, { "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": [ @@ -45057,6 +180635,40 @@ }, { "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": [ @@ -45067,6 +180679,35 @@ }, { "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": [ @@ -45077,6 +180718,35 @@ }, { "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": [ @@ -45087,6 +180757,35 @@ }, { "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": [ @@ -45097,6 +180796,35 @@ }, { "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": [ @@ -45107,6 +180835,35 @@ }, { "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": [ @@ -45117,6 +180874,35 @@ }, { "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": [ @@ -45127,6 +180913,35 @@ }, { "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": [ @@ -45137,6 +180952,35 @@ }, { "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": [ @@ -45147,6 +180991,35 @@ }, { "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": [ @@ -45157,6 +181030,35 @@ }, { "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": [ @@ -45167,6 +181069,35 @@ }, { "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": [ @@ -45177,6 +181108,34 @@ }, { "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": [ @@ -45187,6 +181146,35 @@ }, { "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": [ @@ -45197,6 +181185,35 @@ }, { "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": [ @@ -45207,6 +181224,35 @@ }, { "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": [ @@ -45217,6 +181263,35 @@ }, { "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": [ @@ -45227,6 +181302,35 @@ }, { "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": [ @@ -45237,6 +181341,34 @@ }, { "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": [ @@ -45247,6 +181379,51 @@ }, { "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": [ @@ -45257,6 +181434,34 @@ }, { "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": [ @@ -45267,6 +181472,50 @@ }, { "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": [ @@ -45277,6 +181526,35 @@ }, { "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": [ @@ -45287,6 +181565,35 @@ }, { "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": [ @@ -45297,6 +181604,35 @@ }, { "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": [ @@ -45307,6 +181643,35 @@ }, { "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": [ @@ -45317,6 +181682,40 @@ }, { "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": [ @@ -45327,6 +181726,35 @@ }, { "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": [ @@ -45337,6 +181765,35 @@ }, { "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": [ @@ -45347,6 +181804,34 @@ }, { "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": [ @@ -45357,6 +181842,34 @@ }, { "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": [ @@ -45367,6 +181880,34 @@ }, { "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": [ @@ -45377,6 +181918,35 @@ }, { "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": [ @@ -45387,6 +181957,35 @@ }, { "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": [ @@ -45397,6 +181996,35 @@ }, { "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": [ @@ -45407,6 +182035,35 @@ }, { "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": [ @@ -45417,6 +182074,35 @@ }, { "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": [ @@ -45427,6 +182113,34 @@ }, { "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": [ @@ -45437,6 +182151,35 @@ }, { "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": [ @@ -45447,6 +182190,34 @@ }, { "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": [ @@ -45457,6 +182228,50 @@ }, { "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": [ @@ -45467,6 +182282,34 @@ }, { "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": [ @@ -45477,6 +182320,35 @@ }, { "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": [ @@ -45487,6 +182359,34 @@ }, { "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": [ @@ -45497,6 +182397,34 @@ }, { "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": [ @@ -45507,6 +182435,62 @@ }, { "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": [ @@ -45517,6 +182501,35 @@ }, { "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": [ @@ -45527,6 +182540,34 @@ }, { "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": [ @@ -45537,6 +182578,35 @@ }, { "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": [ @@ -45547,6 +182617,34 @@ }, { "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": [ @@ -45557,6 +182655,40 @@ }, { "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": [ @@ -45567,6 +182699,40 @@ }, { "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": [ @@ -45577,6 +182743,326 @@ }, { "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": [ @@ -45587,6 +183073,35 @@ }, { "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": [ @@ -45597,6 +183112,35 @@ }, { "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": [ @@ -45607,6 +183151,35 @@ }, { "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": [ @@ -45617,6 +183190,35 @@ }, { "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": [ @@ -45627,6 +183229,35 @@ }, { "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": [ @@ -45637,6 +183268,35 @@ }, { "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": [ @@ -45647,6 +183307,35 @@ }, { "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": [ @@ -45657,6 +183346,35 @@ }, { "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": [ @@ -45667,6 +183385,53 @@ }, { "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": [ @@ -45677,6 +183442,35 @@ }, { "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": [ @@ -45687,6 +183481,35 @@ }, { "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": [ @@ -45697,6 +183520,35 @@ }, { "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": [ @@ -45707,6 +183559,34 @@ }, { "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": [ @@ -45717,6 +183597,35 @@ }, { "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": [ @@ -45727,6 +183636,35 @@ }, { "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": [ @@ -45737,6 +183675,35 @@ }, { "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": [ @@ -45747,6 +183714,35 @@ }, { "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": [ @@ -45757,6 +183753,34 @@ }, { "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": [ @@ -45767,6 +183791,35 @@ }, { "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": [ @@ -45777,6 +183830,35 @@ }, { "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": [ @@ -45787,6 +183869,34 @@ }, { "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": [ @@ -45797,6 +183907,35 @@ }, { "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": [ @@ -45807,6 +183946,35 @@ }, { "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": [ @@ -45817,6 +183985,35 @@ }, { "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": [ @@ -45827,6 +184024,35 @@ }, { "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": [ @@ -45837,6 +184063,35 @@ }, { "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": [ @@ -45847,6 +184102,34 @@ }, { "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": [ @@ -45857,6 +184140,34 @@ }, { "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": [ @@ -45867,6 +184178,40 @@ }, { "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": [ @@ -45877,6 +184222,35 @@ }, { "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": [ @@ -45887,6 +184261,35 @@ }, { "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": [ @@ -45897,6 +184300,35 @@ }, { "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": [ @@ -45907,6 +184339,35 @@ }, { "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": [ @@ -45917,6 +184378,34 @@ }, { "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": [ @@ -45927,6 +184416,40 @@ }, { "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": [ @@ -45937,6 +184460,40 @@ }, { "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": [ @@ -45947,6 +184504,40 @@ }, { "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": [ @@ -45957,6 +184548,35 @@ }, { "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": [ @@ -45967,6 +184587,34 @@ }, { "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": [ @@ -45977,6 +184625,34 @@ }, { "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": [ @@ -45987,6 +184663,35 @@ }, { "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": [ @@ -45997,6 +184702,35 @@ }, { "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": [ @@ -46007,6 +184741,34 @@ }, { "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": [ @@ -46017,6 +184779,52 @@ }, { "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": [ @@ -46027,6 +184835,35 @@ }, { "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": [ @@ -46037,6 +184874,35 @@ }, { "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": [ @@ -46047,6 +184913,34 @@ }, { "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": [ @@ -46057,6 +184951,34 @@ }, { "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": [ @@ -46067,6 +184989,34 @@ }, { "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": [ @@ -46077,6 +185027,34 @@ }, { "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": [ @@ -46087,6 +185065,35 @@ }, { "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": [ @@ -46097,6 +185104,35 @@ }, { "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": [ @@ -46107,6 +185143,35 @@ }, { "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": [ @@ -46117,6 +185182,34 @@ }, { "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": [ @@ -46127,6 +185220,35 @@ }, { "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": [ @@ -46137,6 +185259,35 @@ }, { "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": [ @@ -46147,6 +185298,34 @@ }, { "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": [ @@ -46157,6 +185336,35 @@ }, { "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": [ @@ -46167,6 +185375,35 @@ }, { "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": [ @@ -46177,6 +185414,34 @@ }, { "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": [ @@ -46187,6 +185452,40 @@ }, { "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": [ @@ -46197,6 +185496,34 @@ }, { "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": [ @@ -46207,6 +185534,34 @@ }, { "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": [ @@ -46217,6 +185572,35 @@ }, { "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": [ @@ -46227,6 +185611,35 @@ }, { "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": [ @@ -46237,6 +185650,35 @@ }, { "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": [ @@ -46247,6 +185689,35 @@ }, { "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": [ @@ -46257,6 +185728,35 @@ }, { "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": [ @@ -46267,6 +185767,34 @@ }, { "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": [ @@ -46277,6 +185805,35 @@ }, { "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": [ @@ -46287,6 +185844,35 @@ }, { "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": [ @@ -46297,6 +185883,35 @@ }, { "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": [ @@ -46307,6 +185922,35 @@ }, { "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": [ @@ -46317,6 +185961,34 @@ }, { "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": [ @@ -46327,6 +185999,35 @@ }, { "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": [ @@ -46337,6 +186038,35 @@ }, { "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": [ @@ -46347,6 +186077,35 @@ }, { "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": [ @@ -46357,6 +186116,34 @@ }, { "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": [ @@ -46367,6 +186154,35 @@ }, { "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": [ @@ -46377,6 +186193,51 @@ }, { "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": [ @@ -46387,6 +186248,34 @@ }, { "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": [ @@ -46397,6 +186286,35 @@ }, { "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": [ @@ -46407,6 +186325,35 @@ }, { "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": [ @@ -46417,6 +186364,35 @@ }, { "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": [ @@ -46427,6 +186403,34 @@ }, { "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": [ @@ -46437,6 +186441,35 @@ }, { "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": [ @@ -46447,6 +186480,35 @@ }, { "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": [ @@ -46457,6 +186519,50 @@ }, { "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": [ @@ -46467,6 +186573,34 @@ }, { "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": [ @@ -46477,6 +186611,34 @@ }, { "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": [ @@ -46487,6 +186649,35 @@ }, { "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": [ @@ -46497,6 +186688,35 @@ }, { "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": [ @@ -46507,6 +186727,34 @@ }, { "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": [ @@ -46517,6 +186765,35 @@ }, { "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": [ @@ -46527,6 +186804,35 @@ }, { "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": [ @@ -46537,6 +186843,35 @@ }, { "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": [ @@ -46547,6 +186882,35 @@ }, { "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": [ @@ -46557,6 +186921,35 @@ }, { "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": [ @@ -46567,6 +186960,35 @@ }, { "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": [ @@ -46577,6 +186999,35 @@ }, { "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": [ @@ -46587,6 +187038,35 @@ }, { "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": [ @@ -46597,6 +187077,35 @@ }, { "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": [ @@ -46607,6 +187116,35 @@ }, { "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": [ @@ -46617,6 +187155,35 @@ }, { "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": [ @@ -46627,6 +187194,35 @@ }, { "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": [ @@ -46637,6 +187233,35 @@ }, { "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": [ @@ -46647,6 +187272,35 @@ }, { "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": [ @@ -46657,6 +187311,35 @@ }, { "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": [ @@ -46667,6 +187350,35 @@ }, { "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": [ @@ -46677,6 +187389,35 @@ }, { "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": [ @@ -46687,6 +187428,35 @@ }, { "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": [ @@ -46697,6 +187467,34 @@ }, { "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": [ @@ -46707,6 +187505,34 @@ }, { "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": [ @@ -46717,6 +187543,35 @@ }, { "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": [ @@ -46727,6 +187582,35 @@ }, { "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": [ @@ -46737,6 +187621,35 @@ }, { "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": [ @@ -46747,6 +187660,34 @@ }, { "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": [ @@ -46757,6 +187698,35 @@ }, { "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": [ @@ -46767,6 +187737,35 @@ }, { "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": [ @@ -46777,6 +187776,34 @@ }, { "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": [ @@ -46787,6 +187814,34 @@ }, { "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": [ @@ -46797,6 +187852,35 @@ }, { "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": [ @@ -46807,6 +187891,34 @@ }, { "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": [ @@ -46817,6 +187929,35 @@ }, { "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": [ @@ -46827,6 +187968,35 @@ }, { "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": [ @@ -46837,6 +188007,35 @@ }, { "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": [ @@ -46847,6 +188046,35 @@ }, { "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": [ @@ -46857,6 +188085,35 @@ }, { "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": [ @@ -46867,6 +188124,34 @@ }, { "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": [ @@ -46877,6 +188162,35 @@ }, { "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": [ @@ -46887,6 +188201,34 @@ }, { "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": [ @@ -46897,6 +188239,35 @@ }, { "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": [ @@ -46907,6 +188278,40 @@ }, { "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": [ @@ -46917,6 +188322,35 @@ }, { "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": [ @@ -46927,6 +188361,35 @@ }, { "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": [ @@ -46937,6 +188400,34 @@ }, { "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": [ @@ -46947,6 +188438,34 @@ }, { "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": [ @@ -46957,6 +188476,34 @@ }, { "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": [ @@ -46967,6 +188514,35 @@ }, { "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": [ @@ -46977,6 +188553,34 @@ }, { "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": [ @@ -46987,6 +188591,35 @@ }, { "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": [ @@ -46997,6 +188630,35 @@ }, { "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": [ @@ -47007,6 +188669,35 @@ }, { "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": [ @@ -47017,6 +188708,35 @@ }, { "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": [ @@ -47027,6 +188747,35 @@ }, { "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": [ @@ -47037,6 +188786,34 @@ }, { "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": [ @@ -47047,6 +188824,34 @@ }, { "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": [ @@ -47057,6 +188862,34 @@ }, { "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": [ @@ -47067,6 +188900,35 @@ }, { "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": [ @@ -47077,6 +188939,35 @@ }, { "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": [ @@ -47087,6 +188978,35 @@ }, { "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": [ @@ -47097,6 +189017,35 @@ }, { "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": [ @@ -47107,6 +189056,35 @@ }, { "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": [ @@ -47117,6 +189095,35 @@ }, { "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": [ @@ -47127,6 +189134,35 @@ }, { "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": [ @@ -47137,6 +189173,34 @@ }, { "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": [ @@ -47147,6 +189211,34 @@ }, { "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": [ @@ -47157,6 +189249,35 @@ }, { "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": [ @@ -47167,6 +189288,35 @@ }, { "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": [ @@ -47177,6 +189327,35 @@ }, { "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": [ @@ -47187,6 +189366,40 @@ }, { "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": [ @@ -47197,6 +189410,35 @@ }, { "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": [ @@ -47207,6 +189449,35 @@ }, { "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": [ @@ -47217,6 +189488,35 @@ }, { "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": [ @@ -47227,6 +189527,34 @@ }, { "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": [ @@ -47237,6 +189565,35 @@ }, { "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": [ @@ -47247,6 +189604,35 @@ }, { "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": [ @@ -47257,6 +189643,35 @@ }, { "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": [ @@ -47267,6 +189682,35 @@ }, { "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": [ @@ -47277,6 +189721,34 @@ }, { "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": [ @@ -47287,6 +189759,35 @@ }, { "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": [ @@ -47297,6 +189798,35 @@ }, { "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": [ @@ -47307,6 +189837,35 @@ }, { "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": [ @@ -47317,6 +189876,35 @@ }, { "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": [ @@ -47327,6 +189915,35 @@ }, { "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": [ @@ -47337,6 +189954,35 @@ }, { "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": [ @@ -47347,6 +189993,34 @@ }, { "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": [ @@ -47357,6 +190031,35 @@ }, { "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": [ @@ -47367,6 +190070,35 @@ }, { "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": [ @@ -47377,6 +190109,34 @@ }, { "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": [ @@ -47387,6 +190147,35 @@ }, { "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": [ @@ -47397,6 +190186,35 @@ }, { "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": [ @@ -47407,6 +190225,35 @@ }, { "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": [ @@ -47417,6 +190264,35 @@ }, { "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": [ @@ -47427,6 +190303,35 @@ }, { "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": [ @@ -47437,6 +190342,34 @@ }, { "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": [ @@ -47447,6 +190380,35 @@ }, { "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": [ @@ -47457,6 +190419,34 @@ }, { "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": [ @@ -47467,6 +190457,35 @@ }, { "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": [ @@ -47477,6 +190496,35 @@ }, { "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": [ @@ -47487,6 +190535,35 @@ }, { "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": [ @@ -47497,6 +190574,34 @@ }, { "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": [ @@ -47507,6 +190612,35 @@ }, { "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": [ @@ -47517,6 +190651,35 @@ }, { "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": [ @@ -47527,6 +190690,96 @@ }, { "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": [ @@ -47537,6 +190790,35 @@ }, { "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": [ @@ -47547,6 +190829,35 @@ }, { "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": [ @@ -47557,6 +190868,35 @@ }, { "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": [ @@ -47567,6 +190907,118 @@ }, { "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": [ @@ -47577,6 +191029,35 @@ }, { "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": [ @@ -47587,6 +191068,35 @@ }, { "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": [ @@ -47597,6 +191107,35 @@ }, { "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": [ @@ -47607,6 +191146,35 @@ }, { "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": [ @@ -47617,6 +191185,34 @@ }, { "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": [ @@ -47627,6 +191223,35 @@ }, { "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": [ @@ -47637,6 +191262,35 @@ }, { "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": [ @@ -47647,6 +191301,35 @@ }, { "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": [ @@ -47657,6 +191340,34 @@ }, { "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": [ @@ -47667,6 +191378,35 @@ }, { "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": [ @@ -47677,6 +191417,35 @@ }, { "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": [ @@ -47687,6 +191456,35 @@ }, { "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": [ @@ -47697,6 +191495,35 @@ }, { "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": [ @@ -47707,6 +191534,40 @@ }, { "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": [ @@ -47717,6 +191578,34 @@ }, { "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": [ @@ -47727,6 +191616,35 @@ }, { "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": [ @@ -47737,6 +191655,37 @@ }, { "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": [ @@ -47747,6 +191696,34 @@ }, { "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": [ @@ -47757,6 +191734,34 @@ }, { "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": [ @@ -47767,6 +191772,40 @@ }, { "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": [ @@ -47777,6 +191816,39 @@ }, { "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": [ @@ -47787,6 +191859,39 @@ }, { "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": [ @@ -47797,6 +191902,35 @@ }, { "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": [ @@ -47807,6 +191941,35 @@ }, { "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": [ @@ -47817,6 +191980,35 @@ }, { "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": [ @@ -47827,6 +192019,53 @@ }, { "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": [ @@ -47837,6 +192076,34 @@ }, { "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": [ @@ -47847,6 +192114,40 @@ }, { "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": [ @@ -47857,6 +192158,40 @@ }, { "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": [ @@ -47867,6 +192202,40 @@ }, { "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": [ @@ -47877,6 +192246,35 @@ }, { "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": [ @@ -47887,6 +192285,35 @@ }, { "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": [ @@ -47897,6 +192324,35 @@ }, { "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": [ @@ -47907,6 +192363,35 @@ }, { "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": [ @@ -47917,6 +192402,35 @@ }, { "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": [ @@ -47927,6 +192441,35 @@ }, { "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": [ @@ -47937,6 +192480,35 @@ }, { "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": [ @@ -47947,6 +192519,35 @@ }, { "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": [ @@ -47957,6 +192558,35 @@ }, { "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": [ @@ -47967,6 +192597,40 @@ }, { "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": [ @@ -47977,6 +192641,34 @@ }, { "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": [ @@ -47987,6 +192679,35 @@ }, { "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": [ @@ -47997,6 +192718,35 @@ }, { "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": [ @@ -48007,6 +192757,35 @@ }, { "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": [ @@ -48017,6 +192796,35 @@ }, { "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": [ @@ -48027,6 +192835,35 @@ }, { "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": [ @@ -48037,6 +192874,39 @@ }, { "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": [ @@ -48047,6 +192917,34 @@ }, { "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": [ @@ -48057,6 +192955,35 @@ }, { "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": [ @@ -48067,6 +192994,34 @@ }, { "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": [ @@ -48077,6 +193032,51 @@ }, { "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": [ @@ -48087,6 +193087,35 @@ }, { "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": [ @@ -48097,6 +193126,39 @@ }, { "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": [ @@ -48107,6 +193169,34 @@ }, { "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": [ @@ -48117,6 +193207,35 @@ }, { "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": [ @@ -48127,6 +193246,35 @@ }, { "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": [ @@ -48137,6 +193285,34 @@ }, { "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": [ @@ -48147,6 +193323,35 @@ }, { "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": [ @@ -48157,6 +193362,35 @@ }, { "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": [ @@ -48167,6 +193401,35 @@ }, { "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": [ @@ -48177,6 +193440,34 @@ }, { "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": [ @@ -48187,6 +193478,35 @@ }, { "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": [ @@ -48197,6 +193517,35 @@ }, { "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": [ @@ -48207,6 +193556,39 @@ }, { "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": [ @@ -48217,6 +193599,39 @@ }, { "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": [ @@ -48227,6 +193642,39 @@ }, { "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": [ @@ -48237,6 +193685,35 @@ }, { "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": [ @@ -48247,6 +193724,35 @@ }, { "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": [ @@ -48257,6 +193763,35 @@ }, { "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": [ @@ -48267,6 +193802,35 @@ }, { "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": [ @@ -48277,6 +193841,35 @@ }, { "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": [ @@ -48287,6 +193880,51 @@ }, { "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": [ @@ -48297,6 +193935,35 @@ }, { "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": [ @@ -48307,6 +193974,40 @@ }, { "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": [ @@ -48317,6 +194018,34 @@ }, { "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": [ @@ -48327,6 +194056,51 @@ }, { "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": [ @@ -48337,6 +194111,35 @@ }, { "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": [ @@ -48347,6 +194150,34 @@ }, { "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": [ @@ -48357,6 +194188,35 @@ }, { "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": [ @@ -48367,6 +194227,35 @@ }, { "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": [ @@ -48377,6 +194266,35 @@ }, { "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": [ @@ -48387,6 +194305,35 @@ }, { "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": [ @@ -48397,6 +194344,35 @@ }, { "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": [ @@ -48407,6 +194383,35 @@ }, { "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": [ @@ -48417,6 +194422,35 @@ }, { "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": [ @@ -48427,6 +194461,35 @@ }, { "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": [ @@ -48437,6 +194500,34 @@ }, { "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": [ @@ -48447,6 +194538,34 @@ }, { "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": [ @@ -48457,6 +194576,34 @@ }, { "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": [ @@ -48467,6 +194614,35 @@ }, { "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": [ @@ -48477,6 +194653,35 @@ }, { "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": [ @@ -48487,6 +194692,35 @@ }, { "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": [ @@ -48497,6 +194731,35 @@ }, { "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": [ @@ -48507,6 +194770,35 @@ }, { "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": [ @@ -48517,6 +194809,35 @@ }, { "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": [ @@ -48527,6 +194848,35 @@ }, { "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": [ @@ -48537,6 +194887,40 @@ }, { "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": [ @@ -48547,6 +194931,35 @@ }, { "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": [ @@ -48557,6 +194970,34 @@ }, { "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": [ @@ -48567,6 +195008,35 @@ }, { "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": [ @@ -48577,6 +195047,35 @@ }, { "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": [ @@ -48587,6 +195086,35 @@ }, { "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": [ @@ -48597,6 +195125,35 @@ }, { "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": [ @@ -48607,6 +195164,34 @@ }, { "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": [ @@ -48617,6 +195202,35 @@ }, { "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": [ @@ -48627,6 +195241,35 @@ }, { "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": [ @@ -48637,6 +195280,89 @@ }, { "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": [ @@ -48647,6 +195373,81 @@ }, { "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": [ @@ -48657,6 +195458,35 @@ }, { "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": [ @@ -48667,6 +195497,34 @@ }, { "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": [ @@ -48677,6 +195535,35 @@ }, { "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": [ @@ -48687,6 +195574,34 @@ }, { "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": [ @@ -48697,6 +195612,35 @@ }, { "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": [ @@ -48707,6 +195651,35 @@ }, { "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": [ @@ -48717,6 +195690,49 @@ }, { "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": [ @@ -48727,6 +195743,53 @@ }, { "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": [ @@ -48737,6 +195800,34 @@ }, { "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": [ @@ -48747,6 +195838,34 @@ }, { "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": [ @@ -48757,6 +195876,35 @@ }, { "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": [ @@ -48767,6 +195915,35 @@ }, { "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": [ @@ -48777,6 +195954,35 @@ }, { "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": [ @@ -48787,6 +195993,35 @@ }, { "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": [ @@ -48797,6 +196032,35 @@ }, { "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": [ @@ -48807,6 +196071,35 @@ }, { "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": [ @@ -48817,6 +196110,34 @@ }, { "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": [ @@ -48827,6 +196148,35 @@ }, { "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": [ @@ -48837,6 +196187,40 @@ }, { "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": [ @@ -48847,6 +196231,35 @@ }, { "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": [ @@ -48857,6 +196270,35 @@ }, { "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": [ @@ -48867,6 +196309,34 @@ }, { "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": [ @@ -48877,6 +196347,35 @@ }, { "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": [ @@ -48887,6 +196386,35 @@ }, { "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": [ @@ -48897,6 +196425,35 @@ }, { "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": [ @@ -48907,6 +196464,35 @@ }, { "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": [ @@ -48917,6 +196503,34 @@ }, { "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": [ @@ -48927,6 +196541,34 @@ }, { "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": [ @@ -48937,6 +196579,40 @@ }, { "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": [ @@ -48947,6 +196623,35 @@ }, { "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": [ @@ -48957,6 +196662,34 @@ }, { "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": [ @@ -48967,6 +196700,40 @@ }, { "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": [ @@ -48977,6 +196744,35 @@ }, { "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": [ @@ -48987,6 +196783,35 @@ }, { "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": [ @@ -48997,6 +196822,34 @@ }, { "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": [ @@ -49007,6 +196860,40 @@ }, { "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": [ @@ -49017,6 +196904,35 @@ }, { "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": [ @@ -49027,6 +196943,35 @@ }, { "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": [ @@ -49037,6 +196982,35 @@ }, { "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": [ @@ -49047,6 +197021,35 @@ }, { "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": [ @@ -49057,6 +197060,35 @@ }, { "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": [ @@ -49067,6 +197099,35 @@ }, { "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": [ @@ -49077,6 +197138,34 @@ }, { "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": [ @@ -49087,6 +197176,34 @@ }, { "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": [ @@ -49097,6 +197214,34 @@ }, { "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": [ @@ -49107,6 +197252,40 @@ }, { "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": [ @@ -49117,6 +197296,40 @@ }, { "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": [ @@ -49127,6 +197340,35 @@ }, { "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": [ @@ -49137,6 +197379,35 @@ }, { "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": [ @@ -49147,6 +197418,35 @@ }, { "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": [ @@ -49157,6 +197457,34 @@ }, { "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": [ @@ -49167,6 +197495,35 @@ }, { "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": [ @@ -49177,6 +197534,35 @@ }, { "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": [ @@ -49187,6 +197573,35 @@ }, { "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": [ @@ -49197,6 +197612,34 @@ }, { "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": [ @@ -49207,6 +197650,34 @@ }, { "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": [ @@ -49217,6 +197688,35 @@ }, { "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": [ @@ -49227,6 +197727,35 @@ }, { "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": [ @@ -49237,6 +197766,35 @@ }, { "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": [ @@ -49247,6 +197805,35 @@ }, { "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": [ @@ -49257,6 +197844,35 @@ }, { "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": [ @@ -49267,6 +197883,35 @@ }, { "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": [ @@ -49277,6 +197922,34 @@ }, { "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": [ @@ -49287,6 +197960,35 @@ }, { "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": [ @@ -49297,6 +197999,34 @@ }, { "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": [ @@ -49307,6 +198037,35 @@ }, { "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": [ @@ -49317,6 +198076,35 @@ }, { "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": [ @@ -49327,6 +198115,35 @@ }, { "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": [ @@ -49337,6 +198154,34 @@ }, { "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": [ @@ -49347,6 +198192,35 @@ }, { "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": [ @@ -49357,6 +198231,35 @@ }, { "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": [ @@ -49367,6 +198270,35 @@ }, { "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": [ @@ -49377,6 +198309,35 @@ }, { "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": [ @@ -49387,6 +198348,39 @@ }, { "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": [ @@ -49397,6 +198391,35 @@ }, { "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": [ @@ -49407,6 +198430,34 @@ }, { "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": [ @@ -49417,6 +198468,35 @@ }, { "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": [ @@ -49427,6 +198507,39 @@ }, { "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": [ @@ -49437,6 +198550,39 @@ }, { "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": [ @@ -49447,6 +198593,34 @@ }, { "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": [ @@ -49457,6 +198631,35 @@ }, { "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": [ @@ -49467,6 +198670,34 @@ }, { "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": [ @@ -49477,6 +198708,35 @@ }, { "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": [ @@ -49487,6 +198747,35 @@ }, { "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": [ @@ -49497,6 +198786,34 @@ }, { "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": [ @@ -49507,6 +198824,35 @@ }, { "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": [ @@ -49517,6 +198863,35 @@ }, { "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": [ @@ -49527,6 +198902,35 @@ }, { "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": [ @@ -49537,6 +198941,35 @@ }, { "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": [ @@ -49547,6 +198980,40 @@ }, { "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": [ @@ -49557,6 +199024,40 @@ }, { "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": [ @@ -49567,6 +199068,40 @@ }, { "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": [ @@ -49577,6 +199112,34 @@ }, { "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": [ @@ -49587,6 +199150,40 @@ }, { "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": [ @@ -49597,6 +199194,34 @@ }, { "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": [ @@ -49607,6 +199232,34 @@ }, { "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": [ @@ -49617,6 +199270,34 @@ }, { "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": [ @@ -49627,6 +199308,73 @@ }, { "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": [ @@ -49637,6 +199385,84 @@ }, { "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": [ @@ -49647,6 +199473,35 @@ }, { "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": [ @@ -49657,6 +199512,40 @@ }, { "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": [ @@ -49667,6 +199556,35 @@ }, { "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": [ @@ -49677,6 +199595,40 @@ }, { "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": [ @@ -49687,6 +199639,40 @@ }, { "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": [ @@ -49697,6 +199683,35 @@ }, { "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": [ @@ -49707,6 +199722,35 @@ }, { "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": [ @@ -49717,6 +199761,34 @@ }, { "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": [ @@ -49727,6 +199799,39 @@ }, { "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": [ @@ -49737,6 +199842,55 @@ }, { "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": [ @@ -49747,6 +199901,39 @@ }, { "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": [ @@ -49757,6 +199944,55 @@ }, { "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": [ @@ -49767,6 +200003,39 @@ }, { "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": [ @@ -49777,6 +200046,39 @@ }, { "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": [ @@ -49787,6 +200089,55 @@ }, { "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": [ @@ -49797,6 +200148,39 @@ }, { "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": [ @@ -49807,6 +200191,35 @@ }, { "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": [ @@ -49817,6 +200230,34 @@ }, { "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": [ @@ -49827,6 +200268,40 @@ }, { "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": [ @@ -49837,6 +200312,40 @@ }, { "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": [ @@ -49847,6 +200356,40 @@ }, { "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": [ @@ -49857,6 +200400,35 @@ }, { "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": [ @@ -49867,6 +200439,40 @@ }, { "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": [ @@ -49877,6 +200483,35 @@ }, { "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": [ @@ -49887,6 +200522,34 @@ }, { "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": [ @@ -49897,6 +200560,35 @@ }, { "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": [ @@ -49907,6 +200599,359 @@ }, { "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": [ @@ -49917,6 +200962,172 @@ }, { "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": [ @@ -49927,6 +201138,40 @@ }, { "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": [ @@ -49937,6 +201182,40 @@ }, { "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": [ @@ -49947,6 +201226,35 @@ }, { "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": [ @@ -49957,6 +201265,34 @@ }, { "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": [ @@ -49967,6 +201303,40 @@ }, { "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": [ @@ -49977,6 +201347,35 @@ }, { "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": [ @@ -49987,6 +201386,34 @@ }, { "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": [ @@ -49997,6 +201424,40 @@ }, { "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": [ @@ -50007,6 +201468,35 @@ }, { "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": [ @@ -50017,6 +201507,40 @@ }, { "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": [ @@ -50027,6 +201551,34 @@ }, { "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": [ @@ -50037,6 +201589,35 @@ }, { "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": [ @@ -50047,6 +201628,35 @@ }, { "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": [ @@ -50057,6 +201667,40 @@ }, { "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": [ @@ -50067,6 +201711,35 @@ }, { "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": [ @@ -50077,6 +201750,35 @@ }, { "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": [ @@ -50087,6 +201789,35 @@ }, { "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": [ @@ -50097,6 +201828,34 @@ }, { "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": [ @@ -50107,6 +201866,35 @@ }, { "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": [ @@ -50117,6 +201905,34 @@ }, { "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": [ @@ -50127,6 +201943,35 @@ }, { "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": [ @@ -50137,6 +201982,34 @@ }, { "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": [ @@ -50147,6 +202020,35 @@ }, { "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": [ @@ -50157,6 +202059,34 @@ }, { "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": [ @@ -50167,6 +202097,35 @@ }, { "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": [ @@ -50177,6 +202136,35 @@ }, { "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": [ @@ -50187,6 +202175,35 @@ }, { "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": [ @@ -50197,6 +202214,40 @@ }, { "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": [ @@ -50207,6 +202258,34 @@ }, { "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": [ @@ -50217,6 +202296,35 @@ }, { "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": [ @@ -50227,6 +202335,34 @@ }, { "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": [ @@ -50237,6 +202373,34 @@ }, { "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": [ @@ -50247,6 +202411,35 @@ }, { "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": [ @@ -50257,6 +202450,35 @@ }, { "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": [ @@ -50267,6 +202489,35 @@ }, { "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": [ @@ -50277,6 +202528,34 @@ }, { "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": [ @@ -50287,6 +202566,35 @@ }, { "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": [ @@ -50297,6 +202605,35 @@ }, { "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": [ @@ -50307,6 +202644,34 @@ }, { "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": [ @@ -50317,6 +202682,35 @@ }, { "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": [ @@ -50327,6 +202721,40 @@ }, { "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": [ @@ -50337,6 +202765,35 @@ }, { "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": [ @@ -50347,6 +202804,35 @@ }, { "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": [ @@ -50357,6 +202843,35 @@ }, { "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": [ @@ -50367,6 +202882,35 @@ }, { "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": [ @@ -50377,6 +202921,35 @@ }, { "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": [ @@ -50387,6 +202960,35 @@ }, { "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": [ @@ -50397,6 +202999,35 @@ }, { "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": [ @@ -50407,6 +203038,62 @@ }, { "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": [ @@ -50417,6 +203104,84 @@ }, { "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": [ @@ -50427,6 +203192,62 @@ }, { "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": [ @@ -50437,6 +203258,51 @@ }, { "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": [ @@ -50447,6 +203313,40 @@ }, { "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": [ @@ -50457,6 +203357,35 @@ }, { "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": [ @@ -50467,6 +203396,40 @@ }, { "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": [ @@ -50477,6 +203440,40 @@ }, { "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": [ @@ -50487,6 +203484,35 @@ }, { "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": [ @@ -50497,6 +203523,34 @@ }, { "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": [ @@ -50507,6 +203561,40 @@ }, { "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": [ @@ -50517,6 +203605,40 @@ }, { "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": [ @@ -50527,6 +203649,35 @@ }, { "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": [ @@ -50537,6 +203688,35 @@ }, { "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": [ @@ -50547,6 +203727,34 @@ }, { "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": [ @@ -50557,6 +203765,40 @@ }, { "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": [ @@ -50567,6 +203809,35 @@ }, { "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": [ @@ -50577,6 +203848,40 @@ }, { "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": [ @@ -50587,6 +203892,35 @@ }, { "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": [ @@ -50597,6 +203931,34 @@ }, { "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": [ @@ -50607,6 +203969,35 @@ }, { "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": [ @@ -50617,6 +204008,35 @@ }, { "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": [ @@ -50627,6 +204047,40 @@ }, { "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": [ @@ -50637,6 +204091,40 @@ }, { "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": [ @@ -50647,6 +204135,40 @@ }, { "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": [ @@ -50657,6 +204179,34 @@ }, { "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": [ @@ -50667,6 +204217,40 @@ }, { "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": [ @@ -50677,6 +204261,40 @@ }, { "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": [ @@ -50687,6 +204305,34 @@ }, { "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": [ @@ -50697,6 +204343,40 @@ }, { "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": [ @@ -50707,6 +204387,34 @@ }, { "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": [ @@ -50717,6 +204425,34 @@ }, { "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": [ @@ -50727,6 +204463,35 @@ }, { "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": [ @@ -50737,6 +204502,35 @@ }, { "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": [ @@ -50747,6 +204541,35 @@ }, { "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": [ @@ -50757,6 +204580,35 @@ }, { "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": [ @@ -50767,6 +204619,51 @@ }, { "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": [ @@ -50777,6 +204674,62 @@ }, { "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": [ @@ -50787,6 +204740,35 @@ }, { "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": [ @@ -50797,6 +204779,34 @@ }, { "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": [ @@ -50807,6 +204817,35 @@ }, { "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": [ @@ -50817,6 +204856,40 @@ }, { "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": [ @@ -50827,6 +204900,38 @@ }, { "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": [ @@ -50837,6 +204942,40 @@ }, { "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": [ @@ -50847,6 +204986,35 @@ }, { "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": [ @@ -50857,6 +205025,35 @@ }, { "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": [ @@ -50867,6 +205064,35 @@ }, { "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": [ @@ -50877,6 +205103,34 @@ }, { "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": [ @@ -50887,6 +205141,40 @@ }, { "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": [ @@ -50897,6 +205185,35 @@ }, { "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": [ @@ -50907,6 +205224,35 @@ }, { "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": [ @@ -50917,6 +205263,35 @@ }, { "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": [ @@ -50927,6 +205302,35 @@ }, { "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": [ @@ -50937,6 +205341,34 @@ }, { "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": [ @@ -50947,6 +205379,35 @@ }, { "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": [ @@ -50957,6 +205418,34 @@ }, { "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": [ @@ -50967,6 +205456,35 @@ }, { "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": [ @@ -50977,6 +205495,35 @@ }, { "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": [ @@ -50987,6 +205534,34 @@ }, { "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": [ @@ -50997,6 +205572,40 @@ }, { "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": [ @@ -51007,6 +205616,35 @@ }, { "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": [ @@ -51017,6 +205655,35 @@ }, { "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": [ @@ -51027,6 +205694,40 @@ }, { "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": [ @@ -51037,6 +205738,34 @@ }, { "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": [ @@ -51047,6 +205776,40 @@ }, { "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": [ @@ -51057,6 +205820,35 @@ }, { "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": [ @@ -51067,6 +205859,35 @@ }, { "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": [ @@ -51077,6 +205898,34 @@ }, { "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": [ @@ -51087,6 +205936,34 @@ }, { "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": [ @@ -51097,6 +205974,40 @@ }, { "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": [ @@ -51107,6 +206018,35 @@ }, { "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": [ @@ -51117,6 +206057,40 @@ }, { "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": [ @@ -51127,6 +206101,35 @@ }, { "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": [ @@ -51137,6 +206140,34 @@ }, { "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": [ @@ -51147,6 +206178,35 @@ }, { "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": [ @@ -51157,6 +206217,35 @@ }, { "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": [ @@ -51167,6 +206256,35 @@ }, { "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": [ @@ -51177,6 +206295,35 @@ }, { "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": [ @@ -51187,6 +206334,35 @@ }, { "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": [ @@ -51197,6 +206373,39 @@ }, { "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": [ @@ -51207,6 +206416,40 @@ }, { "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": [ @@ -51217,6 +206460,39 @@ }, { "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": [ @@ -51227,6 +206503,35 @@ }, { "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": [ @@ -51237,6 +206542,35 @@ }, { "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": [ @@ -51247,6 +206581,35 @@ }, { "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": [ @@ -51257,6 +206620,35 @@ }, { "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": [ @@ -51267,6 +206659,40 @@ }, { "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": [ @@ -51277,6 +206703,34 @@ }, { "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": [ @@ -51287,6 +206741,35 @@ }, { "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": [ @@ -51297,6 +206780,35 @@ }, { "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": [ @@ -51307,6 +206819,34 @@ }, { "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": [ @@ -51317,6 +206857,34 @@ }, { "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": [ @@ -51327,6 +206895,35 @@ }, { "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": [ @@ -51337,6 +206934,39 @@ }, { "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": [ @@ -51347,6 +206977,34 @@ }, { "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": [ @@ -51357,6 +207015,35 @@ }, { "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": [ @@ -51367,6 +207054,35 @@ }, { "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": [ @@ -51377,6 +207093,35 @@ }, { "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": [ @@ -51387,6 +207132,35 @@ }, { "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": [ @@ -51397,6 +207171,35 @@ }, { "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": [ @@ -51407,6 +207210,35 @@ }, { "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": [ @@ -51417,6 +207249,34 @@ }, { "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": [ @@ -51427,6 +207287,35 @@ }, { "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": [ @@ -51437,6 +207326,35 @@ }, { "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": [ @@ -51447,6 +207365,35 @@ }, { "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": [ @@ -51457,6 +207404,35 @@ }, { "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": [ @@ -51467,6 +207443,34 @@ }, { "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": [ @@ -51477,6 +207481,35 @@ }, { "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": [ @@ -51487,6 +207520,35 @@ }, { "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": [ @@ -51497,6 +207559,35 @@ }, { "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": [ @@ -51507,6 +207598,35 @@ }, { "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": [ @@ -51517,6 +207637,35 @@ }, { "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": [ @@ -51527,6 +207676,34 @@ }, { "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": [ @@ -51537,6 +207714,35 @@ }, { "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": [ @@ -51547,6 +207753,35 @@ }, { "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": [ @@ -51557,6 +207792,35 @@ }, { "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": [ @@ -51567,6 +207831,34 @@ }, { "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": [ @@ -51577,6 +207869,35 @@ }, { "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": [ @@ -51587,6 +207908,40 @@ }, { "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": [ @@ -51597,6 +207952,35 @@ }, { "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": [ @@ -51607,6 +207991,35 @@ }, { "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": [ @@ -51617,6 +208030,35 @@ }, { "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": [ @@ -51627,6 +208069,40 @@ }, { "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": [ @@ -51637,6 +208113,34 @@ }, { "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": [ @@ -51647,6 +208151,35 @@ }, { "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": [ @@ -51657,6 +208190,40 @@ }, { "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": [ @@ -51667,6 +208234,34 @@ }, { "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": [ @@ -51677,6 +208272,34 @@ }, { "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": [ @@ -51687,6 +208310,35 @@ }, { "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": [ @@ -51697,6 +208349,35 @@ }, { "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": [ @@ -51707,6 +208388,34 @@ }, { "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": [ @@ -51717,6 +208426,35 @@ }, { "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": [ @@ -51727,6 +208465,35 @@ }, { "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": [ @@ -51737,6 +208504,34 @@ }, { "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": [ @@ -51747,6 +208542,35 @@ }, { "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": [ @@ -51757,6 +208581,40 @@ }, { "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": [ @@ -51767,6 +208625,40 @@ }, { "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": [ @@ -51777,6 +208669,35 @@ }, { "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": [ @@ -51787,6 +208708,35 @@ }, { "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": [ @@ -51797,6 +208747,34 @@ }, { "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": [ @@ -51807,6 +208785,35 @@ }, { "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": [ @@ -51817,6 +208824,35 @@ }, { "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": [ @@ -51827,6 +208863,35 @@ }, { "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": [ @@ -51837,6 +208902,35 @@ }, { "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": [ @@ -51847,6 +208941,34 @@ }, { "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": [ @@ -51857,6 +208979,34 @@ }, { "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": [ @@ -51867,6 +209017,35 @@ }, { "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": [ @@ -51877,6 +209056,40 @@ }, { "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": [ @@ -51887,6 +209100,35 @@ }, { "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": [ @@ -51897,6 +209139,35 @@ }, { "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": [ @@ -51907,6 +209178,35 @@ }, { "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": [ @@ -51917,6 +209217,34 @@ }, { "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": [ @@ -51927,6 +209255,34 @@ }, { "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": [ @@ -51937,6 +209293,35 @@ }, { "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": [ @@ -51947,6 +209332,35 @@ }, { "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": [ @@ -51957,6 +209371,35 @@ }, { "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": [ @@ -51967,6 +209410,35 @@ }, { "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": [ @@ -51977,6 +209449,35 @@ }, { "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": [ @@ -51987,6 +209488,35 @@ }, { "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": [ @@ -51997,6 +209527,35 @@ }, { "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": [ @@ -52007,6 +209566,34 @@ }, { "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": [ @@ -52017,6 +209604,35 @@ }, { "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": [ @@ -52027,6 +209643,35 @@ }, { "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": [ @@ -52037,6 +209682,35 @@ }, { "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": [ @@ -52047,6 +209721,35 @@ }, { "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": [ @@ -52057,6 +209760,35 @@ }, { "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": [ @@ -52067,6 +209799,35 @@ }, { "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": [ @@ -52077,6 +209838,35 @@ }, { "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": [ @@ -52087,6 +209877,34 @@ }, { "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": [ @@ -52097,6 +209915,40 @@ }, { "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": [ @@ -52107,6 +209959,34 @@ }, { "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": [ @@ -52117,6 +209997,35 @@ }, { "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": [ @@ -52127,6 +210036,35 @@ }, { "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": [ @@ -52137,6 +210075,35 @@ }, { "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": [ @@ -52147,6 +210114,40 @@ }, { "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": [ @@ -52157,6 +210158,35 @@ }, { "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": [ @@ -52167,6 +210197,35 @@ }, { "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": [ @@ -52177,6 +210236,35 @@ }, { "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": [ @@ -52187,6 +210275,35 @@ }, { "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": [ @@ -52197,6 +210314,35 @@ }, { "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": [ @@ -52207,6 +210353,35 @@ }, { "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": [ @@ -52217,6 +210392,35 @@ }, { "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": [ @@ -52227,6 +210431,35 @@ }, { "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": [ @@ -52237,6 +210470,34 @@ }, { "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": [ @@ -52247,6 +210508,35 @@ }, { "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": [ @@ -52257,6 +210547,35 @@ }, { "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": [ @@ -52267,6 +210586,35 @@ }, { "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": [ @@ -52277,6 +210625,35 @@ }, { "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": [ @@ -52287,6 +210664,35 @@ }, { "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": [ @@ -52297,6 +210703,35 @@ }, { "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": [ @@ -52307,6 +210742,35 @@ }, { "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": [ @@ -52317,6 +210781,35 @@ }, { "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": [ @@ -52327,6 +210820,35 @@ }, { "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": [ @@ -52337,6 +210859,35 @@ }, { "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": [ @@ -52347,6 +210898,39 @@ }, { "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": [ @@ -52357,6 +210941,39 @@ }, { "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": [ @@ -52367,6 +210984,34 @@ }, { "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": [ @@ -52377,6 +211022,35 @@ }, { "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": [ @@ -52387,6 +211061,34 @@ }, { "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": [ @@ -52397,6 +211099,39 @@ }, { "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": [ @@ -52407,6 +211142,34 @@ }, { "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": [ @@ -52417,6 +211180,40 @@ }, { "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": [ @@ -52427,6 +211224,35 @@ }, { "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": [ @@ -52437,6 +211263,34 @@ }, { "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": [ @@ -52447,6 +211301,34 @@ }, { "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": [ @@ -52457,6 +211339,34 @@ }, { "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": [ @@ -52467,6 +211377,40 @@ }, { "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": [ @@ -52477,6 +211421,34 @@ }, { "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": [ @@ -52487,6 +211459,35 @@ }, { "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": [ @@ -52497,6 +211498,40 @@ }, { "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": [ @@ -52507,6 +211542,34 @@ }, { "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": [ @@ -52517,6 +211580,40 @@ }, { "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": [ @@ -52527,6 +211624,35 @@ }, { "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": [ @@ -52537,6 +211663,35 @@ }, { "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": [ @@ -52547,6 +211702,35 @@ }, { "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": [ @@ -52557,6 +211741,35 @@ }, { "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": [ @@ -52567,6 +211780,34 @@ }, { "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": [ @@ -52577,6 +211818,34 @@ }, { "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": [ @@ -52587,6 +211856,35 @@ }, { "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": [ @@ -52597,6 +211895,35 @@ }, { "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": [ @@ -52607,6 +211934,35 @@ }, { "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": [ @@ -52617,6 +211973,238 @@ }, { "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": [ @@ -52627,6 +212215,34 @@ }, { "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": [ @@ -52637,6 +212253,34 @@ }, { "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": [ @@ -52647,6 +212291,35 @@ }, { "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": [ @@ -52657,6 +212330,35 @@ }, { "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": [ @@ -52667,6 +212369,35 @@ }, { "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": [ @@ -52677,6 +212408,34 @@ }, { "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": [ @@ -52687,6 +212446,35 @@ }, { "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": [ @@ -52697,6 +212485,35 @@ }, { "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": [ @@ -52707,6 +212524,35 @@ }, { "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": [ @@ -52717,6 +212563,722 @@ }, { "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": [ @@ -52727,6 +213289,34 @@ }, { "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": [ @@ -52737,6 +213327,35 @@ }, { "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": [ @@ -52747,6 +213366,34 @@ }, { "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": [ @@ -52757,6 +213404,35 @@ }, { "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": [ @@ -52767,6 +213443,35 @@ }, { "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": [ @@ -52777,6 +213482,34 @@ }, { "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": [ @@ -52787,6 +213520,35 @@ }, { "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": [ @@ -52797,6 +213559,40 @@ }, { "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": [ @@ -52807,6 +213603,34 @@ }, { "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": [ @@ -52817,6 +213641,40 @@ }, { "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": [ @@ -52827,6 +213685,35 @@ }, { "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": [ @@ -52837,6 +213724,35 @@ }, { "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": [ @@ -52847,6 +213763,623 @@ }, { "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": [ @@ -52857,6 +214390,35 @@ }, { "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": [ @@ -52867,6 +214429,35 @@ }, { "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": [ @@ -52877,6 +214468,84 @@ }, { "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": [ @@ -52887,6 +214556,35 @@ }, { "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": [ @@ -52897,6 +214595,35 @@ }, { "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": [ @@ -52907,6 +214634,40 @@ }, { "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": [ @@ -52917,6 +214678,34 @@ }, { "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": [ @@ -52927,6 +214716,34 @@ }, { "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": [ @@ -52937,6 +214754,35 @@ }, { "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": [ @@ -52947,6 +214793,35 @@ }, { "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": [ @@ -52957,6 +214832,35 @@ }, { "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": [ @@ -52967,6 +214871,40 @@ }, { "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": [ @@ -52977,6 +214915,35 @@ }, { "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": [ @@ -52987,6 +214954,34 @@ }, { "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": [ @@ -52997,6 +214992,35 @@ }, { "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": [ @@ -53007,6 +215031,35 @@ }, { "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": [ @@ -53017,6 +215070,34 @@ }, { "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": [ @@ -53027,6 +215108,39 @@ }, { "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": [ @@ -53037,6 +215151,35 @@ }, { "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": [ @@ -53047,6 +215190,35 @@ }, { "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": [ @@ -53057,6 +215229,34 @@ }, { "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": [ @@ -53067,6 +215267,40 @@ }, { "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": [ @@ -53077,6 +215311,35 @@ }, { "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": [ @@ -53087,6 +215350,34 @@ }, { "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": [ @@ -53097,6 +215388,35 @@ }, { "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": [ @@ -53107,6 +215427,34 @@ }, { "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": [ @@ -53117,6 +215465,36 @@ }, { "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": [ @@ -53127,6 +215505,40 @@ }, { "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": [ @@ -53137,6 +215549,36 @@ }, { "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": [ @@ -53147,6 +215589,35 @@ }, { "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": [ @@ -53157,6 +215628,1382 @@ }, { "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": [ @@ -53167,6 +217014,41 @@ }, { "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": [ @@ -53177,6 +217059,40 @@ }, { "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": [ @@ -53187,6 +217103,35 @@ }, { "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": [ @@ -53197,6 +217142,35 @@ }, { "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": [ @@ -53207,6 +217181,36 @@ }, { "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": [ @@ -53217,6 +217221,35 @@ }, { "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": [ @@ -53227,6 +217260,40 @@ }, { "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": [ @@ -53237,6 +217304,34 @@ }, { "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": [ @@ -53247,6 +217342,34 @@ }, { "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": [ @@ -53257,6 +217380,40 @@ }, { "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": [ @@ -53267,6 +217424,35 @@ }, { "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": [ @@ -53277,6 +217463,40 @@ }, { "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": [ @@ -53287,6 +217507,39 @@ }, { "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": [ @@ -53297,6 +217550,35 @@ }, { "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": [ @@ -53307,6 +217589,35 @@ }, { "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": [ @@ -53317,6 +217628,35 @@ }, { "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": [ @@ -53327,6 +217667,35 @@ }, { "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": [ @@ -53337,6 +217706,40 @@ }, { "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": [ @@ -53347,6 +217750,32 @@ }, { "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": [ @@ -53357,6 +217786,41 @@ }, { "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": [ @@ -53367,6 +217831,35 @@ }, { "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": [ @@ -53377,6 +217870,34 @@ }, { "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": [ @@ -53387,6 +217908,35 @@ }, { "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": [ @@ -53397,6 +217947,35 @@ }, { "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": [ @@ -53407,6 +217986,34 @@ }, { "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": [ @@ -53417,6 +218024,35 @@ }, { "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": [ @@ -53427,6 +218063,36 @@ }, { "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": [ @@ -53437,6 +218103,40 @@ }, { "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": [ @@ -53447,6 +218147,32 @@ }, { "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": [ @@ -53457,6 +218183,634 @@ }, { "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": [ @@ -53467,6 +218821,35 @@ }, { "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": [ @@ -53477,6 +218860,35 @@ }, { "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": [ @@ -53487,6 +218899,35 @@ }, { "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": [ @@ -53497,6 +218938,35 @@ }, { "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": [ @@ -53507,6 +218977,35 @@ }, { "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": [ @@ -53517,6 +219016,34 @@ }, { "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": [ @@ -53527,6 +219054,35 @@ }, { "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": [ @@ -53537,6 +219093,143 @@ }, { "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": [ @@ -53547,6 +219240,35 @@ }, { "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": [ @@ -53557,6 +219279,66 @@ }, { "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": [ @@ -53567,6 +219349,36 @@ }, { "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": [ @@ -53577,6 +219389,40 @@ }, { "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": [ @@ -53587,6 +219433,35 @@ }, { "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": [ @@ -53597,6 +219472,35 @@ }, { "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": [ @@ -53607,6 +219511,35 @@ }, { "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": [ @@ -53617,6 +219550,40 @@ }, { "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": [ @@ -53627,6 +219594,35 @@ }, { "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": [ @@ -53637,6 +219633,41 @@ }, { "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": [ @@ -53647,6 +219678,34 @@ }, { "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": [ @@ -53657,6 +219716,40 @@ }, { "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": [ @@ -53667,6 +219760,35 @@ }, { "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": [ @@ -53677,6 +219799,34 @@ }, { "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": [ @@ -53687,6 +219837,36 @@ }, { "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": [ @@ -53697,6 +219877,35 @@ }, { "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": [ @@ -53707,6 +219916,35 @@ }, { "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": [ @@ -53717,6 +219955,35 @@ }, { "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": [ @@ -53727,6 +219994,35 @@ }, { "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": [ @@ -53737,6 +220033,34 @@ }, { "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": [ @@ -53747,6 +220071,36 @@ }, { "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": [ @@ -53757,6 +220111,34 @@ }, { "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": [ @@ -53767,6 +220149,34 @@ }, { "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": [ @@ -53777,6 +220187,35 @@ }, { "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": [ @@ -53787,6 +220226,35 @@ }, { "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": [ @@ -53797,6 +220265,35 @@ }, { "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": [ @@ -53807,6 +220304,35 @@ }, { "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": [ @@ -53817,6 +220343,34 @@ }, { "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": [ @@ -53827,6 +220381,40 @@ }, { "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": [ @@ -53837,6 +220425,34 @@ }, { "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": [ @@ -53847,6 +220463,35 @@ }, { "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": [ @@ -53857,6 +220502,36 @@ }, { "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": [ @@ -53867,6 +220542,35 @@ }, { "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": [ @@ -53877,6 +220581,35 @@ }, { "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": [ @@ -53887,6 +220620,35 @@ }, { "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": [ @@ -53897,6 +220659,34 @@ }, { "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": [ @@ -53907,6 +220697,35 @@ }, { "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": [ @@ -53917,6 +220736,35 @@ }, { "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": [ @@ -53927,6 +220775,35 @@ }, { "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": [ @@ -53937,6 +220814,39 @@ }, { "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": [ @@ -53947,6 +220857,40 @@ }, { "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": [ @@ -53957,6 +220901,40 @@ }, { "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": [ @@ -53967,6 +220945,35 @@ }, { "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": [ @@ -53977,6 +220984,35 @@ }, { "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": [ @@ -53987,6 +221023,34 @@ }, { "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": [ @@ -53997,6 +221061,39 @@ }, { "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": [ @@ -54007,6 +221104,35 @@ }, { "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": [ @@ -54017,6 +221143,35 @@ }, { "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": [ @@ -54027,6 +221182,35 @@ }, { "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": [ @@ -54037,6 +221221,34 @@ }, { "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": [ @@ -54047,6 +221259,36 @@ }, { "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": [ @@ -54057,6 +221299,35 @@ }, { "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": [ @@ -54067,6 +221338,40 @@ }, { "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": [ @@ -54077,6 +221382,35 @@ }, { "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": [ @@ -54087,6 +221421,36 @@ }, { "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": [ @@ -54097,6 +221461,40 @@ }, { "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": [ @@ -54107,6 +221505,40 @@ }, { "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": [ @@ -54117,6 +221549,35 @@ }, { "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": [ @@ -54127,6 +221588,63 @@ }, { "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": [ @@ -54137,6 +221655,36 @@ }, { "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": [ @@ -54147,6 +221695,34 @@ }, { "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": [ @@ -54157,6 +221733,34 @@ }, { "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": [ @@ -54167,6 +221771,34 @@ }, { "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": [ @@ -54177,6 +221809,36 @@ }, { "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": [ @@ -54187,6 +221849,40 @@ }, { "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": [ @@ -54197,6 +221893,35 @@ }, { "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": [ @@ -54207,6 +221932,35 @@ }, { "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": [ @@ -54217,6 +221971,34 @@ }, { "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": [ @@ -54227,6 +222009,909 @@ }, { "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": [ @@ -54237,6 +222922,35 @@ }, { "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": [ @@ -54247,6 +222961,34 @@ }, { "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": [ @@ -54257,6 +222999,40 @@ }, { "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": [ @@ -54267,6 +223043,35 @@ }, { "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": [ @@ -54277,6 +223082,35 @@ }, { "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": [ @@ -54287,6 +223121,36 @@ }, { "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": [ @@ -54297,6 +223161,35 @@ }, { "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": [ @@ -54307,6 +223200,34 @@ }, { "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": [ @@ -54317,6 +223238,40 @@ }, { "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": [ @@ -54327,6 +223282,35 @@ }, { "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": [ @@ -54337,6 +223321,56 @@ }, { "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": [ @@ -54347,6 +223381,34 @@ }, { "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": [ @@ -54357,6 +223419,35 @@ }, { "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": [ @@ -54367,6 +223458,110 @@ }, { "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": [ @@ -54377,6 +223572,35 @@ }, { "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": [ @@ -54387,6 +223611,39 @@ }, { "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": [ @@ -54397,6 +223654,35 @@ }, { "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": [ @@ -54407,6 +223693,34 @@ }, { "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": [ @@ -54417,6 +223731,35 @@ }, { "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": [ @@ -54427,6 +223770,35 @@ }, { "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": [ @@ -54437,6 +223809,40 @@ }, { "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": [ @@ -54447,6 +223853,35 @@ }, { "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": [ @@ -54457,6 +223892,143 @@ }, { "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": [ @@ -54467,6 +224039,132 @@ }, { "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": [ @@ -54477,6 +224175,35 @@ }, { "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": [ @@ -54487,6 +224214,35 @@ }, { "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": [ @@ -54497,6 +224253,35 @@ }, { "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": [ @@ -54507,6 +224292,40 @@ }, { "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": [ @@ -54517,6 +224336,34 @@ }, { "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": [ @@ -54527,6 +224374,35 @@ }, { "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": [ @@ -54537,6 +224413,35 @@ }, { "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": [ @@ -54547,6 +224452,40 @@ }, { "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": [ @@ -54557,6 +224496,34 @@ }, { "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": [ @@ -54567,6 +224534,40 @@ }, { "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": [ @@ -54577,6 +224578,35 @@ }, { "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": [ @@ -54587,6 +224617,35 @@ }, { "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": [ @@ -54597,6 +224656,39 @@ }, { "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": [ @@ -54607,6 +224699,35 @@ }, { "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": [ @@ -54617,6 +224738,39 @@ }, { "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": [ @@ -54627,6 +224781,40 @@ }, { "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": [ @@ -54637,6 +224825,66 @@ }, { "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": [ @@ -54647,6 +224895,34 @@ }, { "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": [ @@ -54657,6 +224933,55 @@ }, { "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": [ @@ -54667,6 +224992,35 @@ }, { "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": [ @@ -54677,6 +225031,35 @@ }, { "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": [ @@ -54687,6 +225070,40 @@ }, { "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": [ @@ -54697,6 +225114,40 @@ }, { "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": [ @@ -54707,6 +225158,40 @@ }, { "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": [ @@ -54717,6 +225202,35 @@ }, { "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": [ @@ -54727,6 +225241,35 @@ }, { "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": [ @@ -54737,6 +225280,35 @@ }, { "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": [ @@ -54747,6 +225319,34 @@ }, { "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": [ @@ -54757,6 +225357,810 @@ }, { "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": [ @@ -54767,6 +226171,40 @@ }, { "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": [ @@ -54777,6 +226215,35 @@ }, { "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": [ @@ -54787,6 +226254,35 @@ }, { "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": [ @@ -54797,6 +226293,34 @@ }, { "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": [ @@ -54807,6 +226331,40 @@ }, { "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": [ @@ -54817,6 +226375,35 @@ }, { "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": [ @@ -54827,6 +226414,39 @@ }, { "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": [ @@ -54837,6 +226457,35 @@ }, { "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": [ @@ -54847,6 +226496,35 @@ }, { "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": [ @@ -54857,6 +226535,35 @@ }, { "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": [ @@ -54867,6 +226574,1074 @@ }, { "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": [ @@ -54877,6 +227652,35 @@ }, { "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": [ @@ -54887,6 +227691,40 @@ }, { "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": [ @@ -54897,6 +227735,35 @@ }, { "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": [ @@ -54907,6 +227774,35 @@ }, { "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": [ @@ -54917,6 +227813,35 @@ }, { "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": [ @@ -54927,6 +227852,40 @@ }, { "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": [ @@ -54937,6 +227896,34 @@ }, { "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": [ @@ -54947,6 +227934,40 @@ }, { "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": [ @@ -54957,6 +227978,35 @@ }, { "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": [ @@ -54967,6 +228017,35 @@ }, { "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": [ @@ -54977,6 +228056,40 @@ }, { "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": [ @@ -54987,6 +228100,1118 @@ }, { "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": [ @@ -54997,6 +229222,35 @@ }, { "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": [ @@ -55007,6 +229261,55 @@ }, { "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": [ @@ -55017,6 +229320,40 @@ }, { "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": [ @@ -55027,6 +229364,35 @@ }, { "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": [ @@ -55037,6 +229403,34 @@ }, { "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": [ @@ -55047,6 +229441,35 @@ }, { "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": [ @@ -55057,6 +229480,39 @@ }, { "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": [ @@ -55067,6 +229523,66 @@ }, { "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": [ @@ -55077,6 +229593,40 @@ }, { "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": [ @@ -55087,6 +229637,99 @@ }, { "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": [ @@ -55097,6 +229740,40 @@ }, { "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": [ @@ -55107,6 +229784,35 @@ }, { "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": [ @@ -55117,6 +229823,55 @@ }, { "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": [ @@ -55127,6 +229882,35 @@ }, { "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": [ @@ -55137,6 +229921,34 @@ }, { "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": [ @@ -55147,6 +229959,35 @@ }, { "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": [ @@ -55157,6 +229998,84 @@ }, { "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": [ @@ -55167,6 +230086,35 @@ }, { "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": [ @@ -55177,6 +230125,35 @@ }, { "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": [ @@ -55187,6 +230164,34 @@ }, { "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": [ @@ -55197,6 +230202,51 @@ }, { "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": [ @@ -55207,6 +230257,35 @@ }, { "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": [ @@ -55217,6 +230296,40 @@ }, { "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": [ @@ -55227,6 +230340,35 @@ }, { "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": [ @@ -55237,6 +230379,40 @@ }, { "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": [ @@ -55247,6 +230423,40 @@ }, { "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": [ @@ -55257,6 +230467,40 @@ }, { "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": [ @@ -55267,6 +230511,40 @@ }, { "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": [ @@ -55277,6 +230555,40 @@ }, { "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": [ @@ -55287,6 +230599,40 @@ }, { "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": [ @@ -55297,6 +230643,40 @@ }, { "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": [ @@ -55307,6 +230687,34 @@ }, { "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": [ @@ -55317,6 +230725,35 @@ }, { "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": [ @@ -55327,6 +230764,34 @@ }, { "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": [ @@ -55337,6 +230802,35 @@ }, { "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": [ @@ -55347,6 +230841,40 @@ }, { "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": [ @@ -55357,6 +230885,35 @@ }, { "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": [ @@ -55367,6 +230924,40 @@ }, { "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": [ @@ -55377,6 +230968,35 @@ }, { "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": [ @@ -55387,6 +231007,34 @@ }, { "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": [ @@ -55397,6 +231045,35 @@ }, { "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": [ @@ -55407,6 +231084,35 @@ }, { "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": [ @@ -55417,6 +231123,35 @@ }, { "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": [ @@ -55427,6 +231162,35 @@ }, { "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": [ @@ -55437,6 +231201,35 @@ }, { "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": [ @@ -55447,6 +231240,35 @@ }, { "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": [ @@ -55457,6 +231279,35 @@ }, { "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": [ @@ -55467,6 +231318,35 @@ }, { "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": [ @@ -55477,6 +231357,55 @@ }, { "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": [ @@ -55487,6 +231416,35 @@ }, { "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": [ @@ -55497,6 +231455,35 @@ }, { "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": [ @@ -55507,6 +231494,35 @@ }, { "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": [ @@ -55517,6 +231533,35 @@ }, { "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": [ @@ -55527,6 +231572,35 @@ }, { "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": [ @@ -55537,6 +231611,35 @@ }, { "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": [ @@ -55547,6 +231650,35 @@ }, { "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": [ @@ -55557,6 +231689,35 @@ }, { "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": [ @@ -55567,6 +231728,35 @@ }, { "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": [ @@ -55577,6 +231767,34 @@ }, { "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": [ @@ -55587,6 +231805,35 @@ }, { "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": [ @@ -55597,6 +231844,35 @@ }, { "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": [ @@ -55607,6 +231883,35 @@ }, { "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": [ @@ -55617,6 +231922,77 @@ }, { "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": [ @@ -55627,6 +232003,40 @@ }, { "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": [ @@ -55637,6 +232047,35 @@ }, { "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": [ @@ -55647,6 +232086,35 @@ }, { "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": [ @@ -55657,6 +232125,35 @@ }, { "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": [ @@ -55667,6 +232164,110 @@ }, { "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": [ @@ -55677,6 +232278,35 @@ }, { "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": [ @@ -55687,6 +232317,35 @@ }, { "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": [ @@ -55697,6 +232356,34 @@ }, { "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": [ @@ -55707,6 +232394,34 @@ }, { "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": [ @@ -55717,6 +232432,40 @@ }, { "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": [ @@ -55727,6 +232476,35 @@ }, { "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": [ @@ -55737,6 +232515,50 @@ }, { "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": [ @@ -55747,6 +232569,35 @@ }, { "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": [ @@ -55757,6 +232608,34 @@ }, { "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": [ @@ -55767,6 +232646,34 @@ }, { "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": [ @@ -55777,6 +232684,40 @@ }, { "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": [ @@ -55787,6 +232728,55 @@ }, { "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": [ @@ -55797,6 +232787,99 @@ }, { "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": [ @@ -55807,6 +232890,143 @@ }, { "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": [ @@ -55817,6 +233037,77 @@ }, { "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": [ @@ -55827,6 +233118,34 @@ }, { "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": [ @@ -55837,6 +233156,39 @@ }, { "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": [ @@ -55847,6 +233199,110 @@ }, { "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": [ @@ -55857,6 +233313,132 @@ }, { "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": [ @@ -55867,6 +233449,77 @@ }, { "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": [ @@ -55877,6 +233530,35 @@ }, { "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": [ @@ -55887,6 +233569,40 @@ }, { "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": [ @@ -55897,6 +233613,35 @@ }, { "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": [ @@ -55907,6 +233652,34 @@ }, { "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": [ @@ -55917,6 +233690,35 @@ }, { "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": [ @@ -55927,6 +233729,39 @@ }, { "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": [ @@ -55937,6 +233772,66 @@ }, { "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": [ @@ -55947,6 +233842,66 @@ }, { "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": [ @@ -55957,6 +233912,88 @@ }, { "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": [ @@ -55967,6 +234004,35 @@ }, { "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": [ @@ -55977,6 +234043,34 @@ }, { "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": [ @@ -55987,6 +234081,35 @@ }, { "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": [ @@ -55997,6 +234120,40 @@ }, { "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": [ @@ -56007,6 +234164,34 @@ }, { "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": [ @@ -56017,6 +234202,35 @@ }, { "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": [ @@ -56027,6 +234241,34 @@ }, { "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": [ @@ -56037,6 +234279,35 @@ }, { "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": [ @@ -56047,6 +234318,35 @@ }, { "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": [ @@ -56057,6 +234357,34 @@ }, { "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": [ @@ -56067,6 +234395,34 @@ }, { "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": [ @@ -56077,6 +234433,34 @@ }, { "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": [ @@ -56087,6 +234471,34 @@ }, { "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": [ @@ -56097,6 +234509,34 @@ }, { "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": [ @@ -56107,6 +234547,34 @@ }, { "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": [ @@ -56117,6 +234585,34 @@ }, { "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": [ @@ -56127,6 +234623,35 @@ }, { "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": [ @@ -56137,6 +234662,34 @@ }, { "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": [ @@ -56147,6 +234700,35 @@ }, { "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": [ @@ -56157,6 +234739,35 @@ }, { "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": [ @@ -56167,6 +234778,35 @@ }, { "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": [ @@ -56177,6 +234817,35 @@ }, { "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": [ @@ -56187,6 +234856,40 @@ }, { "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": [ @@ -56197,6 +234900,35 @@ }, { "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": [ @@ -56207,6 +234939,55 @@ }, { "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": [ @@ -56217,6 +234998,66 @@ }, { "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": [ @@ -56227,6 +235068,35 @@ }, { "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": [ @@ -56237,6 +235107,55 @@ }, { "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": [ @@ -56247,6 +235166,55 @@ }, { "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": [ @@ -56257,6 +235225,150 @@ }, { "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": [ @@ -56267,6 +235379,150 @@ }, { "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": [ @@ -56277,6 +235533,66 @@ }, { "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": [ @@ -56287,6 +235603,99 @@ }, { "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": [ @@ -56297,6 +235706,66 @@ }, { "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": [ @@ -56307,6 +235776,117 @@ }, { "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": [ @@ -56317,6 +235897,143 @@ }, { "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": [ @@ -56327,6 +236044,51 @@ }, { "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": [ @@ -56337,6 +236099,73 @@ }, { "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": [ @@ -56347,6 +236176,77 @@ }, { "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": [ @@ -56357,6 +236257,165 @@ }, { "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": [ @@ -56367,6 +236426,77 @@ }, { "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": [ @@ -56377,6 +236507,209 @@ }, { "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": [ @@ -56387,6 +236720,121 @@ }, { "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": [ @@ -56397,6 +236845,55 @@ }, { "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": [ @@ -56407,6 +236904,88 @@ }, { "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": [ @@ -56417,6 +236996,88 @@ }, { "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": [ @@ -56427,6 +237088,55 @@ }, { "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": [ @@ -56437,6 +237147,77 @@ }, { "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": [ @@ -56447,6 +237228,99 @@ }, { "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": [ @@ -56457,6 +237331,88 @@ }, { "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": [ @@ -56467,6 +237423,55 @@ }, { "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": [ @@ -56477,6 +237482,253 @@ }, { "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": [ @@ -56487,6 +237739,66 @@ }, { "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": [ @@ -56497,6 +237809,40 @@ }, { "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": [ @@ -56507,6 +237853,34 @@ }, { "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": [ @@ -56517,6 +237891,35 @@ }, { "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": [ @@ -56527,6 +237930,35 @@ }, { "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": [ @@ -56537,6 +237969,34 @@ }, { "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": [ @@ -56547,6 +238007,40 @@ }, { "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": [ @@ -56557,6 +238051,40 @@ }, { "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": [ @@ -56567,6 +238095,40 @@ }, { "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": [ @@ -56577,6 +238139,35 @@ }, { "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": [ @@ -56587,6 +238178,35 @@ }, { "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": [ @@ -56597,6 +238217,35 @@ }, { "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": [ @@ -56607,6 +238256,99 @@ }, { "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": [ @@ -56617,6 +238359,39 @@ }, { "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": [ @@ -56627,6 +238402,35 @@ }, { "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": [ @@ -56637,6 +238441,34 @@ }, { "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": [ @@ -56647,6 +238479,55 @@ }, { "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": [ @@ -56657,6 +238538,35 @@ }, { "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": [ @@ -56667,6 +238577,35 @@ }, { "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": [ @@ -56677,6 +238616,35 @@ }, { "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": [ @@ -56687,6 +238655,34 @@ }, { "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": [ @@ -56697,6 +238693,34 @@ }, { "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": [ @@ -56707,6 +238731,40 @@ }, { "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": [ @@ -56717,6 +238775,35 @@ }, { "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": [ @@ -56727,6 +238814,35 @@ }, { "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": [ @@ -56737,6 +238853,35 @@ }, { "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": [ @@ -56747,6 +238892,35 @@ }, { "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": [ @@ -56757,6 +238931,35 @@ }, { "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": [ @@ -56767,6 +238970,34 @@ }, { "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": [ @@ -56777,6 +239008,35 @@ }, { "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": [ @@ -56787,6 +239047,40 @@ }, { "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": [ @@ -56797,6 +239091,39 @@ }, { "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": [ @@ -56807,6 +239134,34 @@ }, { "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": [ @@ -56817,6 +239172,34 @@ }, { "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": [ @@ -56827,6 +239210,34 @@ }, { "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": [ @@ -56837,6 +239248,35 @@ }, { "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": [ @@ -56847,6 +239287,35 @@ }, { "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": [ @@ -56857,6 +239326,35 @@ }, { "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": [ @@ -56867,6 +239365,35 @@ }, { "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": [ @@ -56877,6 +239404,34 @@ }, { "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": [ @@ -56887,6 +239442,35 @@ }, { "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": [ @@ -56897,6 +239481,35 @@ }, { "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": [ @@ -56907,6 +239520,34 @@ }, { "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": [ @@ -56917,6 +239558,36 @@ }, { "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": [ @@ -56927,6 +239598,35 @@ }, { "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": [ @@ -56937,6 +239637,35 @@ }, { "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": [ @@ -56947,6 +239676,39 @@ }, { "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": [ @@ -56957,6 +239719,35 @@ }, { "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": [ @@ -56967,6 +239758,34 @@ }, { "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": [ @@ -56977,6 +239796,34 @@ }, { "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": [ @@ -56987,6 +239834,36 @@ }, { "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": [ @@ -56997,6 +239874,34 @@ }, { "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": [ @@ -57007,6 +239912,34 @@ }, { "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": [ @@ -57017,6 +239950,34 @@ }, { "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": [ @@ -57027,6 +239988,194 @@ }, { "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": [ @@ -57037,6 +240186,95 @@ }, { "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": [ @@ -57047,6 +240285,733 @@ }, { "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": [ @@ -57057,6 +241022,40 @@ }, { "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": [ @@ -57067,6 +241066,35 @@ }, { "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": [ @@ -57077,6 +241105,36 @@ }, { "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": [ @@ -57087,6 +241145,40 @@ }, { "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": [ @@ -57097,6 +241189,34 @@ }, { "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": [ @@ -57107,6 +241227,40 @@ }, { "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": [ @@ -57117,6 +241271,35 @@ }, { "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": [ @@ -57127,6 +241310,35 @@ }, { "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": [ @@ -57137,6 +241349,40 @@ }, { "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": [ @@ -57147,6 +241393,40 @@ }, { "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": [ @@ -57157,6 +241437,39 @@ }, { "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": [ @@ -57167,6 +241480,53 @@ }, { "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": [ @@ -57177,6 +241537,40 @@ }, { "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": [ @@ -57187,6 +241581,34 @@ }, { "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": [ @@ -57197,6 +241619,35 @@ }, { "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": [ @@ -57207,6 +241658,34 @@ }, { "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": [ @@ -57217,6 +241696,35 @@ }, { "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": [ @@ -57227,6 +241735,35 @@ }, { "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": [ @@ -57237,6 +241774,35 @@ }, { "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": [ @@ -57247,6 +241813,45 @@ }, { "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": [ @@ -57257,6 +241862,40 @@ }, { "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": [ @@ -57267,6 +241906,40 @@ }, { "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": [ @@ -57277,6 +241950,45 @@ }, { "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": [ @@ -57287,6 +241999,40 @@ }, { "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": [ @@ -57297,6 +242043,40 @@ }, { "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": [ @@ -57307,6 +242087,35 @@ }, { "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": [ @@ -57317,6 +242126,34 @@ }, { "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": [ @@ -57327,6 +242164,34 @@ }, { "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": [ @@ -57337,6 +242202,45 @@ }, { "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": [ @@ -57347,6 +242251,40 @@ }, { "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": [ @@ -57357,6 +242295,35 @@ }, { "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": [ @@ -57367,6 +242334,34 @@ }, { "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": "localhost:1234", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ @@ -57377,6 +242372,35 @@ }, { "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": [ @@ -57387,6 +242411,40 @@ }, { "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": [ @@ -57397,6 +242455,36 @@ }, { "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": [ @@ -57407,6 +242495,36 @@ }, { "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": [ @@ -57417,6 +242535,40 @@ }, { "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": [ @@ -57427,6 +242579,34 @@ }, { "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": [ @@ -57437,6 +242617,35 @@ }, { "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": [ @@ -57447,6 +242656,35 @@ }, { "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": [ @@ -57457,6 +242695,35 @@ }, { "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": [ @@ -57467,6 +242734,35 @@ }, { "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": [ @@ -57477,6 +242773,40 @@ }, { "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": [ @@ -57487,6 +242817,35 @@ }, { "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": [ @@ -57497,6 +242856,35 @@ }, { "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": [ @@ -57507,6 +242895,35 @@ }, { "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": [ @@ -57517,6 +242934,35 @@ }, { "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": [ @@ -57527,6 +242973,34 @@ }, { "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": [ @@ -57537,6 +243011,34 @@ }, { "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": [ @@ -57547,6 +243049,34 @@ }, { "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": [ @@ -57557,6 +243087,34 @@ }, { "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": [ @@ -57567,6 +243125,35 @@ }, { "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": [ @@ -57577,6 +243164,35 @@ }, { "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": [ @@ -57587,6 +243203,40 @@ }, { "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": [ @@ -57597,6 +243247,35 @@ }, { "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": [ @@ -57607,6 +243286,35 @@ }, { "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": [ @@ -57617,6 +243325,35 @@ }, { "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": [ @@ -57627,6 +243364,34 @@ }, { "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": [ @@ -57637,6 +243402,34 @@ }, { "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": [ @@ -57647,6 +243440,35 @@ }, { "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": [ @@ -57657,6 +243479,35 @@ }, { "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": [ @@ -57667,6 +243518,34 @@ }, { "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": [ @@ -57677,6 +243556,36 @@ }, { "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": [ @@ -57687,6 +243596,34 @@ }, { "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": [ @@ -57697,6 +243634,36 @@ }, { "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": [ @@ -57707,6 +243674,36 @@ }, { "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": [ @@ -57717,6 +243714,35 @@ }, { "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": [ @@ -57727,6 +243753,36 @@ }, { "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": [ @@ -57737,6 +243793,36 @@ }, { "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": [ @@ -57747,6 +243833,36 @@ }, { "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": [ @@ -57757,6 +243873,36 @@ }, { "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": [ @@ -57767,6 +243913,36 @@ }, { "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": [ @@ -57777,6 +243953,34 @@ }, { "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": [ @@ -57787,6 +243991,34 @@ }, { "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": [ @@ -57797,6 +244029,35 @@ }, { "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": [ @@ -57807,6 +244068,34 @@ }, { "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": [ @@ -57817,6 +244106,35 @@ }, { "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": [ @@ -57827,6 +244145,36 @@ }, { "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": [ @@ -57837,6 +244185,36 @@ }, { "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": [ @@ -57847,6 +244225,35 @@ }, { "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": [ @@ -57857,6 +244264,35 @@ }, { "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": [ @@ -57867,6 +244303,36 @@ }, { "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": [ @@ -57877,6 +244343,34 @@ }, { "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": [ @@ -57887,6 +244381,35 @@ }, { "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": [ @@ -57897,6 +244420,36 @@ }, { "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": [ @@ -57907,6 +244460,36 @@ }, { "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": [ @@ -57917,6 +244500,36 @@ }, { "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": [ @@ -57927,6 +244540,35 @@ }, { "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": [ @@ -57937,6 +244579,35 @@ }, { "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": [ @@ -57947,6 +244618,35 @@ }, { "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": [ @@ -57957,6 +244657,34 @@ }, { "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": [ @@ -57967,6 +244695,35 @@ }, { "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": [ @@ -57977,6 +244734,40 @@ }, { "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": [ @@ -57987,6 +244778,35 @@ }, { "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": [ @@ -57997,6 +244817,34 @@ }, { "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": [ @@ -58007,6 +244855,34 @@ }, { "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": [ @@ -58017,6 +244893,40 @@ }, { "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": [ @@ -58027,6 +244937,33 @@ }, { "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": [ @@ -58037,6 +244974,36 @@ }, { "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": [ @@ -58047,6 +245014,35 @@ }, { "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": [ @@ -58057,6 +245053,34 @@ }, { "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": [ @@ -58067,6 +245091,35 @@ }, { "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": [ @@ -58077,6 +245130,36 @@ }, { "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": [ @@ -58087,6 +245170,40 @@ }, { "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": [ @@ -58097,6 +245214,34 @@ }, { "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": [ @@ -58107,6 +245252,34 @@ }, { "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": [ @@ -58117,6 +245290,35 @@ }, { "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": [ @@ -58127,6 +245329,35 @@ }, { "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": [ @@ -58137,6 +245368,35 @@ }, { "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": [ @@ -58147,6 +245407,34 @@ }, { "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": [ @@ -58157,6 +245445,34 @@ }, { "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": [ @@ -58167,6 +245483,34 @@ }, { "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": [ @@ -58177,6 +245521,34 @@ }, { "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": [ @@ -58187,6 +245559,35 @@ }, { "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": [ @@ -58197,6 +245598,34 @@ }, { "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": [ @@ -58207,6 +245636,34 @@ }, { "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": [ @@ -58217,6 +245674,35 @@ }, { "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": [ @@ -58227,6 +245713,36 @@ }, { "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": [ @@ -58237,6 +245753,34 @@ }, { "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": [ @@ -58247,6 +245791,34 @@ }, { "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": [ @@ -58257,6 +245829,34 @@ }, { "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": [ @@ -58267,6 +245867,36 @@ }, { "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": [ @@ -58277,6 +245907,34 @@ }, { "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": [ @@ -58287,6 +245945,36 @@ }, { "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": [ @@ -58297,6 +245985,34 @@ }, { "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": [ @@ -58307,6 +246023,34 @@ }, { "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": [ @@ -58317,6 +246061,35 @@ }, { "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": [ @@ -58327,6 +246100,35 @@ }, { "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": [ @@ -58337,6 +246139,34 @@ }, { "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": [ @@ -58347,6 +246177,35 @@ }, { "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": [ @@ -58357,6 +246216,35 @@ }, { "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": [ @@ -58367,6 +246255,34 @@ }, { "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": [ @@ -58377,6 +246293,35 @@ }, { "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": [ @@ -58387,6 +246332,40 @@ }, { "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": [ @@ -58397,6 +246376,34 @@ }, { "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": [ @@ -58407,6 +246414,36 @@ }, { "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": [ @@ -58417,6 +246454,39 @@ }, { "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": [ @@ -58427,6 +246497,40 @@ }, { "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": [ @@ -58437,6 +246541,40 @@ }, { "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": [ @@ -58447,6 +246585,40 @@ }, { "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": [ @@ -58457,6 +246629,34 @@ }, { "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": [ @@ -58467,6 +246667,34 @@ }, { "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": [ @@ -58477,6 +246705,35 @@ }, { "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": [ @@ -58487,6 +246744,34 @@ }, { "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": [ @@ -58497,6 +246782,35 @@ }, { "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": [ @@ -58507,6 +246821,35 @@ }, { "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": [ @@ -58517,6 +246860,39 @@ }, { "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": [ @@ -58527,6 +246903,35 @@ }, { "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": [ @@ -58537,6 +246942,34 @@ }, { "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": [ @@ -58547,6 +246980,35 @@ }, { "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": [ @@ -58557,6 +247019,34 @@ }, { "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": [ @@ -58567,6 +247057,34 @@ }, { "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": [ @@ -58577,6 +247095,35 @@ }, { "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": [ @@ -58587,6 +247134,35 @@ }, { "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": [ @@ -58597,6 +247173,35 @@ }, { "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": [ @@ -58607,6 +247212,34 @@ }, { "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": [ @@ -58617,6 +247250,35 @@ }, { "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": [ @@ -58627,6 +247289,34 @@ }, { "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": [ @@ -58637,6 +247327,35 @@ }, { "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": [ @@ -58647,6 +247366,35 @@ }, { "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": [ @@ -58657,6 +247405,35 @@ }, { "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": [ @@ -58667,6 +247444,35 @@ }, { "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": [ @@ -58677,6 +247483,35 @@ }, { "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": [ @@ -58687,6 +247522,35 @@ }, { "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": [ @@ -58697,6 +247561,34 @@ }, { "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": [ @@ -58707,6 +247599,35 @@ }, { "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": [ @@ -58717,6 +247638,41 @@ }, { "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": [ @@ -58727,6 +247683,40 @@ }, { "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": [ @@ -58737,6 +247727,35 @@ }, { "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": [ @@ -58747,6 +247766,35 @@ }, { "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": [ @@ -58757,6 +247805,34 @@ }, { "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": [ @@ -58767,6 +247843,40 @@ }, { "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": [ @@ -58777,6 +247887,34 @@ }, { "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": [ @@ -58787,6 +247925,35 @@ }, { "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": [ @@ -58797,6 +247964,34 @@ }, { "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": [ @@ -58807,6 +248002,35 @@ }, { "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": [ @@ -58817,6 +248041,35 @@ }, { "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": [ @@ -58827,6 +248080,34 @@ }, { "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": [ @@ -58837,6 +248118,35 @@ }, { "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": [ @@ -58847,6 +248157,35 @@ }, { "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": [ @@ -58857,6 +248196,35 @@ }, { "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": [ @@ -58867,6 +248235,35 @@ }, { "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": [ @@ -58877,6 +248274,34 @@ }, { "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": [ @@ -58887,6 +248312,35 @@ }, { "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": [ @@ -58897,6 +248351,35 @@ }, { "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": [ @@ -58907,6 +248390,35 @@ }, { "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": [ @@ -58917,6 +248429,34 @@ }, { "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": [ @@ -58927,6 +248467,35 @@ }, { "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": [ @@ -58937,6 +248506,35 @@ }, { "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": [ @@ -58947,6 +248545,35 @@ }, { "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": [ @@ -58957,6 +248584,35 @@ }, { "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": [ @@ -58967,6 +248623,34 @@ }, { "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": [ @@ -58977,6 +248661,35 @@ }, { "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": [ @@ -58987,6 +248700,634 @@ }, { "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": [ @@ -58997,6 +249338,35 @@ }, { "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": [ @@ -59007,6 +249377,35 @@ }, { "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": [ @@ -59017,6 +249416,62 @@ }, { "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": [ @@ -59027,6 +249482,51 @@ }, { "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": [ @@ -59037,6 +249537,35 @@ }, { "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": [ @@ -59047,6 +249576,35 @@ }, { "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": [ @@ -59057,6 +249615,73 @@ }, { "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": [ @@ -59067,6 +249692,51 @@ }, { "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": [ @@ -59077,6 +249747,34 @@ }, { "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": [ @@ -59087,6 +249785,36 @@ }, { "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": [ @@ -59097,6 +249825,34 @@ }, { "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": [ @@ -59107,6 +249863,34 @@ }, { "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": [ @@ -59117,6 +249901,35 @@ }, { "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": [ @@ -59127,6 +249940,34 @@ }, { "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": [ @@ -59137,6 +249978,40 @@ }, { "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": [ @@ -59147,6 +250022,35 @@ }, { "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": [ @@ -59157,6 +250061,35 @@ }, { "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": [ @@ -59167,6 +250100,35 @@ }, { "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": [ @@ -59177,6 +250139,36 @@ }, { "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": [ @@ -59187,6 +250179,34 @@ }, { "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": [ @@ -59197,6 +250217,34 @@ }, { "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": [ @@ -59207,6 +250255,34 @@ }, { "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": [ @@ -59217,6 +250293,34 @@ }, { "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": [ @@ -59227,6 +250331,34 @@ }, { "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": [ @@ -59237,6 +250369,34 @@ }, { "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": [ @@ -59247,6 +250407,35 @@ }, { "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": [ @@ -59257,6 +250446,35 @@ }, { "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": [ @@ -59267,6 +250485,34 @@ }, { "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": [ @@ -59277,6 +250523,35 @@ }, { "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": [ @@ -59287,6 +250562,40 @@ }, { "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": [ @@ -59297,6 +250606,36 @@ }, { "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": [ @@ -59307,6 +250646,35 @@ }, { "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": [ @@ -59317,6 +250685,34 @@ }, { "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": [ @@ -59327,6 +250723,34 @@ }, { "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": [ @@ -59337,6 +250761,36 @@ }, { "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": [ @@ -59347,6 +250801,34 @@ }, { "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": [ @@ -59357,6 +250839,40 @@ }, { "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": [ @@ -59367,6 +250883,36 @@ }, { "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": [ @@ -59377,6 +250923,34 @@ }, { "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": [ @@ -59387,6 +250961,36 @@ }, { "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": [ @@ -59397,6 +251001,34 @@ }, { "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": [ @@ -59407,6 +251039,35 @@ }, { "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": [ @@ -59417,6 +251078,40 @@ }, { "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": [ @@ -59427,6 +251122,36 @@ }, { "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": [ @@ -59437,6 +251162,36 @@ }, { "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": [ @@ -59447,6 +251202,36 @@ }, { "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": [ @@ -59457,6 +251242,35 @@ }, { "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": [ @@ -59467,6 +251281,40 @@ }, { "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": [ @@ -59477,6 +251325,35 @@ }, { "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": [ @@ -59487,6 +251364,40 @@ }, { "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": [ @@ -59497,6 +251408,35 @@ }, { "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": [ @@ -59507,6 +251447,35 @@ }, { "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": [ @@ -59517,6 +251486,35 @@ }, { "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": [ @@ -59527,6 +251525,35 @@ }, { "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": [ @@ -59537,6 +251564,35 @@ }, { "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": [ @@ -59547,6 +251603,35 @@ }, { "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": [ @@ -59557,6 +251642,35 @@ }, { "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": [ @@ -59567,6 +251681,35 @@ }, { "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": [ @@ -59577,6 +251720,35 @@ }, { "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": [ @@ -59587,6 +251759,35 @@ }, { "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": [ @@ -59597,6 +251798,35 @@ }, { "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": [ @@ -59607,6 +251837,35 @@ }, { "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": [ @@ -59617,6 +251876,35 @@ }, { "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": [ @@ -59627,6 +251915,35 @@ }, { "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": [ @@ -59637,6 +251954,35 @@ }, { "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": [ @@ -59647,6 +251993,34 @@ }, { "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": [ @@ -59657,6 +252031,45 @@ }, { "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": [ @@ -59667,6 +252080,40 @@ }, { "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": [ @@ -59677,6 +252124,35 @@ }, { "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": [ @@ -59687,6 +252163,35 @@ }, { "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": [ @@ -59697,6 +252202,36 @@ }, { "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": [ @@ -59707,6 +252242,51 @@ }, { "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": [ @@ -59717,6 +252297,40 @@ }, { "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": [ @@ -59727,6 +252341,84 @@ }, { "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": [ @@ -59737,6 +252429,34 @@ }, { "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": [ @@ -59747,6 +252467,35 @@ }, { "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": [ @@ -59757,6 +252506,35 @@ }, { "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": [ @@ -59767,6 +252545,35 @@ }, { "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": [ @@ -59777,6 +252584,35 @@ }, { "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": [ @@ -59787,6 +252623,35 @@ }, { "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": [ @@ -59797,6 +252662,35 @@ }, { "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": [ @@ -59807,6 +252701,35 @@ }, { "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": [ @@ -59817,6 +252740,35 @@ }, { "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": [ @@ -59827,6 +252779,35 @@ }, { "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": [ @@ -59837,6 +252818,35 @@ }, { "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": [ @@ -59847,6 +252857,35 @@ }, { "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": [ @@ -59857,6 +252896,35 @@ }, { "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": [ @@ -59867,6 +252935,35 @@ }, { "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": [ @@ -59877,6 +252974,40 @@ }, { "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": [ @@ -59887,6 +253018,40 @@ }, { "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": [ @@ -59897,6 +253062,40 @@ }, { "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": [ @@ -59907,6 +253106,40 @@ }, { "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": [ @@ -59917,6 +253150,40 @@ }, { "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": [ @@ -59927,6 +253194,40 @@ }, { "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": [ @@ -59937,6 +253238,40 @@ }, { "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": [ @@ -59947,6 +253282,40 @@ }, { "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": [ @@ -59957,6 +253326,40 @@ }, { "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": [ @@ -59967,6 +253370,40 @@ }, { "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": [ @@ -59977,6 +253414,40 @@ }, { "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": [ @@ -59987,6 +253458,40 @@ }, { "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": [ @@ -59997,6 +253502,40 @@ }, { "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": [ @@ -60007,6 +253546,40 @@ }, { "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": [ @@ -60017,6 +253590,40 @@ }, { "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": [ @@ -60027,6 +253634,40 @@ }, { "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": [ @@ -60037,6 +253678,40 @@ }, { "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": [ @@ -60047,6 +253722,35 @@ }, { "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": [ @@ -60057,6 +253761,35 @@ }, { "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": [ @@ -60067,6 +253800,34 @@ }, { "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": [ @@ -60077,6 +253838,35 @@ }, { "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": [ @@ -60087,6 +253877,35 @@ }, { "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": [ @@ -60097,6 +253916,35 @@ }, { "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": [ @@ -60107,6 +253955,35 @@ }, { "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": [ @@ -60117,6 +253994,35 @@ }, { "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": [ @@ -60127,6 +254033,35 @@ }, { "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": [ @@ -60137,6 +254072,35 @@ }, { "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": [ @@ -60147,6 +254111,205 @@ }, { "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": [ @@ -60157,6 +254320,35 @@ }, { "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": [ @@ -60167,6 +254359,34 @@ }, { "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": [ @@ -60177,6 +254397,34 @@ }, { "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": [ @@ -60187,6 +254435,40 @@ }, { "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": [ @@ -60197,6 +254479,35 @@ }, { "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": [ @@ -60207,6 +254518,35 @@ }, { "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": [ @@ -60217,6 +254557,35 @@ }, { "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": [ @@ -60227,6 +254596,35 @@ }, { "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": [ @@ -60237,6 +254635,35 @@ }, { "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": [ @@ -60247,6 +254674,34 @@ }, { "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": [ @@ -60257,6 +254712,35 @@ }, { "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": [ @@ -60267,6 +254751,40 @@ }, { "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": [ @@ -60277,6 +254795,40 @@ }, { "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": [ @@ -60287,6 +254839,40 @@ }, { "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": [ @@ -60297,6 +254883,35 @@ }, { "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": [ @@ -60307,6 +254922,35 @@ }, { "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": [ @@ -60317,6 +254961,34 @@ }, { "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": [ @@ -60327,6 +254999,34 @@ }, { "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": [ @@ -60337,6 +255037,34 @@ }, { "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": [ @@ -60347,6 +255075,35 @@ }, { "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": [ @@ -60357,6 +255114,35 @@ }, { "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": [ @@ -60367,6 +255153,35 @@ }, { "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": [ @@ -60377,6 +255192,35 @@ }, { "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": [ @@ -60387,6 +255231,35 @@ }, { "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": [ @@ -60397,6 +255270,36 @@ }, { "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": [ @@ -60407,6 +255310,53 @@ }, { "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": [ @@ -60417,6 +255367,35 @@ }, { "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": [ @@ -60427,6 +255406,41 @@ }, { "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": [ @@ -60437,6 +255451,35 @@ }, { "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": [ @@ -60447,6 +255490,41 @@ }, { "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": [ @@ -60457,6 +255535,35 @@ }, { "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": [ @@ -60467,6 +255574,40 @@ }, { "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": [ @@ -60477,6 +255618,51 @@ }, { "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": [ @@ -60487,6 +255673,35 @@ }, { "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": [ @@ -60497,6 +255712,34 @@ }, { "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": [ @@ -60507,6 +255750,34 @@ }, { "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": [ @@ -60517,6 +255788,35 @@ }, { "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": [ @@ -60527,6 +255827,35 @@ }, { "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": [ @@ -60537,6 +255866,35 @@ }, { "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": [ @@ -60547,6 +255905,34 @@ }, { "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": [ @@ -60557,6 +255943,35 @@ }, { "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": [ @@ -60567,6 +255982,35 @@ }, { "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": [ @@ -60577,6 +256021,36 @@ }, { "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": [ @@ -60587,6 +256061,36 @@ }, { "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": [ @@ -60597,6 +256101,35 @@ }, { "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": [ @@ -60607,6 +256140,34 @@ }, { "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": [ @@ -60617,6 +256178,34 @@ }, { "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": [ @@ -60627,6 +256216,34 @@ }, { "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": [ @@ -60637,6 +256254,35 @@ }, { "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": [ @@ -60647,6 +256293,36 @@ }, { "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": [ @@ -60657,6 +256333,35 @@ }, { "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": [ @@ -60667,6 +256372,35 @@ }, { "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": [ @@ -60677,6 +256411,34 @@ }, { "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": [ @@ -60687,6 +256449,34 @@ }, { "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": [ @@ -60697,6 +256487,35 @@ }, { "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": [ @@ -60707,6 +256526,34 @@ }, { "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": [ @@ -60717,6 +256564,35 @@ }, { "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": [ @@ -60727,6 +256603,35 @@ }, { "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": [ @@ -60737,6 +256642,35 @@ }, { "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": [ @@ -60747,6 +256681,34 @@ }, { "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": [ @@ -60757,6 +256719,34 @@ }, { "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": [ @@ -60767,6 +256757,34 @@ }, { "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": [ @@ -60777,6 +256795,34 @@ }, { "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": [ @@ -60787,6 +256833,35 @@ }, { "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": [ @@ -60797,6 +256872,34 @@ }, { "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": [ @@ -60807,6 +256910,51 @@ }, { "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": [ @@ -60817,6 +256965,51 @@ }, { "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": [ @@ -60827,6 +257020,51 @@ }, { "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": [ @@ -60837,6 +257075,84 @@ }, { "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": [ @@ -60847,6 +257163,95 @@ }, { "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": [ @@ -60857,6 +257262,106 @@ }, { "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": [ @@ -60867,6 +257372,51 @@ }, { "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": [ @@ -60877,6 +257427,36 @@ }, { "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": [ @@ -60887,6 +257467,35 @@ }, { "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": [ @@ -60897,6 +257506,35 @@ }, { "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": [ @@ -60907,6 +257545,34 @@ }, { "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": [ @@ -60917,6 +257583,36 @@ }, { "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": [ @@ -60927,6 +257623,34 @@ }, { "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": [ @@ -60937,6 +257661,35 @@ }, { "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": [ @@ -60947,6 +257700,35 @@ }, { "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": [ @@ -60957,6 +257739,35 @@ }, { "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": [ @@ -60967,6 +257778,35 @@ }, { "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": [ @@ -60977,6 +257817,35 @@ }, { "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": [ @@ -60987,6 +257856,35 @@ }, { "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": [ @@ -60997,6 +257895,35 @@ }, { "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": [ @@ -61007,6 +257934,35 @@ }, { "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": [ @@ -61017,6 +257973,34 @@ }, { "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": [ @@ -61027,6 +258011,35 @@ }, { "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": [ @@ -61037,6 +258050,35 @@ }, { "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": [ @@ -61047,6 +258089,40 @@ }, { "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": [ @@ -61057,6 +258133,39 @@ }, { "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": [ @@ -61067,6 +258176,35 @@ }, { "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": [ @@ -61077,6 +258215,34 @@ }, { "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": [ @@ -61087,6 +258253,34 @@ }, { "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": [ @@ -61097,6 +258291,35 @@ }, { "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": [ @@ -61107,6 +258330,35 @@ }, { "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": [ @@ -61117,6 +258369,35 @@ }, { "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": [ @@ -61127,6 +258408,34 @@ }, { "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": [ @@ -61137,6 +258446,35 @@ }, { "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": [ @@ -61147,6 +258485,36 @@ }, { "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": [ @@ -61157,6 +258525,35 @@ }, { "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": [ @@ -61167,6 +258564,40 @@ }, { "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": [ @@ -61177,6 +258608,35 @@ }, { "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": [ @@ -61187,6 +258647,40 @@ }, { "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": [ @@ -61197,6 +258691,40 @@ }, { "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": [ @@ -61207,6 +258735,40 @@ }, { "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": [ @@ -61217,6 +258779,40 @@ }, { "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": [ @@ -61227,6 +258823,40 @@ }, { "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": [ @@ -61237,6 +258867,40 @@ }, { "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": [ @@ -61247,6 +258911,40 @@ }, { "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": [ @@ -61257,6 +258955,40 @@ }, { "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": [ @@ -61267,6 +258999,56 @@ }, { "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": [ @@ -61277,6 +259059,35 @@ }, { "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": [ @@ -61287,6 +259098,35 @@ }, { "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": [ @@ -61297,6 +259137,35 @@ }, { "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": [ @@ -61307,6 +259176,35 @@ }, { "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": [ @@ -61317,6 +259215,275 @@ }, { "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": [ @@ -61327,6 +259494,34 @@ }, { "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": [ @@ -61337,6 +259532,34 @@ }, { "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": [ @@ -61347,6 +259570,88 @@ }, { "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": [ @@ -61357,6 +259662,35 @@ }, { "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": [ @@ -61367,6 +259701,34 @@ }, { "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": [ @@ -61377,6 +259739,35 @@ }, { "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": [ @@ -61387,6 +259778,34 @@ }, { "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": [ @@ -61397,6 +259816,35 @@ }, { "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": [ @@ -61407,6 +259855,40 @@ }, { "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": [ @@ -61417,6 +259899,35 @@ }, { "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": [ @@ -61427,6 +259938,34 @@ }, { "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": [ @@ -61437,6 +259976,35 @@ }, { "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": [ @@ -61447,6 +260015,34 @@ }, { "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": [ @@ -61457,6 +260053,36 @@ }, { "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": [ @@ -61467,6 +260093,40 @@ }, { "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": [ @@ -61477,6 +260137,40 @@ }, { "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": [ @@ -61487,6 +260181,39 @@ }, { "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": [ @@ -61497,6 +260224,34 @@ }, { "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": [ @@ -61507,6 +260262,35 @@ }, { "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": [ @@ -61517,6 +260301,35 @@ }, { "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": [ @@ -61527,6 +260340,40 @@ }, { "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": [ @@ -61537,6 +260384,34 @@ }, { "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": [ @@ -61547,6 +260422,304 @@ }, { "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": [ @@ -61557,6 +260730,34 @@ }, { "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": [ @@ -61567,6 +260768,35 @@ }, { "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": [ @@ -61577,6 +260807,34 @@ }, { "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": [ @@ -61587,6 +260845,35 @@ }, { "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": [ @@ -61597,6 +260884,35 @@ }, { "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": [ @@ -61607,6 +260923,36 @@ }, { "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": [ @@ -61617,6 +260963,34 @@ }, { "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": [ @@ -61627,6 +261001,37 @@ }, { "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": [ @@ -61637,6 +261042,35 @@ }, { "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": [ @@ -61647,6 +261081,35 @@ }, { "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": [ @@ -61657,6 +261120,34 @@ }, { "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": [ @@ -61667,6 +261158,34 @@ }, { "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": [ @@ -61677,6 +261196,41 @@ }, { "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": [ @@ -61687,6 +261241,41 @@ }, { "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": [ @@ -61697,6 +261286,35 @@ }, { "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": [ @@ -61707,6 +261325,35 @@ }, { "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": [ @@ -61717,6 +261364,154 @@ }, { "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": [ @@ -61727,6 +261522,65 @@ }, { "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": [ @@ -61737,6 +261591,36 @@ }, { "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": [ @@ -61747,6 +261631,35 @@ }, { "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": [ @@ -61757,6 +261670,35 @@ }, { "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": [ @@ -61767,6 +261709,36 @@ }, { "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": [ @@ -61777,6 +261749,34 @@ }, { "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": [ @@ -61787,6 +261787,40 @@ }, { "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": [ @@ -61797,6 +261831,34 @@ }, { "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": [ @@ -61807,6 +261869,34 @@ }, { "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": [ @@ -61817,6 +261907,40 @@ }, { "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": [ @@ -61827,6 +261951,35 @@ }, { "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": [ @@ -61837,6 +261990,34 @@ }, { "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": [ @@ -61847,6 +262028,35 @@ }, { "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": [ @@ -61857,6 +262067,35 @@ }, { "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": [ @@ -61867,6 +262106,40 @@ }, { "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": [ @@ -61877,6 +262150,35 @@ }, { "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": [ @@ -61887,6 +262189,35 @@ }, { "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": [ @@ -61897,6 +262228,40 @@ }, { "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": [ @@ -61907,6 +262272,35 @@ }, { "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": [ @@ -61917,6 +262311,34 @@ }, { "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": [ @@ -61927,6 +262349,35 @@ }, { "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": [ @@ -61937,6 +262388,40 @@ }, { "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": [ @@ -61947,6 +262432,40 @@ }, { "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": [ @@ -61957,6 +262476,35 @@ }, { "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": [ @@ -61967,6 +262515,40 @@ }, { "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": [ @@ -61977,6 +262559,36 @@ }, { "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": [ @@ -61987,6 +262599,34 @@ }, { "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": [ @@ -61997,6 +262637,37 @@ }, { "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": [ @@ -62007,6 +262678,35 @@ }, { "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": [ @@ -62017,6 +262717,40 @@ }, { "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": [ @@ -62027,6 +262761,40 @@ }, { "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": [ @@ -62037,6 +262805,34 @@ }, { "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": [ @@ -62047,6 +262843,35 @@ }, { "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": [ @@ -62057,6 +262882,35 @@ }, { "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": [ @@ -62067,6 +262921,35 @@ }, { "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": [ @@ -62077,6 +262960,40 @@ }, { "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": [ @@ -62087,6 +263004,40 @@ }, { "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": [ @@ -62097,6 +263048,35 @@ }, { "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": [ @@ -62107,6 +263087,40 @@ }, { "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": [ @@ -62117,6 +263131,40 @@ }, { "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": [ @@ -62127,6 +263175,40 @@ }, { "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": [ @@ -62137,6 +263219,36 @@ }, { "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": [ @@ -62147,6 +263259,40 @@ }, { "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": [ @@ -62157,6 +263303,36 @@ }, { "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": [ @@ -62167,6 +263343,35 @@ }, { "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": [ @@ -62177,6 +263382,35 @@ }, { "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": [ @@ -62187,6 +263421,40 @@ }, { "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": [ @@ -62197,6 +263465,35 @@ }, { "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": [ @@ -62207,6 +263504,40 @@ }, { "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": [ @@ -62217,6 +263548,40 @@ }, { "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": [ @@ -62227,6 +263592,35 @@ }, { "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": [ @@ -62237,6 +263631,35 @@ }, { "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": [ @@ -62247,6 +263670,34 @@ }, { "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": [ @@ -62257,6 +263708,34 @@ }, { "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": [ @@ -62267,6 +263746,35 @@ }, { "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": [ @@ -62277,6 +263785,40 @@ }, { "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": [ @@ -62287,6 +263829,34 @@ }, { "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": [ @@ -62297,6 +263867,35 @@ }, { "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": [ @@ -62307,6 +263906,34 @@ }, { "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": [ @@ -62317,6 +263944,35 @@ }, { "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": [ @@ -62327,6 +263983,40 @@ }, { "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": [ @@ -62337,6 +264027,35 @@ }, { "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": [ @@ -62347,6 +264066,35 @@ }, { "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": [ @@ -62357,6 +264105,35 @@ }, { "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": [ @@ -62367,6 +264144,35 @@ }, { "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": [ @@ -62377,6 +264183,53 @@ }, { "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": [ @@ -62387,6 +264240,35 @@ }, { "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": [ @@ -62397,6 +264279,34 @@ }, { "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": [ @@ -62407,6 +264317,40 @@ }, { "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": [ @@ -62417,6 +264361,35 @@ }, { "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": [ @@ -62427,6 +264400,36 @@ }, { "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": [ @@ -62437,6 +264440,35 @@ }, { "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": [ @@ -62447,6 +264479,35 @@ }, { "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": [ @@ -62457,6 +264518,55 @@ }, { "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": [ @@ -62467,6 +264577,40 @@ }, { "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": [ @@ -62477,6 +264621,36 @@ }, { "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": [ @@ -62485,9 +264659,42 @@ ] } }, - null, { "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": [ @@ -62498,6 +264705,35 @@ }, { "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": [ @@ -62508,6 +264744,34 @@ }, { "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": [ @@ -62518,6 +264782,36 @@ }, { "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": [ @@ -62528,6 +264822,35 @@ }, { "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": [ @@ -62538,6 +264861,35 @@ }, { "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": [ @@ -62548,6 +264900,34 @@ }, { "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": [ @@ -62558,6 +264938,34 @@ }, { "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": [ @@ -62568,6 +264976,40 @@ }, { "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": [ @@ -62578,6 +265020,40 @@ }, { "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": [ @@ -62588,6 +265064,40 @@ }, { "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": [ @@ -62598,6 +265108,40 @@ }, { "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": [ @@ -62608,6 +265152,34 @@ }, { "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": [ @@ -62618,6 +265190,40 @@ }, { "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": [ @@ -62628,6 +265234,39 @@ }, { "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": [ @@ -62638,6 +265277,40 @@ }, { "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": [ @@ -62648,6 +265321,35 @@ }, { "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": [ @@ -62658,6 +265360,36 @@ }, { "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": [ @@ -62668,6 +265400,35 @@ }, { "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": [ @@ -62678,6 +265439,40 @@ }, { "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": [ @@ -62688,6 +265483,40 @@ }, { "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": [ @@ -62698,6 +265527,35 @@ }, { "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": [ @@ -62708,6 +265566,40 @@ }, { "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": [ @@ -62718,6 +265610,34 @@ }, { "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": [ @@ -62728,6 +265648,40 @@ }, { "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": [ @@ -62738,6 +265692,35 @@ }, { "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": [ @@ -62748,6 +265731,34 @@ }, { "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": [ @@ -62758,6 +265769,40 @@ }, { "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": [ @@ -62768,6 +265813,35 @@ }, { "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": [ @@ -62778,6 +265852,36 @@ }, { "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": [ @@ -62788,6 +265892,40 @@ }, { "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": [ @@ -62798,6 +265936,35 @@ }, { "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": [ @@ -62808,6 +265975,40 @@ }, { "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": [ @@ -62818,6 +266019,40 @@ }, { "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": [ @@ -62828,6 +266063,35 @@ }, { "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": [ @@ -62838,6 +266102,40 @@ }, { "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": [ @@ -62848,6 +266146,40 @@ }, { "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": [ @@ -62858,6 +266190,34 @@ }, { "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": [ @@ -62868,6 +266228,35 @@ }, { "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": [ @@ -62878,6 +266267,35 @@ }, { "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": [ @@ -62888,6 +266306,35 @@ }, { "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": [ @@ -62898,6 +266345,36 @@ }, { "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": [ @@ -62908,6 +266385,35 @@ }, { "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": [ @@ -62918,6 +266424,35 @@ }, { "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": [ @@ -62928,6 +266463,40 @@ }, { "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": [ @@ -62938,6 +266507,40 @@ }, { "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": [ @@ -62948,6 +266551,34 @@ }, { "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": [ @@ -62958,6 +266589,35 @@ }, { "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": [ @@ -62968,6 +266628,34 @@ }, { "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": [ @@ -62978,6 +266666,34 @@ }, { "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": [ @@ -62988,6 +266704,40 @@ }, { "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": [ @@ -62998,6 +266748,36 @@ }, { "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": [ @@ -63008,6 +266788,35 @@ }, { "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": [ @@ -63018,6 +266827,36 @@ }, { "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": [ @@ -63028,6 +266867,35 @@ }, { "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": [ @@ -63038,6 +266906,35 @@ }, { "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": [ @@ -63048,6 +266945,35 @@ }, { "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": [ @@ -63058,6 +266984,35 @@ }, { "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": [ @@ -63068,6 +267023,40 @@ }, { "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": [ @@ -63078,6 +267067,35 @@ }, { "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": [ @@ -63088,6 +267106,40 @@ }, { "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": [ @@ -63098,6 +267150,34 @@ }, { "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": [ @@ -63108,6 +267188,35 @@ }, { "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": [ @@ -63118,6 +267227,39 @@ }, { "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": [ @@ -63128,6 +267270,40 @@ }, { "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": [ @@ -63138,6 +267314,35 @@ }, { "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": [ @@ -63148,6 +267353,40 @@ }, { "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": [ @@ -63158,6 +267397,35 @@ }, { "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": [ @@ -63168,6 +267436,35 @@ }, { "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": [ @@ -63178,6 +267475,35 @@ }, { "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": [ @@ -63188,6 +267514,35 @@ }, { "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": [ @@ -63198,6 +267553,53 @@ }, { "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": [ @@ -63208,6 +267610,35 @@ }, { "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": [ @@ -63218,6 +267649,35 @@ }, { "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": [ @@ -63228,6 +267688,36 @@ }, { "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": [ @@ -63238,6 +267728,36 @@ }, { "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": [ @@ -63248,6 +267768,35 @@ }, { "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": [ @@ -63258,6 +267807,35 @@ }, { "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": [ @@ -63268,6 +267846,40 @@ }, { "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": [ @@ -63278,6 +267890,40 @@ }, { "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": [ @@ -63288,6 +267934,40 @@ }, { "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": [ @@ -63298,6 +267978,36 @@ }, { "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": [ @@ -63308,6 +268018,41 @@ }, { "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": [ @@ -63318,6 +268063,41 @@ }, { "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": [ @@ -63328,6 +268108,35 @@ }, { "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": [ @@ -63338,6 +268147,34 @@ }, { "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": [ @@ -63348,6 +268185,35 @@ }, { "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": [ @@ -63358,6 +268224,40 @@ }, { "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": [ @@ -63368,6 +268268,36 @@ }, { "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": [ @@ -63378,6 +268308,40 @@ }, { "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": [ @@ -63388,6 +268352,56 @@ }, { "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": [ @@ -63398,6 +268412,36 @@ }, { "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": [ @@ -63408,6 +268452,35 @@ }, { "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": [ @@ -63418,6 +268491,35 @@ }, { "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": [ @@ -63428,6 +268530,34 @@ }, { "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": [ @@ -63438,6 +268568,35 @@ }, { "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": [ @@ -63448,6 +268607,35 @@ }, { "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": [ @@ -63458,6 +268646,40 @@ }, { "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": [ @@ -63468,6 +268690,40 @@ }, { "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": [ @@ -63478,6 +268734,35 @@ }, { "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": [ @@ -63488,6 +268773,35 @@ }, { "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": [ @@ -63498,6 +268812,40 @@ }, { "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": [ @@ -63508,6 +268856,40 @@ }, { "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": [ @@ -63518,6 +268900,40 @@ }, { "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": [ @@ -63528,6 +268944,40 @@ }, { "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": [ @@ -63538,6 +268988,40 @@ }, { "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": [ @@ -63548,6 +269032,35 @@ }, { "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": [ @@ -63558,6 +269071,40 @@ }, { "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": [ @@ -63568,6 +269115,35 @@ }, { "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": [ @@ -63578,6 +269154,35 @@ }, { "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": [ @@ -63588,6 +269193,35 @@ }, { "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": [ @@ -63598,6 +269232,35 @@ }, { "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": [ @@ -63608,6 +269271,40 @@ }, { "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": [ @@ -63618,6 +269315,35 @@ }, { "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": [ @@ -63628,6 +269354,34 @@ }, { "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": [ @@ -63638,6 +269392,34 @@ }, { "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": [ @@ -63648,6 +269430,34 @@ }, { "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": [ @@ -63658,6 +269468,35 @@ }, { "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": [ @@ -63668,6 +269507,40 @@ }, { "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": [ @@ -63678,6 +269551,34 @@ }, { "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": [ @@ -63688,6 +269589,40 @@ }, { "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": [ @@ -63698,6 +269633,34 @@ }, { "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": [ @@ -63708,6 +269671,35 @@ }, { "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": [ @@ -63718,6 +269710,35 @@ }, { "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": [ @@ -63728,6 +269749,35 @@ }, { "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": [ @@ -63738,6 +269788,40 @@ }, { "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": [ @@ -63748,6 +269832,40 @@ }, { "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": [ @@ -63758,6 +269876,40 @@ }, { "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": [ @@ -63768,6 +269920,40 @@ }, { "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": [ @@ -63778,6 +269964,40 @@ }, { "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": [ @@ -63788,6 +270008,35 @@ }, { "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": [ @@ -63798,6 +270047,35 @@ }, { "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": [ @@ -63808,6 +270086,34 @@ }, { "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": [ @@ -63818,6 +270124,35 @@ }, { "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": [ @@ -63828,6 +270163,36 @@ }, { "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": [ @@ -63838,6 +270203,35 @@ }, { "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": [ @@ -63848,6 +270242,36 @@ }, { "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": [ @@ -63858,6 +270282,35 @@ }, { "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": [ @@ -63868,6 +270321,39 @@ }, { "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": [ @@ -63878,6 +270364,36 @@ }, { "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": [ @@ -63888,6 +270404,36 @@ }, { "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": [ @@ -63898,6 +270444,35 @@ }, { "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": [ @@ -63908,6 +270483,36 @@ }, { "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": [ @@ -63918,6 +270523,40 @@ }, { "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": [ @@ -63928,6 +270567,40 @@ }, { "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": [ @@ -63938,6 +270611,36 @@ }, { "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": [ @@ -63948,6 +270651,35 @@ }, { "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": [ @@ -63958,6 +270690,34 @@ }, { "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": [ @@ -63968,6 +270728,40 @@ }, { "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": [ @@ -63978,6 +270772,56 @@ }, { "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": [ @@ -63988,6 +270832,39 @@ }, { "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": [ @@ -63998,6 +270875,40 @@ }, { "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": [ @@ -64008,6 +270919,34 @@ }, { "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": [ @@ -64018,6 +270957,40 @@ }, { "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": [ @@ -64028,6 +271001,35 @@ }, { "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": [ @@ -64038,6 +271040,35 @@ }, { "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": [ @@ -64048,6 +271079,35 @@ }, { "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": [ @@ -64058,6 +271118,35 @@ }, { "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": [ @@ -64068,6 +271157,39 @@ }, { "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": [ @@ -64078,6 +271200,35 @@ }, { "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": [ @@ -64088,6 +271239,40 @@ }, { "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": [ @@ -64098,6 +271283,40 @@ }, { "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": [ @@ -64108,6 +271327,35 @@ }, { "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": [ @@ -64118,6 +271366,40 @@ }, { "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": [ @@ -64128,6 +271410,40 @@ }, { "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": [ @@ -64138,6 +271454,40 @@ }, { "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": [ @@ -64148,6 +271498,35 @@ }, { "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": [ @@ -64158,6 +271537,40 @@ }, { "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": [ @@ -64168,6 +271581,40 @@ }, { "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": [ @@ -64178,6 +271625,40 @@ }, { "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": [ @@ -64188,6 +271669,35 @@ }, { "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": [ @@ -64198,6 +271708,35 @@ }, { "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": [ @@ -64208,6 +271747,34 @@ }, { "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": [ @@ -64218,6 +271785,40 @@ }, { "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": [ @@ -64228,6 +271829,35 @@ }, { "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": [ @@ -64238,6 +271868,40 @@ }, { "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": [ @@ -64248,6 +271912,40 @@ }, { "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": [ @@ -64258,6 +271956,40 @@ }, { "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": [ @@ -64268,6 +272000,39 @@ }, { "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": [ @@ -64278,6 +272043,34 @@ }, { "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": [ @@ -64288,6 +272081,34 @@ }, { "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": [ @@ -64298,6 +272119,35 @@ }, { "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": [ @@ -64308,6 +272158,40 @@ }, { "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": [ @@ -64318,6 +272202,35 @@ }, { "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": [ @@ -64328,6 +272241,172 @@ }, { "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": [ @@ -64338,6 +272417,216 @@ }, { "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": [ @@ -64348,6 +272637,40 @@ }, { "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": [ @@ -64358,6 +272681,34 @@ }, { "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": [ @@ -64368,6 +272719,35 @@ }, { "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": [ @@ -64378,6 +272758,35 @@ }, { "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": [ @@ -64388,6 +272797,35 @@ }, { "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": [ @@ -64398,6 +272836,35 @@ }, { "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": [ @@ -64408,6 +272875,35 @@ }, { "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": [ @@ -64418,6 +272914,35 @@ }, { "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": [ @@ -64428,6 +272953,40 @@ }, { "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": [ @@ -64438,6 +272997,40 @@ }, { "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": [ @@ -64448,6 +273041,40 @@ }, { "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": [ @@ -64458,6 +273085,40 @@ }, { "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": [ @@ -64468,6 +273129,35 @@ }, { "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": [ @@ -64478,6 +273168,40 @@ }, { "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": [ @@ -64488,6 +273212,35 @@ }, { "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": [ @@ -64498,6 +273251,40 @@ }, { "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": [ @@ -64508,6 +273295,36 @@ }, { "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": [ @@ -64518,6 +273335,40 @@ }, { "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": [ @@ -64528,6 +273379,34 @@ }, { "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": [ @@ -64538,6 +273417,34 @@ }, { "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": [ @@ -64548,6 +273455,35 @@ }, { "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": [ @@ -64558,6 +273494,35 @@ }, { "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": [ @@ -64568,6 +273533,40 @@ }, { "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": [ @@ -64578,6 +273577,40 @@ }, { "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": [ @@ -64588,6 +273621,40 @@ }, { "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": [ @@ -64598,6 +273665,35 @@ }, { "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": [ @@ -64608,6 +273704,36 @@ }, { "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": [ @@ -64618,6 +273744,35 @@ }, { "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": [ @@ -64628,6 +273783,35 @@ }, { "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": [ @@ -64638,6 +273822,35 @@ }, { "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": [ @@ -64648,6 +273861,35 @@ }, { "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": [ @@ -64658,6 +273900,35 @@ }, { "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": [ @@ -64668,6 +273939,34 @@ }, { "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": [ @@ -64678,6 +273977,34 @@ }, { "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": [ @@ -64688,6 +274015,34 @@ }, { "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": [ @@ -64698,6 +274053,35 @@ }, { "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": [ @@ -64708,6 +274092,35 @@ }, { "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": [ @@ -64718,6 +274131,36 @@ }, { "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": [ @@ -64728,6 +274171,36 @@ }, { "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": [ @@ -64738,6 +274211,35 @@ }, { "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": [ @@ -64748,6 +274250,35 @@ }, { "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": [ @@ -64758,6 +274289,35 @@ }, { "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": [ @@ -64768,6 +274328,35 @@ }, { "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": [ @@ -64778,6 +274367,34 @@ }, { "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": [ @@ -64788,6 +274405,34 @@ }, { "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": [ @@ -64798,6 +274443,34 @@ }, { "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": [ @@ -64808,6 +274481,35 @@ }, { "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": [ @@ -64818,6 +274520,35 @@ }, { "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": [ @@ -64828,6 +274559,40 @@ }, { "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": [ @@ -64838,6 +274603,36 @@ }, { "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": [ @@ -64848,6 +274643,35 @@ }, { "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": [ @@ -64858,6 +274682,34 @@ }, { "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": [ @@ -64868,6 +274720,35 @@ }, { "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": [ @@ -64878,6 +274759,35 @@ }, { "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": [ @@ -64888,6 +274798,35 @@ }, { "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": [ @@ -64898,6 +274837,35 @@ }, { "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": [ @@ -64908,6 +274876,35 @@ }, { "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": [ @@ -64918,6 +274915,35 @@ }, { "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": [ @@ -64928,6 +274954,35 @@ }, { "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": [ @@ -64938,6 +274993,34 @@ }, { "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": [ @@ -64948,6 +275031,35 @@ }, { "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": [ @@ -64958,6 +275070,35 @@ }, { "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": [ @@ -64968,6 +275109,35 @@ }, { "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": [ @@ -64978,6 +275148,35 @@ }, { "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": [ @@ -64988,6 +275187,35 @@ }, { "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": [ @@ -64998,6 +275226,36 @@ }, { "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": [ @@ -65008,6 +275266,34 @@ }, { "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": [ @@ -65018,6 +275304,36 @@ }, { "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": [ @@ -65028,6 +275344,35 @@ }, { "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": [ @@ -65038,6 +275383,35 @@ }, { "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": [ @@ -65048,6 +275422,36 @@ }, { "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": [ @@ -65058,6 +275462,36 @@ }, { "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": [ @@ -65068,6 +275502,40 @@ }, { "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": [ @@ -65078,6 +275546,95 @@ }, { "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": [ @@ -65088,6 +275645,35 @@ }, { "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": [ @@ -65098,6 +275684,34 @@ }, { "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": [ @@ -65108,6 +275722,34 @@ }, { "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": [ @@ -65118,6 +275760,35 @@ }, { "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": [ @@ -65128,6 +275799,35 @@ }, { "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": [ @@ -65138,6 +275838,744 @@ }, { "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": [ @@ -65148,6 +276586,34 @@ }, { "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": [ @@ -65158,6 +276624,34 @@ }, { "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": [ @@ -65168,6 +276662,34 @@ }, { "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": [ @@ -65178,6 +276700,34 @@ }, { "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": [ @@ -65188,6 +276738,34 @@ }, { "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": [ @@ -65198,6 +276776,40 @@ }, { "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": [ @@ -65208,6 +276820,41 @@ }, { "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": [ @@ -65218,6 +276865,40 @@ }, { "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": [ @@ -65228,6 +276909,40 @@ }, { "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": [ @@ -65238,6 +276953,35 @@ }, { "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": [ @@ -65248,6 +276992,36 @@ }, { "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": [ @@ -65258,6 +277032,35 @@ }, { "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": [ @@ -65268,6 +277071,35 @@ }, { "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": [ @@ -65278,6 +277110,35 @@ }, { "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": [ @@ -65288,6 +277149,35 @@ }, { "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": [ @@ -65298,6 +277188,34 @@ }, { "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": [ @@ -65308,6 +277226,35 @@ }, { "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": [ @@ -65318,6 +277265,35 @@ }, { "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": [ @@ -65328,6 +277304,34 @@ }, { "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": [ @@ -65338,6 +277342,35 @@ }, { "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": [ @@ -65348,6 +277381,35 @@ }, { "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": [ @@ -65358,6 +277420,36 @@ }, { "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": [ @@ -65368,6 +277460,35 @@ }, { "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": [ @@ -65378,6 +277499,35 @@ }, { "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": [ @@ -65388,6 +277538,35 @@ }, { "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": [ @@ -65398,6 +277577,36 @@ }, { "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": [ @@ -65408,6 +277617,40 @@ }, { "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": [ @@ -65418,6 +277661,34 @@ }, { "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": [ @@ -65428,6 +277699,34 @@ }, { "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": [ @@ -65438,6 +277737,34 @@ }, { "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": [ @@ -65448,6 +277775,36 @@ }, { "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": [ @@ -65458,6 +277815,34 @@ }, { "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": [ @@ -65468,6 +277853,35 @@ }, { "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": [ @@ -65478,6 +277892,35 @@ }, { "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": [ @@ -65488,6 +277931,35 @@ }, { "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": [ @@ -65498,6 +277970,35 @@ }, { "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": [ @@ -65508,6 +278009,34 @@ }, { "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": [ @@ -65518,6 +278047,40 @@ }, { "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": [ @@ -65528,6 +278091,35 @@ }, { "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": [ @@ -65538,6 +278130,40 @@ }, { "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": [ @@ -65548,6 +278174,34 @@ }, { "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": [ @@ -65558,6 +278212,40 @@ }, { "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": [ @@ -65568,6 +278256,35 @@ }, { "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": [ @@ -65578,6 +278295,35 @@ }, { "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": [ @@ -65588,6 +278334,40 @@ }, { "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": [ @@ -65598,6 +278378,40 @@ }, { "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": [ @@ -65608,6 +278422,34 @@ }, { "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": [ @@ -65618,6 +278460,40 @@ }, { "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": [ @@ -65628,6 +278504,36 @@ }, { "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": [ @@ -65638,6 +278544,35 @@ }, { "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": [ @@ -65648,6 +278583,40 @@ }, { "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": [ @@ -65658,6 +278627,36 @@ }, { "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": [ @@ -65668,6 +278667,35 @@ }, { "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": [ @@ -65678,6 +278706,35 @@ }, { "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": [ @@ -65688,6 +278745,35 @@ }, { "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": [ @@ -65698,6 +278784,40 @@ }, { "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": [ @@ -65708,6 +278828,35 @@ }, { "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": [ @@ -65718,6 +278867,35 @@ }, { "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": [ @@ -65728,6 +278906,53 @@ }, { "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": [ @@ -65738,6 +278963,35 @@ }, { "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": [ @@ -65748,6 +279002,35 @@ }, { "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": [ @@ -65758,6 +279041,35 @@ }, { "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": [ @@ -65768,6 +279080,35 @@ }, { "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": [ @@ -65778,6 +279119,35 @@ }, { "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": [ @@ -65788,6 +279158,36 @@ }, { "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": [ @@ -65798,6 +279198,35 @@ }, { "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": [ @@ -65808,6 +279237,35 @@ }, { "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": [ @@ -65818,6 +279276,35 @@ }, { "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": [ @@ -65828,6 +279315,40 @@ }, { "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": [ @@ -65838,6 +279359,34 @@ }, { "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": [ @@ -65848,6 +279397,35 @@ }, { "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": [ @@ -65858,6 +279436,34 @@ }, { "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": [ @@ -65868,6 +279474,34 @@ }, { "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": [ @@ -65878,6 +279512,40 @@ }, { "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": [ @@ -65888,6 +279556,40 @@ }, { "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": [ @@ -65898,6 +279600,40 @@ }, { "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": [ @@ -65908,6 +279644,35 @@ }, { "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": [ @@ -65918,6 +279683,40 @@ }, { "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": [ @@ -65928,6 +279727,35 @@ }, { "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": [ @@ -65938,6 +279766,34 @@ }, { "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": [ @@ -65948,6 +279804,35 @@ }, { "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": [ @@ -65958,6 +279843,36 @@ }, { "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": [ @@ -65968,6 +279883,35 @@ }, { "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": [ @@ -65978,6 +279922,36 @@ }, { "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": [ @@ -65988,6 +279962,36 @@ }, { "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": [ @@ -65998,6 +280002,35 @@ }, { "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": [ @@ -66008,6 +280041,34 @@ }, { "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": [ @@ -66018,6 +280079,35 @@ }, { "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": [ @@ -66028,6 +280118,35 @@ }, { "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": [ @@ -66038,6 +280157,35 @@ }, { "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": [ @@ -66048,6 +280196,34 @@ }, { "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": [ @@ -66058,6 +280234,34 @@ }, { "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": [ @@ -66068,6 +280272,34 @@ }, { "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": [ @@ -66078,6 +280310,35 @@ }, { "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": [ @@ -66088,6 +280349,35 @@ }, { "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": [ @@ -66098,6 +280388,35 @@ }, { "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": [ @@ -66108,6 +280427,35 @@ }, { "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": [ @@ -66118,6 +280466,35 @@ }, { "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": [ @@ -66128,6 +280505,40 @@ }, { "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": [ @@ -66138,6 +280549,35 @@ }, { "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": [ @@ -66148,6 +280588,35 @@ }, { "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": [ @@ -66158,6 +280627,74 @@ }, { "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": [ @@ -66168,6 +280705,34 @@ }, { "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": [ @@ -66178,6 +280743,35 @@ }, { "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": [ @@ -66188,6 +280782,34 @@ }, { "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": [ @@ -66198,6 +280820,36 @@ }, { "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": [ @@ -66208,6 +280860,40 @@ }, { "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": [ @@ -66218,6 +280904,35 @@ }, { "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": [ @@ -66228,6 +280943,35 @@ }, { "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": [ @@ -66238,6 +280982,35 @@ }, { "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": [ @@ -66248,6 +281021,36 @@ }, { "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": [ @@ -66258,6 +281061,35 @@ }, { "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": [ @@ -66268,6 +281100,36 @@ }, { "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": [ @@ -66278,6 +281140,53 @@ }, { "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": [ @@ -66288,6 +281197,36 @@ }, { "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": [ @@ -66298,6 +281237,34 @@ }, { "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": [ @@ -66308,6 +281275,35 @@ }, { "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": [ @@ -66318,6 +281314,36 @@ }, { "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": [ @@ -66328,6 +281354,35 @@ }, { "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": [ @@ -66338,6 +281393,35 @@ }, { "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": [ @@ -66348,6 +281432,36 @@ }, { "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": [ @@ -66358,6 +281472,35 @@ }, { "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": [ @@ -66368,6 +281511,35 @@ }, { "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": [ @@ -66378,6 +281550,34 @@ }, { "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": [ @@ -66388,6 +281588,34 @@ }, { "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": [ @@ -66398,6 +281626,35 @@ }, { "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": [ @@ -66408,6 +281665,35 @@ }, { "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": [ @@ -66418,6 +281704,36 @@ }, { "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": [ @@ -66428,6 +281744,35 @@ }, { "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": [ @@ -66438,6 +281783,40 @@ }, { "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": [ @@ -66448,6 +281827,35 @@ }, { "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": [ @@ -66458,6 +281866,36 @@ }, { "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": [ @@ -66468,6 +281906,36 @@ }, { "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": [ @@ -66478,17 +281946,35 @@ }, { "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.4072711, - 49.007261 - ] - } - }, - null, - { - "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": [ @@ -66499,6 +281985,74 @@ }, { "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": [ @@ -66509,6 +282063,34 @@ }, { "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": [ @@ -66519,6 +282101,34 @@ }, { "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": [ @@ -66527,9 +282137,37 @@ ] } }, - null, { "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": [ @@ -66540,6 +282178,34 @@ }, { "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": [ @@ -66550,6 +282216,35 @@ }, { "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": [ @@ -66560,6 +282255,35 @@ }, { "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": [ @@ -66570,6 +282294,34 @@ }, { "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": [ @@ -66580,6 +282332,34 @@ }, { "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": [ @@ -66590,6 +282370,35 @@ }, { "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": [ @@ -66600,6 +282409,35 @@ }, { "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": [ @@ -66610,6 +282448,35 @@ }, { "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": [ @@ -66620,6 +282487,35 @@ }, { "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": [ @@ -66630,6 +282526,40 @@ }, { "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": [ @@ -66640,6 +282570,34 @@ }, { "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": [ @@ -66650,6 +282608,35 @@ }, { "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": [ @@ -66660,6 +282647,35 @@ }, { "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": [ @@ -66670,6 +282686,34 @@ }, { "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": [ @@ -66680,6 +282724,35 @@ }, { "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": [ @@ -66690,6 +282763,34 @@ }, { "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": [ @@ -66700,6 +282801,40 @@ }, { "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": [ @@ -66710,6 +282845,34 @@ }, { "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": [ @@ -66720,6 +282883,39 @@ }, { "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": [ @@ -66730,6 +282926,40 @@ }, { "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": [ @@ -66740,6 +282970,40 @@ }, { "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": [ @@ -66750,6 +283014,40 @@ }, { "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": [ @@ -66760,6 +283058,34 @@ }, { "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": [ @@ -66770,6 +283096,35 @@ }, { "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": [ @@ -66780,6 +283135,40 @@ }, { "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": [ @@ -66790,6 +283179,39 @@ }, { "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": [ @@ -66800,6 +283222,35 @@ }, { "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": [ @@ -66810,6 +283261,34 @@ }, { "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": [ @@ -66820,6 +283299,34 @@ }, { "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": [ @@ -66830,6 +283337,34 @@ }, { "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": [ @@ -66840,6 +283375,40 @@ }, { "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": [ @@ -66850,6 +283419,34 @@ }, { "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": [ @@ -66860,6 +283457,34 @@ }, { "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": [ @@ -66870,6 +283495,35 @@ }, { "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": [ @@ -66880,6 +283534,36 @@ }, { "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": [ @@ -66890,6 +283574,35 @@ }, { "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": [ @@ -66900,6 +283613,40 @@ }, { "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": [ @@ -66910,6 +283657,39 @@ }, { "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": [ @@ -66920,6 +283700,34 @@ }, { "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": [ @@ -66930,6 +283738,35 @@ }, { "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": [ @@ -66940,6 +283777,34 @@ }, { "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": [ @@ -66950,6 +283815,35 @@ }, { "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": [ @@ -66960,6 +283854,34 @@ }, { "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": [ @@ -66970,6 +283892,34 @@ }, { "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": [ @@ -66980,6 +283930,34 @@ }, { "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": [ @@ -66990,6 +283968,35 @@ }, { "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": [ @@ -67000,6 +284007,34 @@ }, { "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": [ @@ -67010,6 +284045,35 @@ }, { "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": [ @@ -67020,6 +284084,35 @@ }, { "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": [ @@ -67030,6 +284123,40 @@ }, { "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": [ @@ -67040,6 +284167,39 @@ }, { "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": [ @@ -67050,6 +284210,35 @@ }, { "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": [ @@ -67060,6 +284249,35 @@ }, { "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": [ @@ -67070,6 +284288,36 @@ }, { "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": [ @@ -67080,6 +284328,35 @@ }, { "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": [ @@ -67090,6 +284367,34 @@ }, { "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": [ @@ -67100,6 +284405,36 @@ }, { "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": [ @@ -67110,6 +284445,34 @@ }, { "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": [ @@ -67120,6 +284483,34 @@ }, { "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": [ @@ -67130,6 +284521,35 @@ }, { "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": [ @@ -67140,6 +284560,34 @@ }, { "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": [ @@ -67150,6 +284598,35 @@ }, { "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": [ @@ -67160,6 +284637,35 @@ }, { "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": [ @@ -67170,6 +284676,34 @@ }, { "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": [ @@ -67180,6 +284714,34 @@ }, { "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": [ @@ -67190,6 +284752,36 @@ }, { "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": [ @@ -67200,6 +284792,35 @@ }, { "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": [ @@ -67210,6 +284831,40 @@ }, { "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": [ @@ -67220,6 +284875,35 @@ }, { "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": [ @@ -67230,6 +284914,35 @@ }, { "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": [ @@ -67240,6 +284953,35 @@ }, { "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": [ @@ -67250,6 +284992,36 @@ }, { "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": [ @@ -67260,6 +285032,35 @@ }, { "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": [ @@ -67270,6 +285071,34 @@ }, { "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": [ @@ -67280,6 +285109,35 @@ }, { "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": [ @@ -67290,6 +285148,36 @@ }, { "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": [ @@ -67300,6 +285188,35 @@ }, { "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": [ @@ -67310,6 +285227,36 @@ }, { "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": [ @@ -67320,6 +285267,36 @@ }, { "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": [ @@ -67330,6 +285307,35 @@ }, { "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": [ @@ -67340,6 +285346,35 @@ }, { "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": [ @@ -67350,6 +285385,35 @@ }, { "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": [ @@ -67360,6 +285424,34 @@ }, { "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": [ @@ -67370,6 +285462,35 @@ }, { "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": [ @@ -67380,6 +285501,34 @@ }, { "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": [ @@ -67390,6 +285539,35 @@ }, { "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": [ @@ -67400,6 +285578,35 @@ }, { "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": [ @@ -67410,6 +285617,36 @@ }, { "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": [ @@ -67420,6 +285657,34 @@ }, { "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": [ @@ -67430,6 +285695,54 @@ }, { "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": [ @@ -67440,6 +285753,40 @@ }, { "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": [ @@ -67448,9 +285795,38 @@ ] } }, - null, { "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": [ @@ -67461,6 +285837,36 @@ }, { "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": [ @@ -67471,6 +285877,35 @@ }, { "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": [ @@ -67481,6 +285916,34 @@ }, { "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": [ @@ -67491,6 +285954,35 @@ }, { "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": [ @@ -67501,6 +285993,36 @@ }, { "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": [ @@ -67511,6 +286033,40 @@ }, { "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": [ @@ -67521,6 +286077,36 @@ }, { "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": [ @@ -67531,6 +286117,35 @@ }, { "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": [ @@ -67541,6 +286156,40 @@ }, { "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": [ @@ -67551,6 +286200,54 @@ }, { "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": [ @@ -67561,6 +286258,40 @@ }, { "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": [ @@ -67571,6 +286302,40 @@ }, { "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": [ @@ -67581,6 +286346,40 @@ }, { "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": [ @@ -67591,6 +286390,35 @@ }, { "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": [ @@ -67601,6 +286429,40 @@ }, { "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": [ @@ -67611,6 +286473,40 @@ }, { "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": [ @@ -67621,6 +286517,35 @@ }, { "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": [ @@ -67631,6 +286556,35 @@ }, { "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": [ @@ -67641,6 +286595,40 @@ }, { "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": [ @@ -67651,6 +286639,34 @@ }, { "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": [ @@ -67661,6 +286677,35 @@ }, { "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": [ @@ -67671,6 +286716,39 @@ }, { "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": [ @@ -67679,9 +286757,42 @@ ] } }, - null, { "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": [ @@ -67692,6 +286803,35 @@ }, { "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": [ @@ -67702,6 +286842,34 @@ }, { "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": [ @@ -67710,9 +286878,37 @@ ] } }, - null, { "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": [ @@ -67721,9 +286917,38 @@ ] } }, - null, { "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": [ @@ -67734,6 +286959,271 @@ }, { "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": [ @@ -67744,6 +287234,34 @@ }, { "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": [ @@ -67754,6 +287272,40 @@ }, { "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": [ @@ -67764,6 +287316,36 @@ }, { "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": [ @@ -67774,6 +287356,34 @@ }, { "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": [ @@ -67784,6 +287394,34 @@ }, { "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": [ @@ -67794,6 +287432,34 @@ }, { "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": [ @@ -67804,6 +287470,35 @@ }, { "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": [ @@ -67814,6 +287509,35 @@ }, { "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": [ @@ -67824,6 +287548,35 @@ }, { "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": [ @@ -67834,6 +287587,34 @@ }, { "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": [ @@ -67844,6 +287625,34 @@ }, { "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": [ @@ -67854,6 +287663,392 @@ }, { "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": [ @@ -67864,6 +288059,39 @@ }, { "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": [ @@ -67874,6 +288102,35 @@ }, { "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": [ @@ -67884,6 +288141,34 @@ }, { "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": [ @@ -67892,9 +288177,37 @@ ] } }, - null, { "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": [ @@ -67905,6 +288218,35 @@ }, { "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": [ @@ -67915,6 +288257,35 @@ }, { "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": [ @@ -67925,6 +288296,36 @@ }, { "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": [ @@ -67935,6 +288336,34 @@ }, { "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": [ @@ -67945,6 +288374,74 @@ }, { "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": [ @@ -67955,6 +288452,35 @@ }, { "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": [ @@ -67965,6 +288491,34 @@ }, { "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": [ @@ -67975,6 +288529,35 @@ }, { "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": [ @@ -67985,6 +288568,34 @@ }, { "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": [ @@ -67995,6 +288606,35 @@ }, { "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": [ @@ -68005,6 +288645,36 @@ }, { "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": [ @@ -68015,6 +288685,35 @@ }, { "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": [ @@ -68025,6 +288724,36 @@ }, { "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": [ @@ -68035,6 +288764,36 @@ }, { "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": [ @@ -68045,6 +288804,36 @@ }, { "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": [ @@ -68055,6 +288844,36 @@ }, { "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": [ @@ -68065,6 +288884,36 @@ }, { "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": [ @@ -68075,6 +288924,36 @@ }, { "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": [ @@ -68085,6 +288964,36 @@ }, { "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": [ @@ -68095,6 +289004,35 @@ }, { "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": [ @@ -68105,6 +289043,35 @@ }, { "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": [ @@ -68115,6 +289082,35 @@ }, { "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": [ @@ -68125,6 +289121,35 @@ }, { "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": [ @@ -68135,6 +289160,36 @@ }, { "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": [ @@ -68145,6 +289200,35 @@ }, { "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": [ @@ -68155,6 +289239,469 @@ }, { "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": [ @@ -68165,6 +289712,35 @@ }, { "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": [ @@ -68175,6 +289751,35 @@ }, { "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": [ @@ -68185,6 +289790,35 @@ }, { "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": [ @@ -68195,6 +289829,35 @@ }, { "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": [ @@ -68205,6 +289868,40 @@ }, { "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": [ @@ -68215,6 +289912,34 @@ }, { "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": [ @@ -68225,6 +289950,35 @@ }, { "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": [ @@ -68235,6 +289989,36 @@ }, { "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": [ @@ -68245,6 +290029,36 @@ }, { "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": [ @@ -68255,6 +290069,36 @@ }, { "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": [ @@ -68265,6 +290109,36 @@ }, { "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": [ @@ -68275,6 +290149,35 @@ }, { "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": [ @@ -68285,6 +290188,34 @@ }, { "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": [ @@ -68295,6 +290226,36 @@ }, { "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": [ @@ -68305,6 +290266,35 @@ }, { "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": [ @@ -68315,6 +290305,36 @@ }, { "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": [ @@ -68325,6 +290345,36 @@ }, { "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": [ @@ -68335,6 +290385,36 @@ }, { "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": [ @@ -68345,6 +290425,35 @@ }, { "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": [ @@ -68355,6 +290464,36 @@ }, { "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": [ @@ -68365,6 +290504,35 @@ }, { "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": [ @@ -68375,6 +290543,35 @@ }, { "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": [ @@ -68385,6 +290582,35 @@ }, { "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": [ @@ -68395,6 +290621,34 @@ }, { "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": [ @@ -68405,6 +290659,36 @@ }, { "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": [ @@ -68415,6 +290699,36 @@ }, { "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": [ @@ -68425,6 +290739,36 @@ }, { "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": [ @@ -68435,6 +290779,36 @@ }, { "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": [ @@ -68445,6 +290819,36 @@ }, { "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": [ @@ -68455,6 +290859,36 @@ }, { "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": [ @@ -68465,6 +290899,35 @@ }, { "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": [ @@ -68475,6 +290938,36 @@ }, { "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": [ @@ -68485,6 +290978,35 @@ }, { "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": [ @@ -68495,6 +291017,34 @@ }, { "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": [ @@ -68505,6 +291055,36 @@ }, { "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": [ @@ -68515,6 +291095,36 @@ }, { "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": [ @@ -68525,6 +291135,36 @@ }, { "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": [ @@ -68535,6 +291175,40 @@ }, { "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": [ @@ -68545,6 +291219,39 @@ }, { "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": [ @@ -68555,6 +291262,40 @@ }, { "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": [ @@ -68565,6 +291306,36 @@ }, { "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": [ @@ -68575,6 +291346,36 @@ }, { "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": [ @@ -68585,6 +291386,36 @@ }, { "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": [ @@ -68595,6 +291426,35 @@ }, { "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": [ @@ -68605,6 +291465,36 @@ }, { "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": [ @@ -68615,6 +291505,35 @@ }, { "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": [ @@ -68625,6 +291544,35 @@ }, { "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": [ @@ -68635,6 +291583,35 @@ }, { "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": [ @@ -68645,6 +291622,35 @@ }, { "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": [ @@ -68655,6 +291661,36 @@ }, { "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": [ @@ -68665,6 +291701,40 @@ }, { "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": [ @@ -68675,6 +291745,35 @@ }, { "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": [ @@ -68685,6 +291784,35 @@ }, { "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": [ @@ -68695,6 +291823,35 @@ }, { "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": [ @@ -68705,6 +291862,36 @@ }, { "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": [ @@ -68715,6 +291902,35 @@ }, { "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": [ @@ -68725,6 +291941,36 @@ }, { "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": [ @@ -68735,6 +291981,35 @@ }, { "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": [ @@ -68745,6 +292020,35 @@ }, { "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": [ @@ -68755,6 +292059,35 @@ }, { "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": [ @@ -68765,6 +292098,40 @@ }, { "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": [ @@ -68775,6 +292142,34 @@ }, { "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": [ @@ -68785,6 +292180,35 @@ }, { "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": [ @@ -68795,6 +292219,34 @@ }, { "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": [ @@ -68805,6 +292257,35 @@ }, { "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": [ @@ -68815,6 +292296,35 @@ }, { "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": [ @@ -68825,6 +292335,36 @@ }, { "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": [ @@ -68835,6 +292375,35 @@ }, { "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": [ @@ -68845,6 +292414,36 @@ }, { "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": [ @@ -68855,6 +292454,36 @@ }, { "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": [ @@ -68865,6 +292494,35 @@ }, { "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": [ @@ -68875,6 +292533,36 @@ }, { "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": [ @@ -68885,6 +292573,35 @@ }, { "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": [ @@ -68895,6 +292612,34 @@ }, { "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": [ @@ -68905,6 +292650,36 @@ }, { "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": [ @@ -68915,6 +292690,34 @@ }, { "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": [ @@ -68925,6 +292728,35 @@ }, { "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": [ @@ -68935,6 +292767,35 @@ }, { "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": [ @@ -68945,6 +292806,34 @@ }, { "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": [ @@ -68955,6 +292844,35 @@ }, { "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": [ @@ -68965,6 +292883,35 @@ }, { "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": [ @@ -68975,6 +292922,35 @@ }, { "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": [ @@ -68985,6 +292961,35 @@ }, { "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": [ @@ -68995,6 +293000,36 @@ }, { "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": [ @@ -69005,6 +293040,36 @@ }, { "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": [ @@ -69015,6 +293080,35 @@ }, { "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": [ @@ -69025,6 +293119,34 @@ }, { "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": [ @@ -69035,6 +293157,35 @@ }, { "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": [ @@ -69045,6 +293196,34 @@ }, { "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": [ @@ -69055,6 +293234,36 @@ }, { "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": [ @@ -69065,6 +293274,40 @@ }, { "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": [ @@ -69075,6 +293318,34 @@ }, { "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": [ @@ -69085,6 +293356,35 @@ }, { "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": [ @@ -69095,6 +293395,35 @@ }, { "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": [ @@ -69105,6 +293434,35 @@ }, { "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": [ @@ -69115,6 +293473,35 @@ }, { "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": [ @@ -69125,6 +293512,35 @@ }, { "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": [ @@ -69135,6 +293551,36 @@ }, { "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": [ @@ -69145,6 +293591,36 @@ }, { "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": [ @@ -69155,6 +293631,36 @@ }, { "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": [ @@ -69165,6 +293671,36 @@ }, { "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": [ @@ -69175,6 +293711,36 @@ }, { "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": [ @@ -69185,6 +293751,36 @@ }, { "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": [ @@ -69195,6 +293791,36 @@ }, { "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": [ @@ -69205,6 +293831,34 @@ }, { "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": [ @@ -69215,6 +293869,35 @@ }, { "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": [ @@ -69225,6 +293908,35 @@ }, { "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": [ @@ -69235,6 +293947,35 @@ }, { "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": [ @@ -69245,6 +293986,35 @@ }, { "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": [ @@ -69255,6 +294025,35 @@ }, { "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": [ @@ -69265,6 +294064,35 @@ }, { "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": [ @@ -69275,6 +294103,36 @@ }, { "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": [ @@ -69285,6 +294143,36 @@ }, { "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": [ @@ -69295,6 +294183,36 @@ }, { "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": [ @@ -69305,6 +294223,36 @@ }, { "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": [ @@ -69315,6 +294263,36 @@ }, { "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": [ @@ -69325,6 +294303,36 @@ }, { "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": [ @@ -69335,6 +294343,35 @@ }, { "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": [ @@ -69345,6 +294382,34 @@ }, { "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": [ @@ -69355,6 +294420,35 @@ }, { "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": [ @@ -69365,6 +294459,40 @@ }, { "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": [ @@ -69375,6 +294503,34 @@ }, { "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": [ @@ -69385,6 +294541,35 @@ }, { "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": [ @@ -69395,6 +294580,35 @@ }, { "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": [ @@ -69405,16 +294619,6028 @@ }, { "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": [ - 4.73854315, - 51.168924000000004 + -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" + } + ], + "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-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": [ @@ -69425,16 +300651,79 @@ }, { "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.9934294, - 52.012867 + 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": [ @@ -69445,6 +300734,35 @@ }, { "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": [ @@ -69455,6 +300773,35 @@ }, { "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": [ @@ -69465,6 +300812,38 @@ }, { "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": [ @@ -69475,6 +300854,42 @@ }, { "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": [ @@ -69485,6 +300900,35 @@ }, { "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": [ @@ -69495,6 +300939,41 @@ }, { "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": [ @@ -69505,6 +300984,35 @@ }, { "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": [ @@ -69515,6 +301023,38 @@ }, { "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": [ @@ -69525,6 +301065,41 @@ }, { "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": [ @@ -69535,6 +301110,40 @@ }, { "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": [ @@ -69545,6 +301154,36 @@ }, { "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": [ @@ -69555,6 +301194,35 @@ }, { "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": [ @@ -69565,6 +301233,35 @@ }, { "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": [ @@ -69575,6 +301272,37 @@ }, { "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": [ @@ -69585,6 +301313,35 @@ }, { "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": [ @@ -69595,6 +301352,38 @@ }, { "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": [ @@ -69605,6 +301394,35 @@ }, { "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": [ @@ -69615,6 +301433,36 @@ }, { "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": [ @@ -69625,6 +301473,35 @@ }, { "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": [ @@ -69635,6 +301512,35 @@ }, { "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": [ @@ -69645,6 +301551,35 @@ }, { "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": [ @@ -69655,6 +301590,35 @@ }, { "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": [ @@ -69665,6 +301629,35 @@ }, { "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": [ @@ -69675,6 +301668,35 @@ }, { "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": [ @@ -69685,6 +301707,35 @@ }, { "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": [ @@ -69695,6 +301746,35 @@ }, { "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": [ @@ -69705,6 +301785,35 @@ }, { "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": [ @@ -69715,6 +301824,35 @@ }, { "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": [ @@ -69725,6 +301863,35 @@ }, { "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": [ @@ -69735,6 +301902,37 @@ }, { "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": [ @@ -69745,6 +301943,35 @@ }, { "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": [ @@ -69755,6 +301982,35 @@ }, { "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": [ @@ -69765,6 +302021,35 @@ }, { "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": [ @@ -69775,6 +302060,35 @@ }, { "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": [ @@ -69785,6 +302099,35 @@ }, { "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": [ @@ -69795,6 +302138,37 @@ }, { "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": [ @@ -69805,6 +302179,37 @@ }, { "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": [ @@ -69815,6 +302220,35 @@ }, { "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": [ @@ -69825,6 +302259,35 @@ }, { "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": [ @@ -69835,6 +302298,35 @@ }, { "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": [ @@ -69845,6 +302337,35 @@ }, { "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": [ @@ -69855,6 +302376,37 @@ }, { "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": [ @@ -69865,6 +302417,35 @@ }, { "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": [ @@ -69875,6 +302456,39 @@ }, { "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": [ @@ -69885,6 +302499,35 @@ }, { "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": [ @@ -69895,6 +302538,35 @@ }, { "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": [ @@ -69905,6 +302577,35 @@ }, { "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": [ @@ -69915,6 +302616,37 @@ }, { "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": [ @@ -69925,6 +302657,35 @@ }, { "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": [ @@ -69935,6 +302696,35 @@ }, { "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": [ @@ -69945,6 +302735,37 @@ }, { "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": [ @@ -69955,6 +302776,35 @@ }, { "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": [ @@ -69965,6 +302815,35 @@ }, { "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": [ @@ -69975,6 +302854,38 @@ }, { "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": [ @@ -69985,6 +302896,40 @@ }, { "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": [ @@ -69995,6 +302940,37 @@ }, { "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": [ @@ -70005,6 +302981,35 @@ }, { "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": [ @@ -70015,6 +303020,38 @@ }, { "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": [ @@ -70025,6 +303062,37 @@ }, { "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": [ @@ -70035,6 +303103,36 @@ }, { "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": [ @@ -70045,6 +303143,36 @@ }, { "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": [ @@ -70055,6 +303183,35 @@ }, { "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": [ @@ -70065,6 +303222,35 @@ }, { "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": [ @@ -70075,6 +303261,38 @@ }, { "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": [ @@ -70085,6 +303303,36 @@ }, { "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": [ @@ -70095,6 +303343,38 @@ }, { "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": [ @@ -70105,6 +303385,35 @@ }, { "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": [ @@ -70115,6 +303424,37 @@ }, { "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": [ @@ -70125,6 +303465,53 @@ }, { "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": [ @@ -70135,6 +303522,36 @@ }, { "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": [ @@ -70145,6 +303562,35 @@ }, { "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": [ @@ -70155,6 +303601,37 @@ }, { "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": [ @@ -70165,6 +303642,39 @@ }, { "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": [ @@ -70175,6 +303685,37 @@ }, { "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": [ @@ -70185,6 +303726,36 @@ }, { "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": [ @@ -70195,6 +303766,37 @@ }, { "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": [ @@ -70205,6 +303807,39 @@ }, { "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": [ @@ -70215,6 +303850,39 @@ }, { "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": [ @@ -70225,6 +303893,38 @@ }, { "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": [ @@ -70235,6 +303935,39 @@ }, { "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": [ @@ -70245,6 +303978,36 @@ }, { "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": [ @@ -70255,6 +304018,40 @@ }, { "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": [ @@ -70265,6 +304062,37 @@ }, { "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": [ @@ -70275,6 +304103,37 @@ }, { "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": [ @@ -70285,6 +304144,37 @@ }, { "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": [ @@ -70295,6 +304185,38 @@ }, { "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": [ diff --git a/Docs/Tools/graphs/Changesets per day (line) in 2022.png b/Docs/Tools/graphs/Changesets per day (line) in 2022.png index 62db762395..830d50ab29 100644 Binary files a/Docs/Tools/graphs/Changesets per day (line) in 2022.png and b/Docs/Tools/graphs/Changesets per day (line) in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per day (line).png b/Docs/Tools/graphs/Changesets per day (line).png index 2a495e469e..056e772475 100644 Binary files a/Docs/Tools/graphs/Changesets per day (line).png and b/Docs/Tools/graphs/Changesets per day (line).png differ diff --git a/Docs/Tools/graphs/Changesets per host in 2022.png b/Docs/Tools/graphs/Changesets per host in 2022.png index f66b1f2264..20990599fe 100644 Binary files a/Docs/Tools/graphs/Changesets per host in 2022.png and b/Docs/Tools/graphs/Changesets per host in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per host.png b/Docs/Tools/graphs/Changesets per host.png index 8d934f0324..002f9ff6fd 100644 Binary files a/Docs/Tools/graphs/Changesets per host.png and b/Docs/Tools/graphs/Changesets per host.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar) in 2022.png b/Docs/Tools/graphs/Changesets per theme (bar) in 2022.png index 52bee12efa..ca2cd74631 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) in 2022.png and b/Docs/Tools/graphs/Changesets per theme (bar) in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar).png b/Docs/Tools/graphs/Changesets per theme (bar).png index 47c1b0694a..775b24e178 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (bar).png and b/Docs/Tools/graphs/Changesets per theme (bar).png differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie) in 2022.png b/Docs/Tools/graphs/Changesets per theme (pie) in 2022.png index f6acd88b30..6d6085f911 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) in 2022.png and b/Docs/Tools/graphs/Changesets per theme (pie) in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (pie).png b/Docs/Tools/graphs/Changesets per theme (pie).png index 354c73fc80..f9d06883de 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (pie).png and b/Docs/Tools/graphs/Changesets per theme (pie).png differ diff --git a/Docs/Tools/graphs/Changesets per theme in 2022.png b/Docs/Tools/graphs/Changesets per theme in 2022.png index ef2c372f6d..076c3487c8 100644 Binary files a/Docs/Tools/graphs/Changesets per theme in 2022.png and b/Docs/Tools/graphs/Changesets per theme in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per theme.png b/Docs/Tools/graphs/Changesets per theme.png index 514312eea4..e0a42092ec 100644 Binary files a/Docs/Tools/graphs/Changesets per theme.png and b/Docs/Tools/graphs/Changesets per theme.png differ diff --git a/Docs/Tools/graphs/Changesets per version number in 2022.png b/Docs/Tools/graphs/Changesets per version number in 2022.png index 34501f8641..d16df7935c 100644 Binary files a/Docs/Tools/graphs/Changesets per version number in 2022.png and b/Docs/Tools/graphs/Changesets per version number in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per version number.png b/Docs/Tools/graphs/Changesets per version number.png index f518a5061a..01185b4215 100644 Binary files a/Docs/Tools/graphs/Changesets per version number.png and b/Docs/Tools/graphs/Changesets per version number.png differ diff --git a/Docs/Tools/graphs/Contributors per changeset count in 2022.png b/Docs/Tools/graphs/Contributors per changeset count in 2022.png index 5d310be746..58fc0dd65e 100644 Binary files a/Docs/Tools/graphs/Contributors per changeset count in 2022.png and b/Docs/Tools/graphs/Contributors per changeset count in 2022.png differ diff --git a/Docs/Tools/graphs/Contributors per changeset count.png b/Docs/Tools/graphs/Contributors per changeset count.png index c3c9d5691f..79b0c1183e 100644 Binary files a/Docs/Tools/graphs/Contributors per changeset count.png and b/Docs/Tools/graphs/Contributors per changeset count.png differ diff --git a/Docs/Tools/graphs/Contributors per day in 2022.png b/Docs/Tools/graphs/Contributors per day in 2022.png index b6cef68bd4..c66e5cc709 100644 Binary files a/Docs/Tools/graphs/Contributors per day in 2022.png and b/Docs/Tools/graphs/Contributors per day in 2022.png differ diff --git a/Docs/Tools/graphs/Contributors per day.png b/Docs/Tools/graphs/Contributors per day.png index a972396f6f..c2a2dc369b 100644 Binary files a/Docs/Tools/graphs/Contributors per day.png and b/Docs/Tools/graphs/Contributors per day.png differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme in 2022.png b/Docs/Tools/graphs/Deletion-changesets per theme in 2022.png index fbbef894e0..b578a4d9f2 100644 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme in 2022.png and b/Docs/Tools/graphs/Deletion-changesets per theme in 2022.png differ diff --git a/Docs/Tools/graphs/Deletion-changesets per theme.png b/Docs/Tools/graphs/Deletion-changesets per theme.png index 8301cefa6d..f740b82c69 100644 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme.png and b/Docs/Tools/graphs/Deletion-changesets per theme.png differ diff --git a/Docs/Tools/graphs/Empty changesets by date.png b/Docs/Tools/graphs/Empty changesets by date.png index 070f71f502..0663f7768c 100644 Binary files a/Docs/Tools/graphs/Empty changesets by date.png and b/Docs/Tools/graphs/Empty changesets by date.png differ diff --git a/Docs/Tools/stats/stats.2020-10.json b/Docs/Tools/stats/stats.2020-10.json index a90ebd8eb3..1a4a8f58cd 100644 --- a/Docs/Tools/stats/stats.2020-10.json +++ b/Docs/Tools/stats/stats.2020-10.json @@ -56,7 +56,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 93348440 } }, { @@ -115,7 +116,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 93344361 } }, { @@ -174,7 +176,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93344041 } }, { @@ -233,7 +236,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93343913 } }, { @@ -292,7 +296,8 @@ "theme": "artworks", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93334680 } }, { @@ -351,7 +356,8 @@ "theme": "aed", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 93334615 } }, { @@ -410,7 +416,8 @@ "theme": "aed", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 93334256 } }, { @@ -469,7 +476,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 93334153 } }, { @@ -528,7 +536,8 @@ "theme": "benches", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 93298136 } }, { @@ -587,7 +596,8 @@ "theme": "artworks", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93239558 } }, { @@ -646,7 +656,8 @@ "theme": "benches", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 93219317 } }, { @@ -705,7 +716,8 @@ "theme": "fritures", "language": "nl", "theme-creator": "" - } + }, + "id": 93138222 } }, { @@ -763,7 +775,8 @@ "metadata": { "theme": "personal", "language": "en" - } + }, + "id": 93108212 } }, { @@ -839,7 +852,8 @@ "theme": "maps", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93101275 } }, { @@ -902,7 +916,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 93080334 } }, { @@ -961,7 +976,8 @@ "theme": "charging_stations", "language": "en", "theme-creator": "" - } + }, + "id": 93077975 } }, { @@ -1129,7 +1145,8 @@ "theme": "arbres", "language": "ca", "theme-creator": "" - } + }, + "id": 93072877 } }, { @@ -1193,7 +1210,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93072573 } }, { @@ -1257,7 +1275,8 @@ "theme": "benches", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 93071742 } }, { @@ -1316,7 +1335,8 @@ "theme": "dalemasvelocidad", "language": "es", "theme-creator": "" - } + }, + "id": 93030151 } }, { @@ -1375,7 +1395,8 @@ "theme": "aed", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93028022 } }, { @@ -1434,7 +1455,8 @@ "theme": "klimbomen", "language": "nl", "theme-creator": "" - } + }, + "id": 93013547 } }, { @@ -1493,7 +1515,8 @@ "theme": "aed", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93001764 } }, { @@ -1552,7 +1575,8 @@ "theme": "aed", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93001720 } }, { @@ -1611,7 +1635,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 92991026 } }, { @@ -1670,7 +1695,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 92990737 } }, { @@ -1729,7 +1755,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 92988162 } }, { @@ -1788,7 +1815,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 92988161 } }, { @@ -1852,7 +1880,8 @@ "theme": "cyclofix", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 92986777 } }, { @@ -1911,7 +1940,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92984809 } }, { @@ -1970,7 +2000,8 @@ "theme": "charging_stations", "language": "en", "theme-creator": "" - } + }, + "id": 92982905 } }, { @@ -2029,7 +2060,8 @@ "theme": "charging_stations", "language": "en", "theme-creator": "" - } + }, + "id": 92973349 } }, { @@ -2088,7 +2120,8 @@ "theme": "charging_stations", "language": "en", "theme-creator": "" - } + }, + "id": 92967046 } }, { @@ -2147,7 +2180,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 92956134 } }, { @@ -2206,7 +2240,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 92950532 } }, { @@ -2265,7 +2300,8 @@ "theme": "fritures", "language": "nl", "theme-creator": "" - } + }, + "id": 92941745 } }, { @@ -2329,7 +2365,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92909378 } }, { @@ -2393,7 +2430,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92883743 } }, { @@ -2451,7 +2489,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 92818838 } }, { @@ -2510,7 +2549,8 @@ "theme": "benches", "language": "de", "theme-creator": "" - } + }, + "id": 92777556 } }, { @@ -2568,7 +2608,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 92776734 } }, { @@ -2644,7 +2685,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92762566 } }, { @@ -2703,7 +2745,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92675350 } }, { @@ -2762,7 +2805,8 @@ "theme": "wiki:MapComplete/Fritures", "language": "nl", "theme-creator": "" - } + }, + "id": 92672486 } }, { @@ -2821,7 +2865,8 @@ "theme": "wiki:MapComplete/Fritures", "language": "nl", "theme-creator": "" - } + }, + "id": 92672464 } }, { @@ -2880,7 +2925,8 @@ "theme": "benches", "language": "de", "theme-creator": "" - } + }, + "id": 92655740 } }, { @@ -2939,7 +2985,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92655413 } }, { @@ -2998,7 +3045,8 @@ "theme": "fietsstraten", "language": "nl", "theme-creator": "MapComlete" - } + }, + "id": 92655353 } }, { @@ -3057,7 +3105,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92655156 } }, { @@ -3134,7 +3183,8 @@ "theme": "wiki:MapComplete/covid", "language": "en", "theme-creator": "" - } + }, + "id": 92644570 } }, { @@ -3192,7 +3242,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 92629048 } }, { @@ -3251,7 +3302,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 92628414 } }, { @@ -3310,7 +3362,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 92626634 } }, { @@ -3369,7 +3422,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 92626511 } }, { @@ -3460,7 +3514,8 @@ "theme": "arbres", "language": "ca", "theme-creator": "" - } + }, + "id": 92623504 } }, { @@ -3524,7 +3579,8 @@ "theme": "arbres", "language": "ca", "theme-creator": "" - } + }, + "id": 92623044 } }, { @@ -3633,7 +3689,8 @@ "theme": "arbres", "language": "ca", "theme-creator": "" - } + }, + "id": 92622358 } }, { @@ -3692,7 +3749,8 @@ "theme": "bookcases", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 92608270 } }, { @@ -3768,7 +3826,8 @@ "theme": "arbres", "language": "ca", "theme-creator": "" - } + }, + "id": 92594805 } }, { @@ -3827,7 +3886,8 @@ "theme": "arbres", "language": "ca", "theme-creator": "" - } + }, + "id": 92591880 } }, { @@ -3891,7 +3951,8 @@ "theme": "boomgaarden", "language": "nl", "theme-creator": "" - } + }, + "id": 92480675 } }, { @@ -3950,7 +4011,8 @@ "theme": "skateparks", "language": "en", "theme-creator": "" - } + }, + "id": 92451359 } }, { @@ -4009,7 +4071,8 @@ "theme": "fietsstraten", "language": "nl", "theme-creator": "MapComlete" - } + }, + "id": 92451054 } }, { @@ -4068,7 +4131,8 @@ "theme": "aed", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92432289 } }, { @@ -4127,7 +4191,8 @@ "theme": "restaurants", "language": "es", "theme-creator": "" - } + }, + "id": 92428732 } }, { @@ -4186,7 +4251,8 @@ "theme": "crossingtime", "language": "es", "theme-creator": "" - } + }, + "id": 92428636 } }, { @@ -4243,7 +4309,8 @@ "check_date": null, "metadata": { "theme": "mcac_cyclofix" - } + }, + "id": 92365914 } }, { @@ -4302,7 +4369,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92364775 } }, { @@ -4361,7 +4429,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92364006 } }, { @@ -4420,7 +4489,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92315583 } }, { @@ -4479,7 +4549,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92314448 } }, { @@ -4538,7 +4609,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92313828 } }, { @@ -4597,7 +4669,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92304842 } }, { @@ -4656,7 +4729,8 @@ "theme": "artworks", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92298874 } }, { @@ -4715,7 +4789,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 92279052 } }, { @@ -4774,7 +4849,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92275261 } }, { @@ -4833,7 +4909,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 92254992 } }, { @@ -4892,7 +4969,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 92250660 } }, { @@ -4951,7 +5029,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 92247398 } }, { @@ -5010,7 +5089,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 92161174 } }, { @@ -5073,7 +5153,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 92049987 } }, { @@ -5136,7 +5217,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 92049678 } }, { @@ -5195,7 +5277,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 92026826 } }, { @@ -5258,7 +5341,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 92021465 } }, { @@ -5322,7 +5406,8 @@ "theme": "fietsstraten", "language": "nl", "theme-creator": "MapComlete" - } + }, + "id": 92001085 } }, { @@ -5385,7 +5470,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 91974181 } }, { @@ -5444,7 +5530,8 @@ "theme": "crossingtime", "language": "es", "theme-creator": "" - } + }, + "id": 91940593 } }, { @@ -5503,7 +5590,8 @@ "theme": "klimbomen", "language": "nl", "theme-creator": "" - } + }, + "id": 91937284 } }, { @@ -5566,7 +5654,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 91936823 } }, { @@ -5625,7 +5714,8 @@ "theme": "crossingtime", "language": "es", "theme-creator": "" - } + }, + "id": 91928820 } }, { @@ -5684,7 +5774,8 @@ "theme": "artworks", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 91901760 } }, { @@ -5743,7 +5834,8 @@ "theme": "maps", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 91896505 } }, { @@ -5802,7 +5894,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 91896414 } }, { @@ -5861,7 +5954,8 @@ "theme": "artworks", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 91873200 } }, { @@ -5920,7 +6014,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 91820037 } }, { @@ -5978,7 +6073,8 @@ "metadata": { "theme": "personal", "language": "en" - } + }, + "id": 91817612 } }, { @@ -6037,7 +6133,8 @@ "theme": "cyclofix", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 91816014 } } ] diff --git a/Docs/Tools/stats/stats.2020-11.json b/Docs/Tools/stats/stats.2020-11.json index d563991ae8..b93a2b3a05 100644 --- a/Docs/Tools/stats/stats.2020-11.json +++ b/Docs/Tools/stats/stats.2020-11.json @@ -56,7 +56,8 @@ "theme": "climbing", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 95071485 } }, { @@ -120,7 +121,8 @@ "theme": "ghostbikes", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 95044929 } }, { @@ -179,7 +181,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95026219 } }, { @@ -238,7 +241,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94990757 } }, { @@ -297,7 +301,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94987265 } }, { @@ -356,7 +361,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94969449 } }, { @@ -415,7 +421,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94964190 } }, { @@ -1375,7 +1382,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94954013 } }, { @@ -1466,7 +1474,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94940524 } }, { @@ -2217,7 +2226,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94938881 } }, { @@ -2297,7 +2307,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94938851 } }, { @@ -2399,7 +2410,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94909480 } }, { @@ -2490,7 +2502,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94909391 } }, { @@ -2570,7 +2583,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94908940 } }, { @@ -2650,7 +2664,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94908939 } }, { @@ -2737,7 +2752,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94908676 } }, { @@ -2894,7 +2910,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94908194 } }, { @@ -2953,7 +2970,8 @@ "theme": "openinghourscovid19", "language": "es", "theme-creator": "" - } + }, + "id": 94907892 } }, { @@ -3012,7 +3030,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 94904697 } }, { @@ -3609,7 +3628,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94903388 } }, { @@ -3673,7 +3693,8 @@ "theme": "ghostbikes", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 94892190 } }, { @@ -3732,7 +3753,8 @@ "theme": "artworks", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94886678 } }, { @@ -3878,7 +3900,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94886654 } }, { @@ -3980,7 +4003,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 94884306 } }, { @@ -4039,7 +4063,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94855667 } }, { @@ -4098,7 +4123,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94846986 } }, { @@ -4157,7 +4183,8 @@ "theme": "benches", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 94840108 } }, { @@ -4216,7 +4243,8 @@ "theme": "benches", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 94835855 } }, { @@ -4275,7 +4303,8 @@ "theme": "vegan", "language": "de", "theme-creator": "Christian Neumann " - } + }, + "id": 94831177 } }, { @@ -4334,7 +4363,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94778286 } }, { @@ -4398,7 +4428,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94775738 } }, { @@ -4457,7 +4488,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94761434 } }, { @@ -4516,7 +4548,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94735016 } }, { @@ -4592,7 +4625,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94731389 } }, { @@ -4668,7 +4702,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94726631 } }, { @@ -4727,7 +4762,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94724303 } }, { @@ -4786,7 +4822,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94717790 } }, { @@ -4845,7 +4882,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94717255 } }, { @@ -4904,7 +4942,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94716778 } }, { @@ -4963,7 +5002,8 @@ "theme": "personal", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94715749 } }, { @@ -5022,7 +5062,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94707872 } }, { @@ -5081,7 +5122,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 94664971 } }, { @@ -5140,7 +5182,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94657023 } }, { @@ -5199,7 +5242,8 @@ "theme": "ghostbikes", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 94653959 } }, { @@ -5258,7 +5302,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94653732 } }, { @@ -5317,7 +5362,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 94637900 } }, { @@ -5376,7 +5422,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94626216 } }, { @@ -5435,7 +5482,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94602336 } }, { @@ -5494,7 +5542,8 @@ "theme": "aed", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94601973 } }, { @@ -5553,7 +5602,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94600621 } }, { @@ -5612,7 +5662,8 @@ "theme": "wherethesidewalkshavenoname", "language": "es", "theme-creator": "" - } + }, + "id": 94591717 } }, { @@ -5671,7 +5722,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94586263 } }, { @@ -5730,7 +5782,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94583605 } }, { @@ -5789,7 +5842,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94581348 } }, { @@ -5848,7 +5902,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94564689 } }, { @@ -5907,7 +5962,8 @@ "theme": "drinking_water", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94564358 } }, { @@ -5966,7 +6022,8 @@ "theme": "benches", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 94563857 } }, { @@ -6025,7 +6082,8 @@ "theme": "charging_stations", "language": "en", "theme-creator": "" - } + }, + "id": 94563656 } }, { @@ -6084,7 +6142,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94556495 } }, { @@ -6143,7 +6202,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94549828 } }, { @@ -6202,7 +6262,8 @@ "theme": "climbing", "language": "nl", "theme-creator": "Christian Neumann " - } + }, + "id": 94545816 } }, { @@ -6261,7 +6322,8 @@ "theme": "climbing", "language": "nl", "theme-creator": "Christian Neumann " - } + }, + "id": 94542770 } }, { @@ -6337,7 +6399,8 @@ "theme": "maps", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94520039 } }, { @@ -6396,7 +6459,8 @@ "theme": "personal", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94518239 } }, { @@ -6455,7 +6519,8 @@ "theme": "climbing", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 94504900 } }, { @@ -6514,7 +6579,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94483775 } }, { @@ -6573,7 +6639,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 94467467 } }, { @@ -6632,7 +6699,8 @@ "theme": "artworks", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94442683 } }, { @@ -6691,7 +6759,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94442306 } }, { @@ -6750,7 +6819,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94439809 } }, { @@ -6809,7 +6879,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 94434758 } }, { @@ -6868,7 +6939,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94420981 } }, { @@ -6927,7 +6999,8 @@ "theme": "surveillance", "language": "nl", "theme-creator": "" - } + }, + "id": 94420513 } }, { @@ -6986,7 +7059,8 @@ "theme": "aed", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 94418348 } }, { @@ -7045,7 +7119,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 94402050 } }, { @@ -7104,7 +7179,8 @@ "theme": "pingpong", "language": "nl", "theme-creator": "" - } + }, + "id": 94382614 } }, { @@ -7163,7 +7239,8 @@ "theme": "climbing", "language": "de", "theme-creator": "Christian Neumann " - } + }, + "id": 94359040 } }, { @@ -7222,7 +7299,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94322960 } }, { @@ -7281,7 +7359,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94308579 } }, { @@ -7340,7 +7419,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94292046 } }, { @@ -7399,7 +7479,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94240483 } }, { @@ -7463,7 +7544,8 @@ "theme": "boomgaarden", "language": "nl", "theme-creator": "" - } + }, + "id": 94224931 } }, { @@ -7522,7 +7604,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 94218339 } }, { @@ -7581,7 +7664,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94159774 } }, { @@ -7640,7 +7724,8 @@ "theme": "surveillance", "language": "en", "theme-creator": "" - } + }, + "id": 94153746 } }, { @@ -7699,7 +7784,8 @@ "theme": "openinghourscovid19", "language": "es", "theme-creator": "" - } + }, + "id": 94151721 } }, { @@ -7758,7 +7844,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94148345 } }, { @@ -7817,7 +7904,8 @@ "theme": "surveillance", "language": "en", "theme-creator": "" - } + }, + "id": 94138988 } }, { @@ -7876,7 +7964,8 @@ "theme": "surveillance", "language": "nl", "theme-creator": "" - } + }, + "id": 94124940 } }, { @@ -7935,7 +8024,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94113792 } }, { @@ -7994,7 +8084,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 94108987 } }, { @@ -8053,7 +8144,8 @@ "theme": "aed", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94103291 } }, { @@ -8112,7 +8204,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94091759 } }, { @@ -8171,7 +8264,8 @@ "theme": "ghostbikes", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 94086068 } }, { @@ -8230,7 +8324,8 @@ "theme": "aed", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 94076961 } }, { @@ -8289,7 +8384,8 @@ "theme": "personal", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 94018048 } }, { @@ -8348,7 +8444,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94017764 } }, { @@ -8407,7 +8504,8 @@ "theme": "toilets", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 94011144 } }, { @@ -8466,7 +8564,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94010704 } }, { @@ -8525,7 +8624,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94002390 } }, { @@ -8584,7 +8684,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 94000102 } }, { @@ -8643,7 +8744,8 @@ "theme": "personal", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93957232 } }, { @@ -8702,7 +8804,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 93954090 } }, { @@ -8761,7 +8864,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93953970 } }, { @@ -8820,7 +8924,8 @@ "theme": "crossingtime", "language": "es", "theme-creator": "" - } + }, + "id": 93946511 } }, { @@ -8879,7 +8984,8 @@ "theme": "openinghourscovid19", "language": "es", "theme-creator": "" - } + }, + "id": 93942265 } }, { @@ -8938,7 +9044,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93935559 } }, { @@ -8997,7 +9104,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93895358 } }, { @@ -9056,7 +9164,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93880755 } }, { @@ -9115,7 +9224,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 93854796 } }, { @@ -9174,7 +9284,8 @@ "theme": "aed", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 93804822 } }, { @@ -9233,7 +9344,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93781079 } }, { @@ -9297,7 +9409,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93759603 } }, { @@ -9356,7 +9469,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93756396 } }, { @@ -9415,7 +9529,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93756032 } }, { @@ -9474,7 +9589,8 @@ "theme": "benches", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 93735609 } }, { @@ -9533,7 +9649,8 @@ "theme": "comerciosantiguos", "language": "es", "theme-creator": "" - } + }, + "id": 93709301 } }, { @@ -9592,7 +9709,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93674814 } }, { @@ -9651,7 +9769,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93659374 } }, { @@ -9710,7 +9829,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93551101 } }, { @@ -9769,7 +9889,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93507143 } }, { @@ -9828,7 +9949,8 @@ "theme": "charging_stations", "language": "en", "theme-creator": "" - } + }, + "id": 93441998 } }, { @@ -9887,7 +10009,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93441481 } }, { @@ -9946,7 +10069,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93441005 } }, { @@ -10005,7 +10129,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93438341 } }, { @@ -10064,7 +10189,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93437995 } }, { @@ -10123,7 +10249,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93436673 } }, { @@ -10187,7 +10314,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 93434827 } }, { @@ -10246,7 +10374,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 93414684 } }, { @@ -10305,7 +10434,8 @@ "theme": "bookcases", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 93414604 } }, { @@ -10364,7 +10494,8 @@ "theme": "aed", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93379896 } }, { @@ -10423,7 +10554,8 @@ "theme": "benches", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 93372113 } }, { @@ -10482,7 +10614,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 93367038 } }, { @@ -10541,7 +10674,8 @@ "theme": "aed", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 93361191 } } ] diff --git a/Docs/Tools/stats/stats.2020-12.json b/Docs/Tools/stats/stats.2020-12.json index a0f890a76d..fd30aa5cb1 100644 --- a/Docs/Tools/stats/stats.2020-12.json +++ b/Docs/Tools/stats/stats.2020-12.json @@ -56,7 +56,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96736844 } }, { @@ -115,7 +116,8 @@ "theme": "trees", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 96697083 } }, { @@ -174,7 +176,8 @@ "theme": "trees", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 96687111 } }, { @@ -233,7 +236,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96677926 } }, { @@ -292,7 +296,8 @@ "theme": "personal", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96671133 } }, { @@ -368,7 +373,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 96666725 } }, { @@ -427,7 +433,8 @@ "theme": "fietsstraten", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96623421 } }, { @@ -484,7 +491,8 @@ "check_date": null, "metadata": { "theme": "mcac_cyclofix" - } + }, + "id": 96622577 } }, { @@ -543,7 +551,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 96602006 } }, { @@ -602,7 +611,8 @@ "theme": "benches", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 96587062 } }, { @@ -661,7 +671,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 96558606 } }, { @@ -720,7 +731,8 @@ "theme": "trees", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 96557858 } }, { @@ -783,7 +795,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 96547243 } }, { @@ -842,7 +855,8 @@ "theme": "trees", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 96536010 } }, { @@ -901,7 +915,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96529515 } }, { @@ -960,7 +975,8 @@ "theme": "personal", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96529089 } }, { @@ -1019,7 +1035,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 96526621 } }, { @@ -1078,7 +1095,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96497486 } }, { @@ -1137,7 +1155,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 96487512 } }, { @@ -1196,7 +1215,8 @@ "theme": "fritures", "language": "nl", "theme-creator": "" - } + }, + "id": 96480786 } }, { @@ -1255,7 +1275,8 @@ "theme": "trees", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 96480644 } }, { @@ -1314,7 +1335,8 @@ "theme": "trees", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 96467370 } }, { @@ -1373,7 +1395,8 @@ "theme": "trees", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 96464209 } }, { @@ -1432,7 +1455,8 @@ "theme": "personal", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96455190 } }, { @@ -1491,7 +1515,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96454086 } }, { @@ -1550,7 +1575,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 96452710 } }, { @@ -1609,7 +1635,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96435672 } }, { @@ -1668,7 +1695,8 @@ "theme": "artworks", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96425274 } }, { @@ -1727,7 +1755,8 @@ "theme": "trees", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 96424469 } }, { @@ -1786,7 +1815,8 @@ "theme": "artworks", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96422689 } }, { @@ -1845,7 +1875,8 @@ "theme": "trees", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 96406794 } }, { @@ -1904,7 +1935,8 @@ "theme": "fritures", "language": "nl", "theme-creator": "" - } + }, + "id": 96402559 } }, { @@ -1963,7 +1995,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96401700 } }, { @@ -2022,7 +2055,8 @@ "theme": "trees", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 96399525 } }, { @@ -2081,7 +2115,8 @@ "theme": "trees", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 96399228 } }, { @@ -2140,7 +2175,8 @@ "theme": "trees", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 96398801 } }, { @@ -2199,7 +2235,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 96386796 } }, { @@ -2258,7 +2295,8 @@ "theme": "aed", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96351658 } }, { @@ -2317,7 +2355,8 @@ "theme": "charging_stations", "language": "en", "theme-creator": "" - } + }, + "id": 96351269 } }, { @@ -2376,7 +2415,8 @@ "theme": "bakeries", "language": "nl", "theme-creator": "" - } + }, + "id": 96344297 } }, { @@ -2435,7 +2475,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 96343222 } }, { @@ -2494,7 +2535,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 96331045 } }, { @@ -2553,7 +2595,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 96321611 } }, { @@ -2612,7 +2655,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 96311393 } }, { @@ -2671,7 +2715,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96310585 } }, { @@ -2730,7 +2775,8 @@ "theme": "climbing", "language": "nl", "theme-creator": "Christian Neumann " - } + }, + "id": 96309725 } }, { @@ -2789,7 +2835,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96299874 } }, { @@ -2848,7 +2895,8 @@ "theme": "Bankjes", "language": "nl", "theme-creator": "" - } + }, + "id": 96275189 } }, { @@ -2907,7 +2955,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96271520 } }, { @@ -2966,7 +3015,8 @@ "theme": "boomgaarden", "language": "nl", "theme-creator": "" - } + }, + "id": 96255037 } }, { @@ -3025,7 +3075,8 @@ "theme": "bookcases", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96248250 } }, { @@ -3084,7 +3135,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96197552 } }, { @@ -3143,7 +3195,8 @@ "theme": "boomgaarden", "language": "nl", "theme-creator": "" - } + }, + "id": 96181026 } }, { @@ -3202,7 +3255,8 @@ "theme": "boomgaarden", "language": "nl", "theme-creator": "" - } + }, + "id": 96178531 } }, { @@ -3261,7 +3315,8 @@ "theme": "climbing", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 96156366 } }, { @@ -3325,7 +3380,8 @@ "theme": "fietsstraten", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96140521 } }, { @@ -3384,7 +3440,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96136482 } }, { @@ -3443,7 +3500,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96134834 } }, { @@ -3502,7 +3560,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96119259 } }, { @@ -3561,7 +3620,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96118879 } }, { @@ -3625,7 +3685,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96118696 } }, { @@ -3689,7 +3750,8 @@ "theme": "artworks", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 96118491 } }, { @@ -3753,7 +3815,8 @@ "theme": "fritures", "language": "fr", "theme-creator": "" - } + }, + "id": 96118227 } }, { @@ -3812,7 +3875,8 @@ "theme": "artworks", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96089062 } }, { @@ -3871,7 +3935,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96085989 } }, { @@ -3930,7 +3995,8 @@ "theme": "artworks", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96082820 } }, { @@ -3989,7 +4055,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96079709 } }, { @@ -4048,7 +4115,8 @@ "theme": "fietsstraten", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96069566 } }, { @@ -4107,7 +4175,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95999002 } }, { @@ -4166,7 +4235,8 @@ "theme": "surveillance", "language": "nl", "theme-creator": "" - } + }, + "id": 95996514 } }, { @@ -4225,7 +4295,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 95945154 } }, { @@ -4284,7 +4355,8 @@ "theme": "aed", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 95942831 } }, { @@ -4343,7 +4415,8 @@ "theme": "bookcases", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 95941222 } }, { @@ -4402,7 +4475,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95933427 } }, { @@ -4461,7 +4535,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95923089 } }, { @@ -4520,7 +4595,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95912450 } }, { @@ -4584,7 +4660,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95899211 } }, { @@ -4648,7 +4725,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95899099 } }, { @@ -4712,7 +4790,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95898587 } }, { @@ -4776,7 +4855,8 @@ "theme": "fietsstraten", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95897696 } }, { @@ -4840,7 +4920,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95894829 } }, { @@ -4904,7 +4985,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95893983 } }, { @@ -4968,7 +5050,8 @@ "theme": "artworks", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95890882 } }, { @@ -5032,7 +5115,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95890041 } }, { @@ -5096,7 +5180,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95887704 } }, { @@ -5160,7 +5245,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95887280 } }, { @@ -5224,7 +5310,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95885883 } }, { @@ -5283,7 +5370,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95879791 } }, { @@ -5342,7 +5430,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95875912 } }, { @@ -5401,7 +5490,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95866902 } }, { @@ -5465,7 +5555,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95835460 } }, { @@ -5529,7 +5620,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95823381 } }, { @@ -5593,7 +5685,8 @@ "theme": "aed", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95810321 } }, { @@ -5652,7 +5745,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95768699 } }, { @@ -5716,7 +5810,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95768408 } }, { @@ -5775,7 +5870,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95758045 } }, { @@ -5834,7 +5930,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95755595 } }, { @@ -5893,7 +5990,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95747526 } }, { @@ -5957,7 +6055,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95724607 } }, { @@ -6021,7 +6120,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95719098 } }, { @@ -6080,7 +6180,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 95715532 } }, { @@ -6139,7 +6240,8 @@ "theme": "bookcases", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95701366 } }, { @@ -6198,7 +6300,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95676598 } }, { @@ -6262,7 +6365,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95671310 } }, { @@ -6321,7 +6425,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95652825 } }, { @@ -6380,7 +6485,8 @@ "theme": "surveillance", "language": "en", "theme-creator": "" - } + }, + "id": 95636305 } }, { @@ -6439,7 +6545,8 @@ "theme": "personal", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95627442 } }, { @@ -6498,7 +6605,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95575101 } }, { @@ -6562,7 +6670,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95563399 } }, { @@ -6621,7 +6730,8 @@ "theme": "fietsstraten", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95558462 } }, { @@ -6685,7 +6795,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95546223 } }, { @@ -6749,7 +6860,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95545333 } }, { @@ -6858,7 +6970,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 95441444 } }, { @@ -6917,7 +7030,8 @@ "theme": "surveillance", "language": "en", "theme-creator": "" - } + }, + "id": 95438534 } }, { @@ -6976,7 +7090,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95432954 } }, { @@ -7035,7 +7150,8 @@ "theme": "bookcases", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95410193 } }, { @@ -7094,7 +7210,8 @@ "theme": "lit", "language": "es", "theme-creator": "" - } + }, + "id": 95408103 } }, { @@ -7153,7 +7270,8 @@ "theme": "surveillance", "language": "en", "theme-creator": "" - } + }, + "id": 95379838 } }, { @@ -7212,7 +7330,8 @@ "theme": "lit", "language": "en", "theme-creator": "" - } + }, + "id": 95378664 } }, { @@ -7271,7 +7390,8 @@ "theme": "lit", "language": "ca", "theme-creator": "" - } + }, + "id": 95376444 } }, { @@ -7330,7 +7450,8 @@ "theme": "lits", "language": "en", "theme-creator": "" - } + }, + "id": 95375812 } }, { @@ -7389,7 +7510,8 @@ "theme": "lits", "language": "en", "theme-creator": "" - } + }, + "id": 95374751 } }, { @@ -7448,7 +7570,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 95369710 } }, { @@ -7507,7 +7630,8 @@ "theme": "personal", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95369636 } }, { @@ -7616,7 +7740,8 @@ "theme": "arbres_llefia", "language": "ca", "theme-creator": "" - } + }, + "id": 95368843 } }, { @@ -7675,7 +7800,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 95368199 } }, { @@ -7733,7 +7859,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 95367959 } }, { @@ -7792,7 +7919,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95362845 } }, { @@ -7851,7 +7979,8 @@ "theme": "lits", "language": "en", "theme-creator": "" - } + }, + "id": 95357564 } }, { @@ -7910,7 +8039,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95336723 } }, { @@ -7969,7 +8099,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95336591 } }, { @@ -8028,7 +8159,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95321733 } }, { @@ -8087,7 +8219,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95320020 } }, { @@ -8146,7 +8279,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95315093 } }, { @@ -8205,7 +8339,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95260980 } }, { @@ -8282,7 +8417,8 @@ "theme": "postalcode", "language": "es", "theme-creator": "" - } + }, + "id": 95250503 } }, { @@ -8341,7 +8477,8 @@ "theme": "kerbs", "language": "en", "theme-creator": "" - } + }, + "id": 95242530 } }, { @@ -8400,7 +8537,8 @@ "theme": "charging_stations", "language": "en", "theme-creator": "" - } + }, + "id": 95240617 } }, { @@ -8464,7 +8602,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95236418 } }, { @@ -8541,7 +8680,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95228146 } }, { @@ -8600,7 +8740,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95199073 } }, { @@ -8659,7 +8800,8 @@ "theme": "shops", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95184168 } }, { @@ -8723,7 +8865,8 @@ "theme": "benches", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 95178556 } }, { @@ -8782,7 +8925,8 @@ "theme": "surveillance", "language": "nl", "theme-creator": "" - } + }, + "id": 95149264 } }, { @@ -8841,7 +8985,8 @@ "theme": "artworks", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 95100929 } }, { @@ -8900,7 +9045,8 @@ "theme": "cyclofix", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 95090081 } } ] diff --git a/Docs/Tools/stats/stats.2020-5.json b/Docs/Tools/stats/stats.2020-5.json index 2bc1f95100..0df89de120 100644 --- a/Docs/Tools/stats/stats.2020-5.json +++ b/Docs/Tools/stats/stats.2020-5.json @@ -26,7 +26,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85964427 } }, { @@ -81,7 +82,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85964426 } }, { @@ -136,7 +138,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85964318 } }, { @@ -191,7 +194,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85964229 } }, { @@ -220,7 +224,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85961402 } }, { @@ -249,7 +254,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85961401 } }, { @@ -278,7 +284,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85961400 } }, { @@ -333,7 +340,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85961398 } }, { @@ -388,7 +396,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85959748 } }, { @@ -443,7 +452,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85959295 } }, { @@ -498,7 +508,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85959134 } }, { @@ -553,7 +564,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85959077 } }, { @@ -608,7 +620,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85914046 } }, { @@ -663,7 +676,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85912330 } }, { @@ -718,7 +732,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85911841 } }, { @@ -773,7 +788,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85907088 } }, { @@ -828,7 +844,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85906742 } }, { @@ -857,7 +874,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85906674 } }, { @@ -886,7 +904,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85906630 } }, { @@ -915,7 +934,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85906563 } }, { @@ -944,7 +964,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85906489 } }, { @@ -973,7 +994,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85906408 } }, { @@ -1002,7 +1024,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85906342 } }, { @@ -1057,7 +1080,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85905687 } }, { @@ -1112,7 +1136,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85905503 } }, { @@ -1141,7 +1166,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85905476 } }, { @@ -1196,7 +1222,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85903433 } }, { @@ -1225,7 +1252,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85903409 } }, { @@ -1254,7 +1282,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85903300 } }, { @@ -1328,7 +1357,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856178 } }, { @@ -1362,7 +1392,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856175 } }, { @@ -1396,7 +1427,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856166 } }, { @@ -1430,7 +1462,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856160 } }, { @@ -1464,7 +1497,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856151 } }, { @@ -1498,7 +1532,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856121 } }, { @@ -1532,7 +1567,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856110 } }, { @@ -1566,7 +1602,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856101 } }, { @@ -1600,7 +1637,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856094 } }, { @@ -1634,7 +1672,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856093 } }, { @@ -1668,7 +1707,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 85856075 } } ] diff --git a/Docs/Tools/stats/stats.2020-6.json b/Docs/Tools/stats/stats.2020-6.json index e3a6af1c46..6a498b6391 100644 --- a/Docs/Tools/stats/stats.2020-6.json +++ b/Docs/Tools/stats/stats.2020-6.json @@ -52,7 +52,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87286866 } }, { @@ -107,7 +108,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87264737 } }, { @@ -162,7 +164,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87264569 } }, { @@ -217,7 +220,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87264563 } }, { @@ -277,7 +281,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87253999 } }, { @@ -337,7 +342,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87253996 } }, { @@ -397,7 +403,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87253990 } }, { @@ -457,7 +464,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87253944 } }, { @@ -512,7 +520,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87235839 } }, { @@ -567,7 +576,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87230232 } }, { @@ -622,7 +632,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87230226 } }, { @@ -677,7 +688,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87230201 } }, { @@ -732,7 +744,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87108706 } }, { @@ -787,7 +800,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87108693 } }, { @@ -842,7 +856,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87108359 } }, { @@ -897,7 +912,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87079924 } }, { @@ -952,7 +968,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87052122 } }, { @@ -1007,7 +1024,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87052051 } }, { @@ -1062,7 +1080,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87051299 } }, { @@ -1117,7 +1136,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87051253 } }, { @@ -1172,7 +1192,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87051238 } }, { @@ -1227,7 +1248,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86882190 } }, { @@ -1282,7 +1304,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86831904 } }, { @@ -1337,7 +1360,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86515326 } }, { @@ -1392,7 +1416,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86514904 } }, { @@ -1447,7 +1472,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86486597 } }, { @@ -1502,7 +1528,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86481535 } }, { @@ -1557,7 +1584,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86481488 } }, { @@ -1612,7 +1640,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86480505 } }, { @@ -1667,7 +1696,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86479916 } }, { @@ -1722,7 +1752,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266570 } }, { @@ -1777,7 +1808,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266568 } }, { @@ -1806,7 +1838,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266565 } }, { @@ -1861,7 +1894,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266562 } }, { @@ -1890,7 +1924,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266554 } }, { @@ -1945,7 +1980,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266553 } }, { @@ -1974,7 +2010,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266546 } }, { @@ -2029,7 +2066,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266545 } }, { @@ -2084,7 +2122,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266534 } }, { @@ -2139,7 +2178,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266520 } }, { @@ -2194,7 +2234,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266517 } }, { @@ -2249,7 +2290,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266513 } }, { @@ -2304,7 +2346,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266494 } }, { @@ -2359,7 +2402,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266488 } }, { @@ -2414,7 +2458,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266479 } }, { @@ -2469,7 +2514,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266464 } }, { @@ -2524,7 +2570,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266458 } }, { @@ -2579,7 +2626,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266456 } }, { @@ -2634,7 +2682,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266446 } }, { @@ -2689,7 +2738,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266445 } }, { @@ -2744,7 +2794,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266428 } }, { @@ -2773,7 +2824,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266403 } }, { @@ -2828,7 +2880,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266402 } }, { @@ -2857,7 +2910,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266386 } }, { @@ -2912,7 +2966,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266383 } }, { @@ -2941,7 +2996,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266377 } }, { @@ -2996,7 +3052,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266376 } }, { @@ -3025,7 +3082,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266364 } }, { @@ -3080,7 +3138,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266356 } }, { @@ -3135,7 +3194,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266349 } }, { @@ -3190,7 +3250,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266343 } }, { @@ -3245,7 +3306,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266341 } }, { @@ -3274,7 +3336,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266340 } }, { @@ -3329,7 +3392,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266332 } }, { @@ -3358,7 +3422,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266321 } }, { @@ -3413,7 +3478,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266243 } }, { @@ -3468,7 +3534,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266219 } }, { @@ -3523,7 +3590,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266213 } }, { @@ -3578,7 +3646,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266204 } }, { @@ -3633,7 +3702,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266170 } }, { @@ -3688,7 +3758,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86266147 } }, { @@ -3743,7 +3814,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265999 } }, { @@ -3798,7 +3870,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265929 } }, { @@ -3853,7 +3926,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265868 } }, { @@ -3908,7 +3982,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265830 } }, { @@ -3963,7 +4038,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265829 } }, { @@ -4018,7 +4094,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265824 } }, { @@ -4073,7 +4150,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265819 } }, { @@ -4128,7 +4206,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265813 } }, { @@ -4183,7 +4262,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265807 } }, { @@ -4212,7 +4292,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265797 } }, { @@ -4241,7 +4322,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265796 } }, { @@ -4270,7 +4352,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265792 } }, { @@ -4299,7 +4382,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265790 } }, { @@ -4328,7 +4412,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265787 } }, { @@ -4357,7 +4442,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265781 } }, { @@ -4386,7 +4472,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265776 } }, { @@ -4415,7 +4502,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265769 } }, { @@ -4444,7 +4532,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265765 } }, { @@ -4473,7 +4562,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265760 } }, { @@ -4502,7 +4592,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265753 } }, { @@ -4531,7 +4622,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265750 } }, { @@ -4560,7 +4652,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265748 } }, { @@ -4589,7 +4682,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265742 } }, { @@ -4618,7 +4712,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265738 } }, { @@ -4647,7 +4742,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86265734 } }, { @@ -4702,7 +4798,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 86064773 } } ] diff --git a/Docs/Tools/stats/stats.2020-7.json b/Docs/Tools/stats/stats.2020-7.json index 5f5844dc75..d97e21429c 100644 --- a/Docs/Tools/stats/stats.2020-7.json +++ b/Docs/Tools/stats/stats.2020-7.json @@ -52,7 +52,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88794518 } }, { @@ -107,7 +108,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88754271 } }, { @@ -162,7 +164,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88754234 } }, { @@ -217,7 +220,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88754207 } }, { @@ -272,7 +276,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88750460 } }, { @@ -327,7 +332,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88750381 } }, { @@ -382,7 +388,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88750366 } }, { @@ -437,7 +444,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88750361 } }, { @@ -492,7 +500,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88748527 } }, { @@ -547,7 +556,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88748056 } }, { @@ -602,7 +612,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88748030 } }, { @@ -657,7 +668,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88748016 } }, { @@ -712,7 +724,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88747974 } }, { @@ -767,7 +780,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88747969 } }, { @@ -822,7 +836,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88747965 } }, { @@ -877,7 +892,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88747945 } }, { @@ -932,7 +948,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88744974 } }, { @@ -987,7 +1004,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88744357 } }, { @@ -1042,7 +1060,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88744261 } }, { @@ -1097,7 +1116,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88744181 } }, { @@ -1152,7 +1172,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88744059 } }, { @@ -1207,7 +1228,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88744048 } }, { @@ -1262,7 +1284,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743999 } }, { @@ -1317,7 +1340,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743938 } }, { @@ -1372,7 +1396,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743917 } }, { @@ -1427,7 +1452,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743597 } }, { @@ -1482,7 +1508,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743578 } }, { @@ -1537,7 +1564,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743502 } }, { @@ -1592,7 +1620,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743466 } }, { @@ -1647,7 +1676,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743312 } }, { @@ -1702,7 +1732,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743268 } }, { @@ -1757,7 +1788,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743199 } }, { @@ -1812,7 +1844,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743164 } }, { @@ -1867,7 +1900,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743115 } }, { @@ -1922,7 +1956,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88743111 } }, { @@ -1977,7 +2012,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88742929 } }, { @@ -2032,7 +2068,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88742716 } }, { @@ -2087,7 +2124,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88742504 } }, { @@ -2142,7 +2180,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88742207 } }, { @@ -2197,7 +2236,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88742202 } }, { @@ -2252,7 +2292,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88742179 } }, { @@ -2307,7 +2348,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88742167 } }, { @@ -2362,7 +2404,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88742123 } }, { @@ -2417,7 +2460,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88741393 } }, { @@ -2472,7 +2516,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88739524 } }, { @@ -2527,7 +2572,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88739490 } }, { @@ -2587,7 +2633,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88739123 } }, { @@ -2647,7 +2694,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88738090 } }, { @@ -2707,7 +2755,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88737432 } }, { @@ -2767,7 +2816,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88737401 } }, { @@ -2827,7 +2877,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88737279 } }, { @@ -2882,7 +2933,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88723923 } }, { @@ -2937,7 +2989,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88723523 } }, { @@ -2992,7 +3045,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88723393 } }, { @@ -3052,7 +3106,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88715990 } }, { @@ -3107,7 +3162,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88692073 } }, { @@ -3162,7 +3218,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88690311 } }, { @@ -3217,7 +3274,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88690277 } }, { @@ -3272,7 +3330,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88690274 } }, { @@ -3332,7 +3391,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88682537 } }, { @@ -3392,7 +3452,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88665312 } }, { @@ -3447,7 +3508,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88662734 } }, { @@ -3502,7 +3564,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88662651 } }, { @@ -3562,7 +3625,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88659808 } }, { @@ -3617,7 +3681,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88642425 } }, { @@ -3677,7 +3742,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88638766 } }, { @@ -3737,7 +3803,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88638714 } }, { @@ -3797,7 +3864,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88638606 } }, { @@ -3857,7 +3925,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88638535 } }, { @@ -3917,7 +3986,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88638498 } }, { @@ -3977,7 +4047,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88638472 } }, { @@ -4037,7 +4108,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88638316 } }, { @@ -4097,7 +4169,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88638297 } }, { @@ -4157,7 +4230,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88638230 } }, { @@ -4217,7 +4291,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88637985 } }, { @@ -4277,7 +4352,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88637922 } }, { @@ -4337,7 +4413,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88637773 } }, { @@ -4397,7 +4474,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88637746 } }, { @@ -4457,7 +4535,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88637712 } }, { @@ -4517,7 +4596,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88637651 } }, { @@ -4572,7 +4652,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88608906 } }, { @@ -4627,7 +4708,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88608855 } }, { @@ -4682,7 +4764,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88608824 } }, { @@ -4737,7 +4820,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88608738 } }, { @@ -4792,7 +4876,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88608683 } }, { @@ -4847,7 +4932,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88559889 } }, { @@ -4902,7 +4988,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88559843 } }, { @@ -4957,7 +5044,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88548536 } }, { @@ -5012,7 +5100,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88544628 } }, { @@ -5067,7 +5156,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88544526 } }, { @@ -5122,7 +5212,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88544416 } }, { @@ -5177,7 +5268,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88544285 } }, { @@ -5232,7 +5324,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88530703 } }, { @@ -5287,7 +5380,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88493841 } }, { @@ -5342,7 +5436,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88493811 } }, { @@ -5397,7 +5492,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88492559 } }, { @@ -5452,7 +5548,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88492531 } }, { @@ -5507,7 +5604,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88492520 } }, { @@ -5567,7 +5665,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88488537 } }, { @@ -5622,7 +5721,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88474036 } }, { @@ -5677,7 +5777,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88474011 } }, { @@ -5732,7 +5833,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88473981 } }, { @@ -5787,7 +5889,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88473952 } }, { @@ -5842,7 +5945,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88473927 } }, { @@ -5897,7 +6001,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88472115 } }, { @@ -5952,7 +6057,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88471946 } }, { @@ -6007,7 +6113,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88471917 } }, { @@ -6062,7 +6169,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88471866 } }, { @@ -6117,7 +6225,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88471799 } }, { @@ -6172,7 +6281,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88469758 } }, { @@ -6232,7 +6342,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-26T13:26:28.155558Z", - "metadata": {} + "metadata": {}, + "id": 88463397 } }, { @@ -6292,7 +6403,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88463396 } }, { @@ -6352,7 +6464,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88463392 } }, { @@ -6412,7 +6525,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88463389 } }, { @@ -6472,7 +6586,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88463374 } }, { @@ -6532,7 +6647,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88463360 } }, { @@ -6592,7 +6708,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88463342 } }, { @@ -6647,7 +6764,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88454525 } }, { @@ -6702,7 +6820,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88454371 } }, { @@ -6762,7 +6881,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88427583 } }, { @@ -6796,7 +6916,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88427564 } }, { @@ -6830,7 +6951,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88427525 } }, { @@ -6890,7 +7012,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88427490 } }, { @@ -6950,7 +7073,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88427471 } }, { @@ -7010,7 +7134,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88410084 } }, { @@ -7070,7 +7195,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88410045 } }, { @@ -7130,7 +7256,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88409955 } }, { @@ -7190,7 +7317,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88409912 } }, { @@ -7250,7 +7378,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88407127 } }, { @@ -7310,7 +7439,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88407088 } }, { @@ -7370,7 +7500,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88400271 } }, { @@ -7425,7 +7556,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88397910 } }, { @@ -7480,7 +7612,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88397901 } }, { @@ -7535,7 +7668,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88397894 } }, { @@ -7590,7 +7724,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88394725 } }, { @@ -7645,7 +7780,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88391388 } }, { @@ -7705,7 +7841,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88389632 } }, { @@ -7760,7 +7897,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88389604 } }, { @@ -7820,7 +7958,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88389573 } }, { @@ -7896,7 +8035,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88389541 } }, { @@ -7951,7 +8091,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88389537 } }, { @@ -8006,7 +8147,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88387523 } }, { @@ -8061,7 +8203,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88387475 } }, { @@ -8116,7 +8259,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88368192 } }, { @@ -8171,7 +8315,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88367965 } }, { @@ -8226,7 +8371,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88367957 } }, { @@ -8286,7 +8432,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365796 } }, { @@ -8346,7 +8493,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365747 } }, { @@ -8406,7 +8554,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365676 } }, { @@ -8466,7 +8615,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365588 } }, { @@ -8540,7 +8690,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365551 } }, { @@ -8600,7 +8751,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365530 } }, { @@ -8660,7 +8812,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365468 } }, { @@ -8720,7 +8873,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365406 } }, { @@ -8780,7 +8934,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365363 } }, { @@ -8840,7 +8995,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365327 } }, { @@ -8900,7 +9056,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88365269 } }, { @@ -8955,7 +9112,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88360957 } }, { @@ -9010,7 +9168,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88350361 } }, { @@ -9065,7 +9224,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88345106 } }, { @@ -9120,7 +9280,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88345038 } }, { @@ -9175,7 +9336,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88342567 } }, { @@ -9230,7 +9392,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88342446 } }, { @@ -9290,7 +9453,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88339968 } }, { @@ -9350,7 +9514,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88339958 } }, { @@ -9410,7 +9575,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88339919 } }, { @@ -9470,7 +9636,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88339889 } }, { @@ -9530,7 +9697,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88338703 } }, { @@ -9590,7 +9758,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T09:45:06.050390Z", - "metadata": {} + "metadata": {}, + "id": 88335541 } }, { @@ -9645,7 +9814,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T09:48:07.785464Z", - "metadata": {} + "metadata": {}, + "id": 88313973 } }, { @@ -9700,7 +9870,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T09:48:14.091706Z", - "metadata": {} + "metadata": {}, + "id": 88313944 } }, { @@ -9760,7 +9931,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88303789 } }, { @@ -9820,7 +9992,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88303738 } }, { @@ -9875,7 +10048,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T10:16:23.342892Z", - "metadata": {} + "metadata": {}, + "id": 88302519 } }, { @@ -9930,7 +10104,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T10:19:07.999934Z", - "metadata": {} + "metadata": {}, + "id": 88302462 } }, { @@ -9985,7 +10160,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T10:17:42.390588Z", - "metadata": {} + "metadata": {}, + "id": 88302417 } }, { @@ -10040,7 +10216,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T07:32:38.462660Z", - "metadata": {} + "metadata": {}, + "id": 88302159 } }, { @@ -10095,7 +10272,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T10:17:29.418242Z", - "metadata": {} + "metadata": {}, + "id": 88302139 } }, { @@ -10150,7 +10328,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88302052 } }, { @@ -10205,7 +10384,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T07:40:36.040133Z", - "metadata": {} + "metadata": {}, + "id": 88301987 } }, { @@ -10260,7 +10440,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T07:46:36.482772Z", - "metadata": {} + "metadata": {}, + "id": 88301968 } }, { @@ -10315,7 +10496,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T07:48:18.056422Z", - "metadata": {} + "metadata": {}, + "id": 88301869 } }, { @@ -10370,7 +10552,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:00:15.983082Z", - "metadata": {} + "metadata": {}, + "id": 88301822 } }, { @@ -10425,7 +10608,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:00:50.080733Z", - "metadata": {} + "metadata": {}, + "id": 88301752 } }, { @@ -10480,7 +10664,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:06:40.094999Z", - "metadata": {} + "metadata": {}, + "id": 88301726 } }, { @@ -10535,7 +10720,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T12:15:13.514009Z", - "metadata": {} + "metadata": {}, + "id": 88301712 } }, { @@ -10590,7 +10776,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:07:01.261634Z", - "metadata": {} + "metadata": {}, + "id": 88301709 } }, { @@ -10645,7 +10832,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:07:05.811734Z", - "metadata": {} + "metadata": {}, + "id": 88301686 } }, { @@ -10700,7 +10888,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:11:48.646419Z", - "metadata": {} + "metadata": {}, + "id": 88301656 } }, { @@ -10755,7 +10944,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T12:16:15.025217Z", - "metadata": {} + "metadata": {}, + "id": 88301640 } }, { @@ -10810,7 +11000,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88301617 } }, { @@ -10865,7 +11056,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88301583 } }, { @@ -10920,7 +11112,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88301552 } }, { @@ -10975,7 +11168,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:16:20.954526Z", - "metadata": {} + "metadata": {}, + "id": 88301524 } }, { @@ -11030,7 +11224,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:15:54.904411Z", - "metadata": {} + "metadata": {}, + "id": 88301396 } }, { @@ -11085,7 +11280,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:16:37.198343Z", - "metadata": {} + "metadata": {}, + "id": 88301372 } }, { @@ -11140,7 +11336,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88301199 } }, { @@ -11195,7 +11392,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88301166 } }, { @@ -11250,7 +11448,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88300566 } }, { @@ -11310,7 +11509,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T12:18:44.466702Z", - "metadata": {} + "metadata": {}, + "id": 88300471 } }, { @@ -11370,7 +11570,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T14:44:10.490907Z", - "metadata": {} + "metadata": {}, + "id": 88300406 } }, { @@ -11425,7 +11626,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T14:52:59.576796Z", - "metadata": {} + "metadata": {}, + "id": 88300402 } }, { @@ -11459,7 +11661,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88300392 } }, { @@ -11519,7 +11722,8 @@ "harmful": true, "checked": true, "check_date": "2020-07-23T08:25:02.544702Z", - "metadata": {} + "metadata": {}, + "id": 88300349 } }, { @@ -11579,7 +11783,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:25:27.242296Z", - "metadata": {} + "metadata": {}, + "id": 88300278 } }, { @@ -11634,7 +11839,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T14:56:11.250065Z", - "metadata": {} + "metadata": {}, + "id": 88300258 } }, { @@ -11694,7 +11900,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88300240 } }, { @@ -11754,7 +11961,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T12:46:57.994633Z", - "metadata": {} + "metadata": {}, + "id": 88300158 } }, { @@ -11809,7 +12017,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T12:47:27.139545Z", - "metadata": {} + "metadata": {}, + "id": 88300151 } }, { @@ -11869,7 +12078,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T12:47:46.336390Z", - "metadata": {} + "metadata": {}, + "id": 88300150 } }, { @@ -11903,7 +12113,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88300135 } }, { @@ -11958,7 +12169,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88300098 } }, { @@ -12018,7 +12230,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T13:41:06.539901Z", - "metadata": {} + "metadata": {}, + "id": 88300085 } }, { @@ -12073,7 +12286,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T15:02:25.257438Z", - "metadata": {} + "metadata": {}, + "id": 88300073 } }, { @@ -12128,7 +12342,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T15:02:48.119341Z", - "metadata": {} + "metadata": {}, + "id": 88300062 } }, { @@ -12183,7 +12398,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88300049 } }, { @@ -12238,7 +12454,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88300040 } }, { @@ -12293,7 +12510,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88300007 } }, { @@ -12348,7 +12566,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T12:51:31.637962Z", - "metadata": {} + "metadata": {}, + "id": 88299980 } }, { @@ -12403,7 +12622,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299961 } }, { @@ -12458,7 +12678,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299960 } }, { @@ -12513,7 +12734,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299932 } }, { @@ -12568,7 +12790,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299869 } }, { @@ -12623,7 +12846,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299856 } }, { @@ -12678,7 +12902,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299838 } }, { @@ -12733,7 +12958,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299816 } }, { @@ -12788,7 +13014,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299810 } }, { @@ -12843,7 +13070,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299797 } }, { @@ -12898,7 +13126,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299775 } }, { @@ -12953,7 +13182,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299756 } }, { @@ -12987,7 +13217,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299755 } }, { @@ -13042,7 +13273,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299753 } }, { @@ -13076,7 +13308,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299749 } }, { @@ -13131,7 +13364,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299742 } }, { @@ -13186,7 +13420,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299733 } }, { @@ -13241,7 +13476,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299710 } }, { @@ -13296,7 +13532,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299707 } }, { @@ -13351,7 +13588,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299703 } }, { @@ -13406,7 +13644,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299677 } }, { @@ -13461,7 +13700,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299663 } }, { @@ -13516,7 +13756,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299657 } }, { @@ -13571,7 +13812,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299619 } }, { @@ -13626,7 +13868,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:42:40.508989Z", - "metadata": {} + "metadata": {}, + "id": 88299615 } }, { @@ -13681,7 +13924,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299612 } }, { @@ -13741,7 +13985,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299583 } }, { @@ -13801,7 +14046,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-26T13:34:33.580348Z", - "metadata": {} + "metadata": {}, + "id": 88299576 } }, { @@ -13856,7 +14102,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299571 } }, { @@ -13911,7 +14158,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299547 } }, { @@ -13966,7 +14214,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299545 } }, { @@ -14021,7 +14270,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299540 } }, { @@ -14081,7 +14331,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299530 } }, { @@ -14136,7 +14387,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299529 } }, { @@ -14191,7 +14443,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299514 } }, { @@ -14246,7 +14499,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299511 } }, { @@ -14301,7 +14555,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299466 } }, { @@ -14356,7 +14611,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299438 } }, { @@ -14411,7 +14667,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299391 } }, { @@ -14466,7 +14723,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299389 } }, { @@ -14521,7 +14779,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299375 } }, { @@ -14576,7 +14835,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299327 } }, { @@ -14631,7 +14891,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299323 } }, { @@ -14686,7 +14947,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299322 } }, { @@ -14746,7 +15008,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-26T13:37:33.491283Z", - "metadata": {} + "metadata": {}, + "id": 88299307 } }, { @@ -14801,7 +15064,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299298 } }, { @@ -14856,7 +15120,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299256 } }, { @@ -14916,7 +15181,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299231 } }, { @@ -14976,7 +15242,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T09:50:47.148698Z", - "metadata": {} + "metadata": {}, + "id": 88299187 } }, { @@ -15036,7 +15303,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:55:21.202961Z", - "metadata": {} + "metadata": {}, + "id": 88299166 } }, { @@ -15091,7 +15359,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299143 } }, { @@ -15151,7 +15420,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T14:01:09.664509Z", - "metadata": {} + "metadata": {}, + "id": 88299142 } }, { @@ -15206,7 +15476,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299083 } }, { @@ -15261,7 +15532,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-26T13:38:16.332497Z", - "metadata": {} + "metadata": {}, + "id": 88299065 } }, { @@ -15321,7 +15593,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299062 } }, { @@ -15376,7 +15649,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299057 } }, { @@ -15431,7 +15705,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299036 } }, { @@ -15486,7 +15761,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299018 } }, { @@ -15546,7 +15822,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88299013 } }, { @@ -15601,7 +15878,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298994 } }, { @@ -15656,7 +15934,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298989 } }, { @@ -15716,7 +15995,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298981 } }, { @@ -15771,7 +16051,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298978 } }, { @@ -15826,7 +16107,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298964 } }, { @@ -15886,7 +16168,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T15:05:56.894813Z", - "metadata": {} + "metadata": {}, + "id": 88298949 } }, { @@ -15941,7 +16224,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298947 } }, { @@ -16001,7 +16285,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T15:07:42.553547Z", - "metadata": {} + "metadata": {}, + "id": 88298943 } }, { @@ -16061,7 +16346,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298934 } }, { @@ -16116,7 +16402,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298923 } }, { @@ -16171,7 +16458,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298901 } }, { @@ -16226,7 +16514,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298897 } }, { @@ -16281,7 +16570,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298887 } }, { @@ -16336,7 +16626,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298868 } }, { @@ -16396,7 +16687,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298858 } }, { @@ -16451,7 +16743,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T15:10:14.994859Z", - "metadata": {} + "metadata": {}, + "id": 88298836 } }, { @@ -16511,7 +16804,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298835 } }, { @@ -16566,7 +16860,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298789 } }, { @@ -16626,7 +16921,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298757 } }, { @@ -16686,7 +16982,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298756 } }, { @@ -16741,7 +17038,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298754 } }, { @@ -16801,7 +17099,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298740 } }, { @@ -16861,7 +17160,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298735 } }, { @@ -16916,7 +17216,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298695 } }, { @@ -16971,7 +17272,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298633 } }, { @@ -17026,7 +17328,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298584 } }, { @@ -17086,7 +17389,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:22:08.971287Z", - "metadata": {} + "metadata": {}, + "id": 88298521 } }, { @@ -17141,7 +17445,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298515 } }, { @@ -17196,7 +17501,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298484 } }, { @@ -17251,7 +17557,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T09:40:45.384789Z", - "metadata": {} + "metadata": {}, + "id": 88298467 } }, { @@ -17306,7 +17613,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298466 } }, { @@ -17361,7 +17669,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298465 } }, { @@ -17416,7 +17725,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-22T15:10:29.077113Z", - "metadata": {} + "metadata": {}, + "id": 88298444 } }, { @@ -17476,7 +17786,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298438 } }, { @@ -17531,7 +17842,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298431 } }, { @@ -17586,7 +17898,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298426 } }, { @@ -17641,7 +17954,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298402 } }, { @@ -17696,7 +18010,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298373 } }, { @@ -17751,7 +18066,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-26T13:39:47.262564Z", - "metadata": {} + "metadata": {}, + "id": 88298362 } }, { @@ -17811,7 +18127,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298359 } }, { @@ -17866,7 +18183,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298353 } }, { @@ -17926,7 +18244,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298348 } }, { @@ -17981,7 +18300,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298327 } }, { @@ -18041,7 +18361,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T08:49:20.143472Z", - "metadata": {} + "metadata": {}, + "id": 88298306 } }, { @@ -18096,7 +18417,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298295 } }, { @@ -18151,7 +18473,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298263 } }, { @@ -18206,7 +18529,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:17:52.654795Z", - "metadata": {} + "metadata": {}, + "id": 88298258 } }, { @@ -18261,7 +18585,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298226 } }, { @@ -18316,7 +18641,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:18:23.441374Z", - "metadata": {} + "metadata": {}, + "id": 88298224 } }, { @@ -18376,7 +18702,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298190 } }, { @@ -18436,7 +18763,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298180 } }, { @@ -18491,7 +18819,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298175 } }, { @@ -18546,7 +18875,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:18:49.263249Z", - "metadata": {} + "metadata": {}, + "id": 88298172 } }, { @@ -18601,7 +18931,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298169 } }, { @@ -18661,7 +18992,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T09:10:53.288272Z", - "metadata": {} + "metadata": {}, + "id": 88298165 } }, { @@ -18716,7 +19048,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298153 } }, { @@ -18771,7 +19104,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:18:52.414264Z", - "metadata": {} + "metadata": {}, + "id": 88298138 } }, { @@ -18826,7 +19160,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298116 } }, { @@ -18886,7 +19221,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298094 } }, { @@ -18941,7 +19277,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298086 } }, { @@ -18996,7 +19333,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298063 } }, { @@ -19056,7 +19394,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298054 } }, { @@ -19111,7 +19450,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298052 } }, { @@ -19171,7 +19511,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:22:43.443808Z", - "metadata": {} + "metadata": {}, + "id": 88298037 } }, { @@ -19226,7 +19567,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298036 } }, { @@ -19286,7 +19628,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88298021 } }, { @@ -19346,7 +19689,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:34:18.242383Z", - "metadata": {} + "metadata": {}, + "id": 88298013 } }, { @@ -19406,7 +19750,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:23:16.017042Z", - "metadata": {} + "metadata": {}, + "id": 88297993 } }, { @@ -19466,7 +19811,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T14:05:43.310222Z", - "metadata": {} + "metadata": {}, + "id": 88297982 } }, { @@ -19521,7 +19867,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T14:08:39.707876Z", - "metadata": {} + "metadata": {}, + "id": 88297979 } }, { @@ -19576,7 +19923,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T14:09:25.461014Z", - "metadata": {} + "metadata": {}, + "id": 88297964 } }, { @@ -19631,7 +19979,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T14:10:40.745869Z", - "metadata": {} + "metadata": {}, + "id": 88297936 } }, { @@ -19691,7 +20040,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T14:11:03.000656Z", - "metadata": {} + "metadata": {}, + "id": 88297927 } }, { @@ -19746,7 +20096,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T14:38:28.984299Z", - "metadata": {} + "metadata": {}, + "id": 88297914 } }, { @@ -19801,7 +20152,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297907 } }, { @@ -19856,7 +20208,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297905 } }, { @@ -19911,7 +20264,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297902 } }, { @@ -19971,7 +20325,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297884 } }, { @@ -20026,7 +20381,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297877 } }, { @@ -20081,7 +20437,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297868 } }, { @@ -20136,7 +20493,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297857 } }, { @@ -20191,7 +20549,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297850 } }, { @@ -20251,7 +20610,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297831 } }, { @@ -20306,7 +20666,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297825 } }, { @@ -20361,7 +20722,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297810 } }, { @@ -20421,7 +20783,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297804 } }, { @@ -20476,7 +20839,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297769 } }, { @@ -20536,7 +20900,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297765 } }, { @@ -20596,7 +20961,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297761 } }, { @@ -20651,7 +21017,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297716 } }, { @@ -20706,7 +21073,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297691 } }, { @@ -20766,7 +21134,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297690 } }, { @@ -20821,7 +21190,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297688 } }, { @@ -20881,7 +21251,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297685 } }, { @@ -20941,7 +21312,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297684 } }, { @@ -20996,7 +21368,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297651 } }, { @@ -21056,7 +21429,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297619 } }, { @@ -21111,7 +21485,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297617 } }, { @@ -21166,7 +21541,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297582 } }, { @@ -21226,7 +21602,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T13:46:38.175353Z", - "metadata": {} + "metadata": {}, + "id": 88297546 } }, { @@ -21286,7 +21663,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T13:55:45.974040Z", - "metadata": {} + "metadata": {}, + "id": 88297501 } }, { @@ -21341,7 +21719,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T13:57:45.671847Z", - "metadata": {} + "metadata": {}, + "id": 88297472 } }, { @@ -21401,7 +21780,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T14:00:08.442564Z", - "metadata": {} + "metadata": {}, + "id": 88297470 } }, { @@ -21461,7 +21841,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T14:00:40.308206Z", - "metadata": {} + "metadata": {}, + "id": 88297467 } }, { @@ -21516,7 +21897,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-21T14:01:38.069564Z", - "metadata": {} + "metadata": {}, + "id": 88297461 } }, { @@ -21571,7 +21953,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297449 } }, { @@ -21626,7 +22009,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297448 } }, { @@ -21681,7 +22065,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297437 } }, { @@ -21736,7 +22121,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297424 } }, { @@ -21796,7 +22182,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297418 } }, { @@ -21851,7 +22238,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297371 } }, { @@ -21911,7 +22299,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:29:02.159940Z", - "metadata": {} + "metadata": {}, + "id": 88297370 } }, { @@ -21971,7 +22360,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297356 } }, { @@ -22031,7 +22421,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297346 } }, { @@ -22086,7 +22477,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297332 } }, { @@ -22146,7 +22538,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297330 } }, { @@ -22201,7 +22594,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297323 } }, { @@ -22256,7 +22650,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297314 } }, { @@ -22311,7 +22706,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:30:21.757564Z", - "metadata": {} + "metadata": {}, + "id": 88297301 } }, { @@ -22371,7 +22767,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:31:24.383477Z", - "metadata": {} + "metadata": {}, + "id": 88297298 } }, { @@ -22426,7 +22823,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:31:37.211444Z", - "metadata": {} + "metadata": {}, + "id": 88297297 } }, { @@ -22481,7 +22879,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:31:43.364973Z", - "metadata": {} + "metadata": {}, + "id": 88297294 } }, { @@ -22536,7 +22935,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297239 } }, { @@ -22591,7 +22991,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297232 } }, { @@ -22651,7 +23052,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297194 } }, { @@ -22706,7 +23108,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297184 } }, { @@ -22766,7 +23169,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297167 } }, { @@ -22826,7 +23230,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297153 } }, { @@ -22886,7 +23291,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297150 } }, { @@ -22946,7 +23352,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297148 } }, { @@ -23001,7 +23408,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297139 } }, { @@ -23056,7 +23464,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297136 } }, { @@ -23116,7 +23525,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297115 } }, { @@ -23150,7 +23560,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297105 } }, { @@ -23205,7 +23616,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-23T06:24:26.714875Z", - "metadata": {} + "metadata": {}, + "id": 88297104 } }, { @@ -23260,7 +23672,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297088 } }, { @@ -23294,7 +23707,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297072 } }, { @@ -23349,7 +23763,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297061 } }, { @@ -23404,7 +23819,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297053 } }, { @@ -23464,7 +23880,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297045 } }, { @@ -23498,7 +23915,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88297042 } }, { @@ -23553,7 +23971,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296996 } }, { @@ -23608,7 +24027,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296988 } }, { @@ -23668,7 +24088,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296985 } }, { @@ -23723,7 +24144,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296965 } }, { @@ -23778,7 +24200,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296961 } }, { @@ -23833,7 +24256,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296958 } }, { @@ -23888,7 +24312,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:32:11.956984Z", - "metadata": {} + "metadata": {}, + "id": 88296951 } }, { @@ -23948,7 +24373,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296944 } }, { @@ -24008,7 +24434,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296933 } }, { @@ -24042,7 +24469,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296920 } }, { @@ -24076,7 +24504,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296892 } }, { @@ -24131,7 +24560,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296888 } }, { @@ -24191,7 +24621,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296870 } }, { @@ -24246,7 +24677,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296833 } }, { @@ -24306,7 +24738,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296820 } }, { @@ -24361,7 +24794,8 @@ "harmful": true, "checked": true, "check_date": "2020-07-21T13:40:38.911656Z", - "metadata": {} + "metadata": {}, + "id": 88296778 } }, { @@ -24416,7 +24850,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296771 } }, { @@ -24476,7 +24911,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296738 } }, { @@ -24536,7 +24972,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296732 } }, { @@ -24591,7 +25028,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296729 } }, { @@ -24646,7 +25084,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296716 } }, { @@ -24706,7 +25145,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296690 } }, { @@ -24766,7 +25206,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:35:50.582856Z", - "metadata": {} + "metadata": {}, + "id": 88296677 } }, { @@ -24821,7 +25262,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:40:25.930045Z", - "metadata": {} + "metadata": {}, + "id": 88296651 } }, { @@ -24855,7 +25297,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296650 } }, { @@ -24915,7 +25358,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:35:47.121138Z", - "metadata": {} + "metadata": {}, + "id": 88296631 } }, { @@ -24970,7 +25414,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296626 } }, { @@ -25030,7 +25475,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296620 } }, { @@ -25090,7 +25536,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296609 } }, { @@ -25145,7 +25592,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296608 } }, { @@ -25200,7 +25648,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:30:14.788814Z", - "metadata": {} + "metadata": {}, + "id": 88296594 } }, { @@ -25255,7 +25704,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:48:00.063433Z", - "metadata": {} + "metadata": {}, + "id": 88296590 } }, { @@ -25315,7 +25765,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:36:54.495699Z", - "metadata": {} + "metadata": {}, + "id": 88296584 } }, { @@ -25370,7 +25821,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296554 } }, { @@ -25425,7 +25877,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T07:58:38.083435Z", - "metadata": {} + "metadata": {}, + "id": 88296550 } }, { @@ -25485,7 +25938,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:38:10.354868Z", - "metadata": {} + "metadata": {}, + "id": 88296533 } }, { @@ -25545,7 +25999,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296531 } }, { @@ -25605,7 +26060,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296530 } }, { @@ -25660,7 +26116,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296519 } }, { @@ -25720,7 +26177,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296511 } }, { @@ -25780,7 +26238,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296497 } }, { @@ -25840,7 +26299,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296486 } }, { @@ -25895,7 +26355,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296477 } }, { @@ -25955,7 +26416,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296474 } }, { @@ -26010,7 +26472,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296470 } }, { @@ -26065,7 +26528,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296459 } }, { @@ -26120,7 +26584,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:00:51.339445Z", - "metadata": {} + "metadata": {}, + "id": 88296455 } }, { @@ -26175,7 +26640,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296454 } }, { @@ -26230,7 +26696,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296441 } }, { @@ -26285,7 +26752,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296431 } }, { @@ -26340,7 +26808,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296425 } }, { @@ -26395,7 +26864,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296424 } }, { @@ -26455,7 +26925,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296413 } }, { @@ -26515,7 +26986,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296406 } }, { @@ -26575,7 +27047,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296391 } }, { @@ -26635,7 +27108,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296390 } }, { @@ -26695,7 +27169,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296387 } }, { @@ -26750,7 +27225,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296385 } }, { @@ -26810,7 +27286,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296380 } }, { @@ -26865,7 +27342,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296379 } }, { @@ -26925,7 +27403,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296363 } }, { @@ -26980,7 +27459,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296347 } }, { @@ -27035,7 +27515,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:04:24.718389Z", - "metadata": {} + "metadata": {}, + "id": 88296343 } }, { @@ -27095,7 +27576,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296341 } }, { @@ -27155,7 +27637,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296332 } }, { @@ -27210,7 +27693,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296329 } }, { @@ -27270,7 +27754,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296324 } }, { @@ -27330,7 +27815,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296319 } }, { @@ -27390,7 +27876,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:04:48.429391Z", - "metadata": {} + "metadata": {}, + "id": 88296298 } }, { @@ -27445,7 +27932,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296282 } }, { @@ -27500,7 +27988,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296281 } }, { @@ -27560,7 +28049,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296258 } }, { @@ -27620,7 +28110,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:05:34.347451Z", - "metadata": {} + "metadata": {}, + "id": 88296231 } }, { @@ -27680,7 +28171,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296230 } }, { @@ -27740,7 +28232,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296203 } }, { @@ -27800,7 +28293,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:05:57.673550Z", - "metadata": {} + "metadata": {}, + "id": 88296181 } }, { @@ -27860,7 +28354,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296180 } }, { @@ -27915,7 +28410,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296178 } }, { @@ -27975,7 +28471,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296174 } }, { @@ -28030,7 +28527,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296172 } }, { @@ -28085,7 +28583,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:09:08.400538Z", - "metadata": {} + "metadata": {}, + "id": 88296165 } }, { @@ -28140,7 +28639,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296156 } }, { @@ -28195,7 +28695,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296155 } }, { @@ -28250,7 +28751,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:14:56.984141Z", - "metadata": {} + "metadata": {}, + "id": 88296143 } }, { @@ -28305,7 +28807,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296126 } }, { @@ -28365,7 +28868,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296098 } }, { @@ -28420,7 +28924,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296094 } }, { @@ -28480,7 +28985,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296073 } }, { @@ -28540,7 +29046,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296050 } }, { @@ -28595,7 +29102,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296036 } }, { @@ -28655,7 +29163,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296008 } }, { @@ -28710,7 +29219,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88296006 } }, { @@ -28770,7 +29280,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295987 } }, { @@ -28830,7 +29341,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295944 } }, { @@ -28890,7 +29402,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295933 } }, { @@ -28945,7 +29458,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295908 } }, { @@ -29000,7 +29514,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295895 } }, { @@ -29055,7 +29570,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295875 } }, { @@ -29110,7 +29626,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295863 } }, { @@ -29165,7 +29682,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295840 } }, { @@ -29220,7 +29738,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295839 } }, { @@ -29280,7 +29799,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295833 } }, { @@ -29340,7 +29860,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295825 } }, { @@ -29400,7 +29921,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295820 } }, { @@ -29460,7 +29982,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295795 } }, { @@ -29515,7 +30038,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295765 } }, { @@ -29570,7 +30094,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295749 } }, { @@ -29625,7 +30150,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295743 } }, { @@ -29654,7 +30180,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295741 } }, { @@ -29714,7 +30241,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295676 } }, { @@ -29769,7 +30297,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295646 } }, { @@ -29824,7 +30353,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295618 } }, { @@ -29884,7 +30414,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295616 } }, { @@ -29944,7 +30475,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295615 } }, { @@ -29999,7 +30531,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295583 } }, { @@ -30054,7 +30587,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295580 } }, { @@ -30114,7 +30648,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295578 } }, { @@ -30169,7 +30704,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295537 } }, { @@ -30229,7 +30765,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295526 } }, { @@ -30289,7 +30826,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295517 } }, { @@ -30349,7 +30887,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295496 } }, { @@ -30383,7 +30922,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295487 } }, { @@ -30443,7 +30983,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295473 } }, { @@ -30498,7 +31039,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295443 } }, { @@ -30558,7 +31100,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295435 } }, { @@ -30618,7 +31161,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295432 } }, { @@ -30673,7 +31217,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295402 } }, { @@ -30733,7 +31278,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295388 } }, { @@ -30793,7 +31339,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295366 } }, { @@ -30848,7 +31395,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295364 } }, { @@ -30908,7 +31456,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295347 } }, { @@ -30968,7 +31517,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295294 } }, { @@ -31023,7 +31573,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295245 } }, { @@ -31083,7 +31634,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295235 } }, { @@ -31138,7 +31690,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295233 } }, { @@ -31198,7 +31751,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295190 } }, { @@ -31258,7 +31812,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295174 } }, { @@ -31318,7 +31873,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295163 } }, { @@ -31378,7 +31934,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295135 } }, { @@ -31433,7 +31990,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295127 } }, { @@ -31467,7 +32025,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295122 } }, { @@ -31522,7 +32081,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295121 } }, { @@ -31582,7 +32142,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295119 } }, { @@ -31616,7 +32177,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295113 } }, { @@ -31650,7 +32212,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295093 } }, { @@ -31705,7 +32268,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295078 } }, { @@ -31765,7 +32329,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295070 } }, { @@ -31825,7 +32390,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295046 } }, { @@ -31880,7 +32446,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295040 } }, { @@ -31914,7 +32481,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295035 } }, { @@ -31974,7 +32542,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88295010 } }, { @@ -32008,7 +32577,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294999 } }, { @@ -32063,7 +32633,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294985 } }, { @@ -32123,7 +32694,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294938 } }, { @@ -32183,7 +32755,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294923 } }, { @@ -32238,7 +32811,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294920 } }, { @@ -32298,7 +32872,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294914 } }, { @@ -32353,7 +32928,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294909 } }, { @@ -32413,7 +32989,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294895 } }, { @@ -32473,7 +33050,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294893 } }, { @@ -32528,7 +33106,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294847 } }, { @@ -32588,7 +33167,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294838 } }, { @@ -32648,7 +33228,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294795 } }, { @@ -32708,7 +33289,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294779 } }, { @@ -32737,7 +33319,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294774 } }, { @@ -32771,7 +33354,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294707 } }, { @@ -32831,7 +33415,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294704 } }, { @@ -32891,7 +33476,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294698 } }, { @@ -32951,7 +33537,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294695 } }, { @@ -33011,7 +33598,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294673 } }, { @@ -33066,7 +33654,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294664 } }, { @@ -33126,7 +33715,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294652 } }, { @@ -33186,7 +33776,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294650 } }, { @@ -33215,7 +33806,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294638 } }, { @@ -33270,7 +33862,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294616 } }, { @@ -33330,7 +33923,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294597 } }, { @@ -33390,7 +33984,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294536 } }, { @@ -33450,7 +34045,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294510 } }, { @@ -33505,7 +34101,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294498 } }, { @@ -33560,7 +34157,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294449 } }, { @@ -33615,7 +34213,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294434 } }, { @@ -33670,7 +34269,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294416 } }, { @@ -33725,7 +34325,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294409 } }, { @@ -33780,7 +34381,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294377 } }, { @@ -33840,7 +34442,8 @@ "harmful": false, "checked": true, "check_date": "2020-07-27T08:47:23.644005Z", - "metadata": {} + "metadata": {}, + "id": 88294375 } }, { @@ -33895,7 +34498,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294371 } }, { @@ -33955,7 +34559,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294369 } }, { @@ -34010,7 +34615,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294357 } }, { @@ -34065,7 +34671,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294317 } }, { @@ -34120,7 +34727,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294294 } }, { @@ -34180,7 +34788,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294275 } }, { @@ -34235,7 +34844,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294256 } }, { @@ -34295,7 +34905,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294250 } }, { @@ -34355,7 +34966,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294237 } }, { @@ -34410,7 +35022,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294229 } }, { @@ -34465,7 +35078,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294188 } }, { @@ -34520,7 +35134,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294140 } }, { @@ -34580,7 +35195,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294113 } }, { @@ -34640,7 +35256,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294072 } }, { @@ -34695,7 +35312,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294054 } }, { @@ -34755,7 +35373,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294052 } }, { @@ -34815,7 +35434,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88294000 } }, { @@ -34870,7 +35490,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293988 } }, { @@ -34925,7 +35546,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293861 } }, { @@ -34980,7 +35602,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293818 } }, { @@ -35035,7 +35658,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293786 } }, { @@ -35090,7 +35714,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293643 } }, { @@ -35145,7 +35770,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293587 } }, { @@ -35200,7 +35826,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293504 } }, { @@ -35255,7 +35882,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293492 } }, { @@ -35310,7 +35938,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293452 } }, { @@ -35365,7 +35994,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293375 } }, { @@ -35420,7 +36050,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293294 } }, { @@ -35475,7 +36106,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88293250 } }, { @@ -35535,7 +36167,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88292596 } }, { @@ -35590,7 +36223,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88292458 } }, { @@ -35650,7 +36284,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88287986 } }, { @@ -35710,7 +36345,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88287927 } }, { @@ -35770,7 +36406,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88287853 } }, { @@ -35830,7 +36467,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88287725 } }, { @@ -35890,7 +36528,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88287663 } }, { @@ -35950,7 +36589,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88287617 } }, { @@ -36010,7 +36650,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88287607 } }, { @@ -36070,7 +36711,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88287560 } }, { @@ -36146,7 +36788,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88287536 } }, { @@ -36206,7 +36849,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88287452 } }, { @@ -36261,7 +36905,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88263495 } }, { @@ -36316,7 +36961,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88263438 } }, { @@ -36371,7 +37017,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88263422 } }, { @@ -36426,7 +37073,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88262279 } }, { @@ -36481,7 +37129,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88262262 } }, { @@ -36536,7 +37185,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88262204 } }, { @@ -36591,7 +37241,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88262162 } }, { @@ -36646,7 +37297,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88262121 } }, { @@ -36701,7 +37353,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88262037 } }, { @@ -36761,7 +37414,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88261900 } }, { @@ -36821,7 +37475,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88261857 } }, { @@ -36881,7 +37536,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88261832 } }, { @@ -36941,7 +37597,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88261781 } }, { @@ -37017,7 +37674,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88261756 } }, { @@ -37072,7 +37730,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88261721 } }, { @@ -37127,7 +37786,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88261641 } }, { @@ -37182,7 +37842,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88261466 } }, { @@ -37242,7 +37903,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88254014 } }, { @@ -37302,7 +37964,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88253210 } }, { @@ -37362,7 +38025,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88252889 } }, { @@ -37417,7 +38081,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88247884 } }, { @@ -37472,7 +38137,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88247807 } }, { @@ -37527,7 +38193,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88245109 } }, { @@ -37587,7 +38254,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88236476 } }, { @@ -37647,7 +38315,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88236292 } }, { @@ -37707,7 +38376,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88236169 } }, { @@ -37767,7 +38437,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88236045 } }, { @@ -37827,7 +38498,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88236005 } }, { @@ -37914,7 +38586,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88235914 } }, { @@ -37990,7 +38663,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88235872 } }, { @@ -38050,7 +38724,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88235643 } }, { @@ -38110,7 +38785,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88235329 } }, { @@ -38170,7 +38846,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88235283 } }, { @@ -38230,7 +38907,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88235225 } }, { @@ -38290,7 +38968,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212868 } }, { @@ -38350,7 +39029,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212849 } }, { @@ -38410,7 +39090,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212820 } }, { @@ -38470,7 +39151,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212797 } }, { @@ -38546,7 +39228,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212784 } }, { @@ -38606,7 +39289,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212759 } }, { @@ -38666,7 +39350,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212748 } }, { @@ -38726,7 +39411,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212702 } }, { @@ -38786,7 +39472,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212626 } }, { @@ -38846,7 +39533,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212617 } }, { @@ -38906,7 +39594,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212607 } }, { @@ -38966,7 +39655,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212602 } }, { @@ -39026,7 +39716,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212576 } }, { @@ -39086,7 +39777,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88212566 } }, { @@ -39141,7 +39833,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88204389 } }, { @@ -39170,7 +39863,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88204328 } }, { @@ -39225,7 +39919,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88204280 } }, { @@ -39280,7 +39975,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88204195 } }, { @@ -39352,7 +40048,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88204161 } }, { @@ -39424,7 +40121,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88204114 } }, { @@ -39479,7 +40177,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88204080 } }, { @@ -39534,7 +40233,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88204053 } }, { @@ -39589,7 +40289,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88204013 } }, { @@ -39644,7 +40345,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203987 } }, { @@ -39699,7 +40401,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203949 } }, { @@ -39754,7 +40457,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203926 } }, { @@ -39809,7 +40513,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203886 } }, { @@ -39869,7 +40574,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203852 } }, { @@ -39929,7 +40635,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203808 } }, { @@ -39989,7 +40696,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203778 } }, { @@ -40049,7 +40757,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203743 } }, { @@ -40109,7 +40818,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203730 } }, { @@ -40169,7 +40879,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203704 } }, { @@ -40229,7 +40940,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203682 } }, { @@ -40289,7 +41001,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203659 } }, { @@ -40349,7 +41062,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203628 } }, { @@ -40409,7 +41123,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203599 } }, { @@ -40469,7 +41184,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203574 } }, { @@ -40529,7 +41245,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203524 } }, { @@ -40589,7 +41306,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203491 } }, { @@ -40649,7 +41367,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203449 } }, { @@ -40709,7 +41428,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203417 } }, { @@ -40769,7 +41489,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203400 } }, { @@ -40829,7 +41550,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88203336 } }, { @@ -40889,7 +41611,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88202539 } }, { @@ -40949,7 +41672,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88202522 } }, { @@ -41009,7 +41733,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88202469 } }, { @@ -41069,7 +41794,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88202315 } }, { @@ -41129,7 +41855,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88202229 } }, { @@ -41189,7 +41916,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88202214 } }, { @@ -41265,7 +41993,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88202189 } }, { @@ -41325,7 +42054,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88202169 } }, { @@ -41385,7 +42115,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88202036 } }, { @@ -41445,7 +42176,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88201955 } }, { @@ -41505,7 +42237,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88201903 } }, { @@ -41565,7 +42298,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88201871 } }, { @@ -41620,7 +42354,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88200855 } }, { @@ -41675,7 +42410,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88200650 } }, { @@ -41730,7 +42466,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88200085 } }, { @@ -41785,7 +42522,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88199941 } }, { @@ -41840,7 +42578,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88199936 } }, { @@ -41895,7 +42634,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88199787 } }, { @@ -41950,7 +42690,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88199742 } }, { @@ -42005,7 +42746,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88199680 } }, { @@ -42060,7 +42802,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88199588 } }, { @@ -42115,7 +42858,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88199581 } }, { @@ -42170,7 +42914,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88199547 } }, { @@ -42225,7 +42970,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88199005 } }, { @@ -42280,7 +43026,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88196773 } }, { @@ -42340,7 +43087,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88195733 } }, { @@ -42400,7 +43148,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88195711 } }, { @@ -42455,7 +43204,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88193952 } }, { @@ -42510,7 +43260,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88186791 } }, { @@ -42565,7 +43316,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88186788 } }, { @@ -42620,7 +43372,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88186775 } }, { @@ -42675,7 +43428,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88184078 } }, { @@ -42730,7 +43484,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88184063 } }, { @@ -42785,7 +43540,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180857 } }, { @@ -42840,7 +43596,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180547 } }, { @@ -42895,7 +43652,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180535 } }, { @@ -42950,7 +43708,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180440 } }, { @@ -43010,7 +43769,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180381 } }, { @@ -43065,7 +43825,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180359 } }, { @@ -43125,7 +43886,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180321 } }, { @@ -43180,7 +43942,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180317 } }, { @@ -43235,7 +43998,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180278 } }, { @@ -43309,7 +44073,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180251 } }, { @@ -43369,7 +44134,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180225 } }, { @@ -43424,7 +44190,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180224 } }, { @@ -43479,7 +44246,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180209 } }, { @@ -43539,7 +44307,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180186 } }, { @@ -43599,7 +44368,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180167 } }, { @@ -43659,7 +44429,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180118 } }, { @@ -43719,7 +44490,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88180058 } }, { @@ -43774,7 +44546,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88179987 } }, { @@ -43829,7 +44602,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88179934 } }, { @@ -43884,7 +44658,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88179905 } }, { @@ -43939,7 +44714,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88179878 } }, { @@ -43994,7 +44770,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88179802 } }, { @@ -44049,7 +44826,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88179753 } }, { @@ -44104,7 +44882,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88179693 } }, { @@ -44159,7 +44938,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88179141 } }, { @@ -44214,7 +44994,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88177912 } }, { @@ -44269,7 +45050,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88177445 } }, { @@ -44324,7 +45106,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88177282 } }, { @@ -44379,7 +45162,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88177239 } }, { @@ -44439,7 +45223,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88176953 } }, { @@ -44499,7 +45284,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88176943 } }, { @@ -44559,7 +45345,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88176933 } }, { @@ -44619,7 +45406,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88176873 } }, { @@ -44679,7 +45467,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88176828 } }, { @@ -44739,7 +45528,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88176812 } }, { @@ -44794,7 +45584,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88176595 } }, { @@ -44849,7 +45640,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88176088 } }, { @@ -44909,7 +45701,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174879 } }, { @@ -44964,7 +45757,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174790 } }, { @@ -45019,7 +45813,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174486 } }, { @@ -45074,7 +45869,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174462 } }, { @@ -45129,7 +45925,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174448 } }, { @@ -45184,7 +45981,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174356 } }, { @@ -45239,7 +46037,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174310 } }, { @@ -45294,7 +46093,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174286 } }, { @@ -45349,7 +46149,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174254 } }, { @@ -45404,7 +46205,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174246 } }, { @@ -45459,7 +46261,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174203 } }, { @@ -45514,7 +46317,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174198 } }, { @@ -45569,7 +46373,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174190 } }, { @@ -45624,7 +46429,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174183 } }, { @@ -45679,7 +46485,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174181 } }, { @@ -45734,7 +46541,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88174148 } }, { @@ -45794,7 +46602,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88170260 } }, { @@ -45854,7 +46663,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88170206 } }, { @@ -45914,7 +46724,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88170197 } }, { @@ -45974,7 +46785,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88170128 } }, { @@ -46034,7 +46846,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88170105 } }, { @@ -46094,7 +46907,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88170104 } }, { @@ -46154,7 +46968,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88169908 } }, { @@ -46214,7 +47029,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88169624 } }, { @@ -46274,7 +47090,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88169608 } }, { @@ -46334,7 +47151,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88169584 } }, { @@ -46394,7 +47212,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88169570 } }, { @@ -46454,7 +47273,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88169460 } }, { @@ -46514,7 +47334,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88169430 } }, { @@ -46569,7 +47390,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88163662 } }, { @@ -46624,7 +47446,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88159433 } }, { @@ -46684,7 +47507,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88159033 } }, { @@ -46744,7 +47568,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88158937 } }, { @@ -46820,7 +47645,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88158904 } }, { @@ -46875,7 +47701,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88158634 } }, { @@ -46930,7 +47757,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88157870 } }, { @@ -46985,7 +47813,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88157113 } }, { @@ -47045,7 +47874,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88157080 } }, { @@ -47105,7 +47935,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88156833 } }, { @@ -47160,7 +47991,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88156247 } }, { @@ -47215,7 +48047,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88156218 } }, { @@ -47270,7 +48103,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88155379 } }, { @@ -47325,7 +48159,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88155243 } }, { @@ -47385,7 +48220,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88155200 } }, { @@ -47445,7 +48281,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88155173 } }, { @@ -47505,7 +48342,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88153253 } }, { @@ -47565,7 +48403,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88153223 } }, { @@ -47620,7 +48459,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88153129 } }, { @@ -47680,7 +48520,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88152935 } }, { @@ -47735,7 +48576,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88152750 } }, { @@ -47790,7 +48632,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88150653 } }, { @@ -47845,7 +48688,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88150632 } }, { @@ -47900,7 +48744,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88150567 } }, { @@ -47960,7 +48805,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88149475 } }, { @@ -48015,7 +48861,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88141902 } }, { @@ -48070,7 +48917,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88107671 } }, { @@ -48125,7 +48973,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88107650 } }, { @@ -48180,7 +49029,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88107625 } }, { @@ -48235,7 +49085,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88107401 } }, { @@ -48295,7 +49146,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88107384 } }, { @@ -48355,7 +49207,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88107024 } }, { @@ -48415,7 +49268,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88107012 } }, { @@ -48475,7 +49329,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88106994 } }, { @@ -48530,7 +49385,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88089631 } }, { @@ -48590,7 +49446,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88089296 } }, { @@ -48671,7 +49528,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88089251 } }, { @@ -48731,7 +49589,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88086585 } }, { @@ -48791,7 +49650,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88086439 } }, { @@ -48851,7 +49711,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88086354 } }, { @@ -48911,7 +49772,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88086277 } }, { @@ -48971,7 +49833,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88086153 } }, { @@ -49031,7 +49894,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88086113 } }, { @@ -49091,7 +49955,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88086105 } }, { @@ -49151,7 +50016,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88086056 } }, { @@ -49211,7 +50077,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88086004 } }, { @@ -49271,7 +50138,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88085971 } }, { @@ -49331,7 +50199,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88085836 } }, { @@ -49391,7 +50260,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88085772 } }, { @@ -49451,7 +50321,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88081752 } }, { @@ -49511,7 +50382,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88081641 } }, { @@ -49571,7 +50443,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88081544 } }, { @@ -49631,7 +50504,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88069921 } }, { @@ -49691,7 +50565,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88069723 } }, { @@ -49751,7 +50626,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88069637 } }, { @@ -49811,7 +50687,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88069564 } }, { @@ -49871,7 +50748,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88048793 } }, { @@ -49931,7 +50809,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88048701 } }, { @@ -49991,7 +50870,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88048560 } }, { @@ -50051,7 +50931,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88047430 } }, { @@ -50111,7 +50992,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88047330 } }, { @@ -50171,7 +51053,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88047295 } }, { @@ -50231,7 +51114,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88047255 } }, { @@ -50291,7 +51175,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88047220 } }, { @@ -50351,7 +51236,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88047061 } }, { @@ -50411,7 +51297,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88046597 } }, { @@ -50471,7 +51358,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88046577 } }, { @@ -50531,7 +51419,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88046500 } }, { @@ -50591,7 +51480,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88046461 } }, { @@ -50651,7 +51541,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88046420 } }, { @@ -50706,7 +51597,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88030837 } }, { @@ -50761,7 +51653,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88028271 } }, { @@ -50833,7 +51726,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88028195 } }, { @@ -50893,7 +51787,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88025907 } }, { @@ -50953,7 +51848,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88025839 } }, { @@ -51013,7 +51909,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88025764 } }, { @@ -51073,7 +51970,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88025678 } }, { @@ -51133,7 +52031,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88025605 } }, { @@ -51193,7 +52092,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88025458 } }, { @@ -51253,7 +52153,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88025429 } }, { @@ -51313,7 +52214,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88025313 } }, { @@ -51347,7 +52249,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88019422 } }, { @@ -51407,7 +52310,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88019376 } }, { @@ -51467,7 +52371,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88016145 } }, { @@ -51527,7 +52432,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88015726 } }, { @@ -51587,7 +52493,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88015554 } }, { @@ -51647,7 +52554,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88015489 } }, { @@ -51707,7 +52615,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88015151 } }, { @@ -51767,7 +52676,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88015082 } }, { @@ -51827,7 +52737,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88015062 } }, { @@ -51887,7 +52798,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88014719 } }, { @@ -51947,7 +52859,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88014577 } }, { @@ -52007,7 +52920,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88014511 } }, { @@ -52067,7 +52981,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88014236 } }, { @@ -52143,7 +53058,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88014039 } }, { @@ -52203,7 +53119,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88013444 } }, { @@ -52263,7 +53180,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88013395 } }, { @@ -52323,7 +53241,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88013379 } }, { @@ -52399,7 +53318,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88013215 } }, { @@ -52459,7 +53379,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88012093 } }, { @@ -52519,7 +53440,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88011975 } }, { @@ -52579,7 +53501,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88011814 } }, { @@ -52634,7 +53557,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88008751 } }, { @@ -52689,7 +53613,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88008701 } }, { @@ -52744,7 +53669,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88008661 } }, { @@ -52799,7 +53725,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88008622 } }, { @@ -52859,7 +53786,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87997843 } }, { @@ -52919,7 +53847,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87997553 } }, { @@ -52979,7 +53908,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87997523 } }, { @@ -53039,7 +53969,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87997500 } }, { @@ -53099,7 +54030,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87986399 } }, { @@ -53159,7 +54091,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87986368 } }, { @@ -53219,7 +54152,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87986259 } }, { @@ -53279,7 +54213,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87986231 } }, { @@ -53339,7 +54274,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87986147 } }, { @@ -53399,7 +54335,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87982845 } }, { @@ -53454,7 +54391,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87982805 } }, { @@ -53514,7 +54452,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87982762 } }, { @@ -53574,7 +54513,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87982694 } }, { @@ -53634,7 +54574,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87982613 } }, { @@ -53694,7 +54635,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87982570 } }, { @@ -53754,7 +54696,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87982495 } }, { @@ -53814,7 +54757,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87982465 } }, { @@ -53874,7 +54818,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87982237 } }, { @@ -53934,7 +54879,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980602 } }, { @@ -53994,7 +54940,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980514 } }, { @@ -54054,7 +55001,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980472 } }, { @@ -54114,7 +55062,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980423 } }, { @@ -54174,7 +55123,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980385 } }, { @@ -54234,7 +55184,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980367 } }, { @@ -54294,7 +55245,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980340 } }, { @@ -54354,7 +55306,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980303 } }, { @@ -54414,7 +55367,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980284 } }, { @@ -54474,7 +55428,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980218 } }, { @@ -54534,7 +55489,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87980173 } }, { @@ -54589,7 +55545,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87977722 } }, { @@ -54623,7 +55580,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87975361 } }, { @@ -54683,7 +55641,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87971874 } }, { @@ -54743,7 +55702,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87971450 } }, { @@ -54803,7 +55763,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87971404 } }, { @@ -54863,7 +55824,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87971298 } }, { @@ -54923,7 +55885,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87971219 } }, { @@ -54983,7 +55946,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87971151 } }, { @@ -55043,7 +56007,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87971027 } }, { @@ -55103,7 +56068,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87970869 } }, { @@ -55163,7 +56129,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87970819 } }, { @@ -55197,7 +56164,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87970757 } }, { @@ -55231,7 +56199,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87967158 } }, { @@ -55286,7 +56255,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87966494 } }, { @@ -55362,7 +56332,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87964003 } }, { @@ -55422,7 +56393,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87962368 } }, { @@ -55482,7 +56454,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87961924 } }, { @@ -55558,7 +56531,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87961673 } }, { @@ -55618,7 +56592,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87961294 } }, { @@ -55678,7 +56653,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87960975 } }, { @@ -55738,7 +56714,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87960961 } }, { @@ -55798,7 +56775,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87960766 } }, { @@ -55858,7 +56836,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87960529 } }, { @@ -55918,7 +56897,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87960411 } }, { @@ -55973,7 +56953,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87960109 } }, { @@ -56033,7 +57014,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87953731 } }, { @@ -56093,7 +57075,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87953643 } }, { @@ -56153,7 +57136,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87953608 } }, { @@ -56229,7 +57213,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87944068 } }, { @@ -56289,7 +57274,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87943233 } }, { @@ -56349,7 +57335,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87943209 } }, { @@ -56404,7 +57391,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87941416 } }, { @@ -56459,7 +57447,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87941355 } }, { @@ -56514,7 +57503,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87941336 } }, { @@ -56569,7 +57559,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87941283 } }, { @@ -56624,7 +57615,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87941234 } }, { @@ -56679,7 +57671,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87941143 } }, { @@ -56751,7 +57744,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87941091 } }, { @@ -56806,7 +57800,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87941016 } }, { @@ -56861,7 +57856,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87940987 } }, { @@ -56916,7 +57912,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87940963 } }, { @@ -56971,7 +57968,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87940895 } }, { @@ -57026,7 +58024,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87940858 } }, { @@ -57086,7 +58085,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87939914 } }, { @@ -57146,7 +58146,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87939887 } }, { @@ -57206,7 +58207,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87939848 } }, { @@ -57266,7 +58268,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87939765 } }, { @@ -57326,7 +58329,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87939736 } }, { @@ -57381,7 +58385,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87938218 } }, { @@ -57436,7 +58441,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87933827 } }, { @@ -57491,7 +58497,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87931718 } }, { @@ -57546,7 +58553,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87931646 } }, { @@ -57601,7 +58609,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87931609 } }, { @@ -57656,7 +58665,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87931302 } }, { @@ -57711,7 +58721,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87931266 } }, { @@ -57766,7 +58777,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87930907 } }, { @@ -57821,7 +58833,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87930827 } }, { @@ -57881,7 +58894,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87930640 } }, { @@ -57941,7 +58955,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87930541 } }, { @@ -58001,7 +59016,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87930502 } }, { @@ -58061,7 +59077,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87930480 } }, { @@ -58121,7 +59138,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87929716 } }, { @@ -58181,7 +59199,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87929652 } }, { @@ -58236,7 +59255,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87929593 } }, { @@ -58291,7 +59311,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87929536 } }, { @@ -58363,7 +59384,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87929486 } }, { @@ -58423,7 +59445,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87927387 } }, { @@ -58483,7 +59506,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87927343 } }, { @@ -58543,7 +59567,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87927305 } }, { @@ -58603,7 +59628,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87927238 } }, { @@ -58663,7 +59689,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87927197 } }, { @@ -58723,7 +59750,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87926463 } }, { @@ -58783,7 +59811,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87926324 } }, { @@ -58843,7 +59872,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87926249 } }, { @@ -58903,7 +59933,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87926211 } }, { @@ -58963,7 +59994,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87925329 } }, { @@ -59023,7 +60055,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87925212 } }, { @@ -59133,7 +60166,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87925003 } }, { @@ -59167,7 +60201,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87924514 } }, { @@ -59241,7 +60276,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87924140 } }, { @@ -59301,7 +60337,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87923942 } }, { @@ -59361,7 +60398,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87923886 } }, { @@ -59421,7 +60459,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87923840 } }, { @@ -59481,7 +60520,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87923801 } }, { @@ -59541,7 +60581,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87923746 } }, { @@ -59601,7 +60642,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87923710 } }, { @@ -59661,7 +60703,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87923453 } }, { @@ -59716,7 +60759,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87920359 } }, { @@ -59771,7 +60815,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87920324 } }, { @@ -59831,7 +60876,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87920120 } }, { @@ -59907,7 +60953,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87920038 } }, { @@ -59967,7 +61014,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87919823 } }, { @@ -60027,7 +61075,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87919779 } }, { @@ -60087,7 +61136,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87919658 } }, { @@ -60147,7 +61197,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87919554 } }, { @@ -60207,7 +61258,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87919510 } }, { @@ -60280,7 +61332,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87919278 } }, { @@ -60340,7 +61393,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87919232 } }, { @@ -60413,7 +61467,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87919177 } }, { @@ -60473,7 +61528,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87919075 } }, { @@ -60533,7 +61589,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87918821 } }, { @@ -60593,7 +61650,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87918762 } }, { @@ -60653,7 +61711,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87918525 } }, { @@ -60713,7 +61772,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87918463 } }, { @@ -60773,7 +61833,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87916269 } }, { @@ -60833,7 +61894,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87916220 } }, { @@ -60893,7 +61955,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87916152 } }, { @@ -60953,7 +62016,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87916109 } }, { @@ -61013,7 +62077,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87915987 } }, { @@ -61073,7 +62138,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87915769 } }, { @@ -61133,7 +62199,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87915760 } }, { @@ -61193,7 +62260,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87915698 } }, { @@ -61253,7 +62321,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87915670 } }, { @@ -61313,7 +62382,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87915610 } }, { @@ -61373,7 +62443,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87912844 } }, { @@ -61449,7 +62520,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87912625 } }, { @@ -61483,7 +62555,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87912560 } }, { @@ -61538,7 +62611,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87911490 } }, { @@ -61593,7 +62667,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87911439 } }, { @@ -61648,7 +62723,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87911403 } }, { @@ -61703,7 +62779,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87911376 } }, { @@ -61758,7 +62835,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87911312 } }, { @@ -61818,7 +62896,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87910800 } }, { @@ -61878,7 +62957,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87910751 } }, { @@ -61938,7 +63018,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87910694 } }, { @@ -61998,7 +63079,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87910653 } }, { @@ -62058,7 +63140,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87909541 } }, { @@ -62118,7 +63201,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87909508 } }, { @@ -62178,7 +63262,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87908895 } }, { @@ -62238,7 +63323,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87908853 } }, { @@ -62298,7 +63384,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87908429 } }, { @@ -62358,7 +63445,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87908379 } }, { @@ -62392,7 +63480,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87908303 } }, { @@ -62452,7 +63541,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87908251 } }, { @@ -62512,7 +63602,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87907684 } }, { @@ -62572,7 +63663,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87907160 } }, { @@ -62632,7 +63724,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87906513 } }, { @@ -62692,7 +63785,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87906456 } }, { @@ -62752,7 +63846,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87905715 } }, { @@ -62812,7 +63907,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87904804 } }, { @@ -62888,7 +63984,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87904741 } }, { @@ -62948,7 +64045,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87901895 } }, { @@ -63008,7 +64106,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87901183 } }, { @@ -63068,7 +64167,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87897500 } }, { @@ -63128,7 +64228,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87897463 } }, { @@ -63183,7 +64284,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87889907 } }, { @@ -63238,7 +64340,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87889587 } }, { @@ -63298,7 +64401,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87889492 } }, { @@ -63358,7 +64462,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87889475 } }, { @@ -63418,7 +64523,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87889427 } }, { @@ -63473,7 +64579,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87888352 } }, { @@ -63528,7 +64635,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87888330 } }, { @@ -63557,7 +64665,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87888284 } }, { @@ -63612,7 +64721,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87888254 } }, { @@ -63672,7 +64782,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87888203 } }, { @@ -63732,7 +64843,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87888179 } }, { @@ -63792,7 +64904,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887838 } }, { @@ -63852,7 +64965,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887818 } }, { @@ -63926,7 +65040,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887772 } }, { @@ -63986,7 +65101,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887738 } }, { @@ -64046,7 +65162,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887728 } }, { @@ -64106,7 +65223,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887603 } }, { @@ -64166,7 +65284,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887577 } }, { @@ -64226,7 +65345,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887509 } }, { @@ -64286,7 +65406,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887478 } }, { @@ -64346,7 +65467,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887435 } }, { @@ -64406,7 +65528,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887409 } }, { @@ -64466,7 +65589,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887399 } }, { @@ -64539,7 +65663,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887352 } }, { @@ -64599,7 +65724,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887275 } }, { @@ -64659,7 +65785,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887253 } }, { @@ -64719,7 +65846,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887229 } }, { @@ -64792,7 +65920,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887200 } }, { @@ -64865,7 +65994,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87887175 } }, { @@ -64920,7 +66050,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87885055 } }, { @@ -64975,7 +66106,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87885040 } }, { @@ -65030,7 +66162,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87885015 } }, { @@ -65085,7 +66218,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884986 } }, { @@ -65140,7 +66274,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884969 } }, { @@ -65195,7 +66330,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884948 } }, { @@ -65255,7 +66391,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884941 } }, { @@ -65310,7 +66447,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884926 } }, { @@ -65370,7 +66508,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884923 } }, { @@ -65430,7 +66569,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884896 } }, { @@ -65485,7 +66625,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884875 } }, { @@ -65545,7 +66686,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884863 } }, { @@ -65605,7 +66747,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884841 } }, { @@ -65660,7 +66803,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884762 } }, { @@ -65715,7 +66859,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884614 } }, { @@ -65770,7 +66915,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884558 } }, { @@ -65825,7 +66971,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884538 } }, { @@ -65880,7 +67027,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884476 } }, { @@ -65935,7 +67083,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884431 } }, { @@ -65990,7 +67139,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884424 } }, { @@ -66045,7 +67195,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884403 } }, { @@ -66100,7 +67251,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884374 } }, { @@ -66155,7 +67307,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884341 } }, { @@ -66210,7 +67363,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884321 } }, { @@ -66265,7 +67419,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884294 } }, { @@ -66320,7 +67475,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884211 } }, { @@ -66375,7 +67531,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884142 } }, { @@ -66430,7 +67587,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884071 } }, { @@ -66485,7 +67643,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87884023 } }, { @@ -66540,7 +67699,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883996 } }, { @@ -66600,7 +67760,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883957 } }, { @@ -66655,7 +67816,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883950 } }, { @@ -66710,7 +67872,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883926 } }, { @@ -66770,7 +67933,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883914 } }, { @@ -66825,7 +67989,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883906 } }, { @@ -66885,7 +68050,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883890 } }, { @@ -66940,7 +68106,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883873 } }, { @@ -67000,7 +68167,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883867 } }, { @@ -67055,7 +68223,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883855 } }, { @@ -67115,7 +68284,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883805 } }, { @@ -67175,7 +68345,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883777 } }, { @@ -67235,7 +68406,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883741 } }, { @@ -67295,7 +68467,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883683 } }, { @@ -67355,7 +68528,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883664 } }, { @@ -67415,7 +68589,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883642 } }, { @@ -67475,7 +68650,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883604 } }, { @@ -67535,7 +68711,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883560 } }, { @@ -67595,7 +68772,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883520 } }, { @@ -67655,7 +68833,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883516 } }, { @@ -67715,7 +68894,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883483 } }, { @@ -67789,7 +68969,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87883434 } }, { @@ -67849,7 +69030,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881690 } }, { @@ -67909,7 +69091,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881597 } }, { @@ -67969,7 +69152,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881582 } }, { @@ -68029,7 +69213,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881568 } }, { @@ -68089,7 +69274,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881533 } }, { @@ -68170,7 +69356,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881531 } }, { @@ -68251,7 +69438,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881502 } }, { @@ -68311,7 +69499,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881489 } }, { @@ -68371,7 +69560,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881443 } }, { @@ -68431,7 +69621,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881430 } }, { @@ -68491,7 +69682,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881401 } }, { @@ -68551,7 +69743,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881375 } }, { @@ -68611,7 +69804,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881362 } }, { @@ -68671,7 +69865,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881332 } }, { @@ -68731,7 +69926,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881283 } }, { @@ -68791,7 +69987,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881266 } }, { @@ -68851,7 +70048,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881252 } }, { @@ -68911,7 +70109,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881221 } }, { @@ -68971,7 +70170,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881151 } }, { @@ -69031,7 +70231,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881139 } }, { @@ -69091,7 +70292,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881124 } }, { @@ -69151,7 +70353,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87881063 } }, { @@ -69211,7 +70414,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880817 } }, { @@ -69271,7 +70475,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880802 } }, { @@ -69345,7 +70550,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880789 } }, { @@ -69405,7 +70611,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880768 } }, { @@ -69465,7 +70672,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880738 } }, { @@ -69525,7 +70733,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880719 } }, { @@ -69585,7 +70794,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880702 } }, { @@ -69645,7 +70855,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880197 } }, { @@ -69705,7 +70916,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880164 } }, { @@ -69765,7 +70977,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880137 } }, { @@ -69825,7 +71038,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880107 } }, { @@ -69885,7 +71099,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87880073 } }, { @@ -69914,7 +71129,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879917 } }, { @@ -69969,7 +71185,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879906 } }, { @@ -70024,7 +71241,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879883 } }, { @@ -70084,7 +71302,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879876 } }, { @@ -70144,7 +71363,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879868 } }, { @@ -70199,7 +71419,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879865 } }, { @@ -70259,7 +71480,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879825 } }, { @@ -70314,7 +71536,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879821 } }, { @@ -70369,7 +71592,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879799 } }, { @@ -70424,7 +71648,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879774 } }, { @@ -70479,7 +71704,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879686 } }, { @@ -70534,7 +71760,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87879652 } }, { @@ -70594,7 +71821,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87878154 } }, { @@ -70681,7 +71909,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87878125 } }, { @@ -70741,7 +71970,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87878112 } }, { @@ -70801,7 +72031,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87878071 } }, { @@ -70830,7 +72061,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87877042 } }, { @@ -70885,7 +72117,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87877037 } }, { @@ -70940,7 +72173,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87876524 } }, { @@ -70995,7 +72229,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87876512 } }, { @@ -71050,7 +72285,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87876484 } }, { @@ -71105,7 +72341,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87876430 } }, { @@ -71160,7 +72397,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87876393 } }, { @@ -71215,7 +72453,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87876354 } }, { @@ -71270,7 +72509,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87876232 } }, { @@ -71325,7 +72565,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87876156 } }, { @@ -71380,7 +72621,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87876099 } }, { @@ -71435,7 +72677,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87876046 } }, { @@ -71490,7 +72733,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87875825 } }, { @@ -71566,7 +72810,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87875633 } }, { @@ -71626,7 +72871,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87875612 } }, { @@ -71681,7 +72927,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87875583 } }, { @@ -71741,7 +72988,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87875440 } }, { @@ -71801,7 +73049,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87861343 } }, { @@ -71861,7 +73110,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87861329 } }, { @@ -71921,7 +73171,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87861288 } }, { @@ -71981,7 +73232,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87861244 } }, { @@ -72041,7 +73293,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87861241 } }, { @@ -72096,7 +73349,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87860711 } }, { @@ -72151,7 +73405,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87858397 } }, { @@ -72206,7 +73461,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87858343 } }, { @@ -72261,7 +73517,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87858287 } }, { @@ -72316,7 +73573,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87858255 } }, { @@ -72371,7 +73629,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87858231 } }, { @@ -72426,7 +73685,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87858215 } }, { @@ -72481,7 +73741,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87857804 } }, { @@ -72536,7 +73797,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87857359 } }, { @@ -72591,7 +73853,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87857305 } }, { @@ -72646,7 +73909,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87857303 } }, { @@ -72701,7 +73965,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87857275 } }, { @@ -72756,7 +74021,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87852045 } }, { @@ -72811,7 +74077,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87849108 } }, { @@ -72866,7 +74133,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87827539 } }, { @@ -72921,7 +74189,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87827499 } }, { @@ -72976,7 +74245,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87824438 } }, { @@ -73031,7 +74301,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87824430 } }, { @@ -73086,7 +74357,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87824414 } }, { @@ -73141,7 +74413,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87775439 } }, { @@ -73196,7 +74469,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87775395 } }, { @@ -73256,7 +74530,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87760839 } }, { @@ -73316,7 +74591,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87760772 } }, { @@ -73371,7 +74647,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87717804 } }, { @@ -73426,7 +74703,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87715983 } }, { @@ -73481,7 +74759,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87710063 } }, { @@ -73536,7 +74815,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87707418 } }, { @@ -73591,7 +74871,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87669369 } }, { @@ -73646,7 +74927,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87669336 } }, { @@ -73701,7 +74983,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87663336 } }, { @@ -73756,7 +75039,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87663250 } }, { @@ -73811,7 +75095,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87663219 } }, { @@ -73866,7 +75151,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87663025 } }, { @@ -73921,7 +75207,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87594916 } }, { @@ -73976,7 +75263,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559753 } }, { @@ -74031,7 +75319,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559697 } }, { @@ -74086,7 +75375,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559576 } }, { @@ -74141,7 +75431,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559502 } }, { @@ -74196,7 +75487,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559483 } }, { @@ -74251,7 +75543,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559416 } }, { @@ -74306,7 +75599,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559366 } }, { @@ -74361,7 +75655,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559314 } }, { @@ -74416,7 +75711,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559283 } }, { @@ -74471,7 +75767,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559250 } }, { @@ -74526,7 +75823,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559234 } }, { @@ -74581,7 +75879,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559210 } }, { @@ -74636,7 +75935,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559106 } }, { @@ -74691,7 +75991,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559101 } }, { @@ -74746,7 +76047,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559035 } }, { @@ -74801,7 +76103,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87559002 } }, { @@ -74856,7 +76159,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558940 } }, { @@ -74911,7 +76215,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558779 } }, { @@ -74966,7 +76271,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558712 } }, { @@ -75021,7 +76327,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558681 } }, { @@ -75076,7 +76383,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558542 } }, { @@ -75131,7 +76439,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558522 } }, { @@ -75186,7 +76495,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558492 } }, { @@ -75241,7 +76551,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558414 } }, { @@ -75296,7 +76607,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558369 } }, { @@ -75351,7 +76663,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558322 } }, { @@ -75406,7 +76719,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558287 } }, { @@ -75461,7 +76775,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558234 } }, { @@ -75516,7 +76831,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87558203 } }, { @@ -75571,7 +76887,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87535363 } }, { @@ -75626,7 +76943,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87535357 } }, { @@ -75681,7 +76999,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87535346 } }, { @@ -75736,7 +77055,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87535344 } }, { @@ -75791,7 +77111,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87532054 } }, { @@ -75846,7 +77167,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87530915 } }, { @@ -75901,7 +77223,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87519702 } }, { @@ -75956,7 +77279,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87519699 } }, { @@ -76011,7 +77335,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87519696 } }, { @@ -76066,7 +77391,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87517182 } }, { @@ -76121,7 +77447,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87517178 } }, { @@ -76176,7 +77503,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87517174 } }, { @@ -76231,7 +77559,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87517158 } }, { @@ -76260,7 +77589,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87517135 } }, { @@ -76289,7 +77619,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87516927 } }, { @@ -76318,7 +77649,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87507744 } }, { @@ -76373,7 +77705,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87507730 } }, { @@ -76402,7 +77735,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87507650 } }, { @@ -76431,7 +77765,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87506849 } }, { @@ -76460,7 +77795,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87503779 } }, { @@ -76489,7 +77825,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87503768 } }, { @@ -76544,7 +77881,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87470785 } }, { @@ -76599,7 +77937,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87470780 } }, { @@ -76654,7 +77993,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87465375 } }, { @@ -76709,7 +78049,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87465369 } }, { @@ -76764,7 +78105,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87465307 } }, { @@ -76819,7 +78161,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87465301 } }, { @@ -76874,7 +78217,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87465291 } }, { @@ -76929,7 +78273,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87465277 } }, { @@ -76984,7 +78329,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87465267 } }, { @@ -77039,7 +78385,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87412606 } }, { @@ -77094,7 +78441,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87412419 } }, { @@ -77149,7 +78497,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87404982 } }, { @@ -77204,7 +78553,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87404977 } }, { @@ -77259,7 +78609,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87404897 } }, { @@ -77314,7 +78665,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87404874 } }, { @@ -77369,7 +78721,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87404866 } }, { @@ -77424,7 +78777,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87404855 } }, { @@ -77479,7 +78833,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87404845 } }, { @@ -77534,7 +78889,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87404826 } }, { @@ -77589,7 +78945,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87404824 } }, { @@ -77649,7 +79006,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87390913 } }, { @@ -77704,7 +79062,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 87369682 } } ] diff --git a/Docs/Tools/stats/stats.2020-8.json b/Docs/Tools/stats/stats.2020-8.json index 5f30fff2e2..72b5ace26b 100644 --- a/Docs/Tools/stats/stats.2020-8.json +++ b/Docs/Tools/stats/stats.2020-8.json @@ -54,7 +54,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90204516 } }, { @@ -112,7 +113,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90200013 } }, { @@ -169,7 +171,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90189154 } }, { @@ -229,7 +232,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90145239 } }, { @@ -286,7 +290,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90139064 } }, { @@ -344,7 +349,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90138809 } }, { @@ -402,7 +408,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90132646 } }, { @@ -434,7 +441,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90132634 } }, { @@ -466,7 +474,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90132597 } }, { @@ -498,7 +507,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90132584 } }, { @@ -530,7 +540,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90132576 } }, { @@ -562,7 +573,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90132555 } }, { @@ -594,7 +606,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90132286 } }, { @@ -626,7 +639,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90132261 } }, { @@ -658,7 +672,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90132250 } }, { @@ -689,7 +704,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90128361 } }, { @@ -746,7 +762,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90128198 } }, { @@ -777,7 +794,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90128197 } }, { @@ -834,7 +852,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90128155 } }, { @@ -892,7 +911,8 @@ "metadata": { "theme": "OnlyWays", "theme-creator": "s8evq" - } + }, + "id": 90116827 } }, { @@ -950,7 +970,8 @@ "metadata": { "theme": "Velocidad", "theme-creator": "yopaseopor" - } + }, + "id": 90072264 } }, { @@ -1008,7 +1029,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90066820 } }, { @@ -1065,7 +1087,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90055323 } }, { @@ -1123,7 +1146,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90048040 } }, { @@ -1178,7 +1202,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90048023 } }, { @@ -1236,7 +1261,8 @@ "metadata": { "theme": "Velocidad", "theme-creator": "Not logged in" - } + }, + "id": 90047277 } }, { @@ -1294,7 +1320,8 @@ "metadata": { "theme": "Velocidad", "theme-creator": "yopaseopor" - } + }, + "id": 90046969 } }, { @@ -1352,7 +1379,8 @@ "metadata": { "theme": "Velocidad", "theme-creator": "yopaseopor" - } + }, + "id": 90046930 } }, { @@ -1410,7 +1438,8 @@ "metadata": { "theme": "Velocidad", "theme-creator": "yopaseopor" - } + }, + "id": 90044452 } }, { @@ -1442,7 +1471,8 @@ "metadata": { "theme": "Velocidad (solo faltantes)", "theme-creator": "yopaseopor" - } + }, + "id": 90041025 } }, { @@ -1500,7 +1530,8 @@ "metadata": { "theme": "Velocidad (solo faltantes)", "theme-creator": "yopaseopor" - } + }, + "id": 90033359 } }, { @@ -1558,7 +1589,8 @@ "metadata": { "theme": "Velocidad (solo faltantes)", "theme-creator": "yopaseopor" - } + }, + "id": 90033351 } }, { @@ -1616,7 +1648,8 @@ "metadata": { "theme": "Fietsstraten", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90030286 } }, { @@ -1674,7 +1707,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90026467 } }, { @@ -1732,7 +1766,8 @@ "metadata": { "theme": "Velocidad", "theme-creator": "yopaseopor" - } + }, + "id": 90022347 } }, { @@ -1790,7 +1825,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90020122 } }, { @@ -1847,7 +1883,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90018500 } }, { @@ -1902,7 +1939,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90018478 } }, { @@ -1959,7 +1997,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90018448 } }, { @@ -1990,7 +2029,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90018437 } }, { @@ -2047,7 +2087,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90018302 } }, { @@ -2105,7 +2146,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90018126 } }, { @@ -2163,7 +2205,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90017087 } }, { @@ -2221,7 +2264,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90017040 } }, { @@ -2278,7 +2322,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90015665 } }, { @@ -2333,7 +2378,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90015643 } }, { @@ -2388,7 +2434,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90015488 } }, { @@ -2443,7 +2490,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90015427 } }, { @@ -2501,7 +2549,8 @@ "metadata": { "theme": "Velocidad", "theme-creator": "yopaseopor" - } + }, + "id": 90015021 } }, { @@ -2559,7 +2608,8 @@ "metadata": { "theme": "Velocidad", "theme-creator": "yopaseopor" - } + }, + "id": 90014375 } }, { @@ -2617,7 +2667,8 @@ "metadata": { "theme": "Velocidad", "theme-creator": "yopaseopor" - } + }, + "id": 90013423 } }, { @@ -2674,7 +2725,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90001065 } }, { @@ -2729,7 +2781,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89999280 } }, { @@ -2787,7 +2840,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89997595 } }, { @@ -2845,7 +2899,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89996590 } }, { @@ -2903,7 +2958,8 @@ "metadata": { "theme": "toilets", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89995176 } }, { @@ -2961,7 +3017,8 @@ "metadata": { "theme": "toilets", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89995170 } }, { @@ -3019,7 +3076,8 @@ "metadata": { "theme": "toilets", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89995147 } }, { @@ -3077,7 +3135,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89995070 } }, { @@ -3135,7 +3194,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89995035 } }, { @@ -3193,7 +3253,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89995003 } }, { @@ -3251,7 +3312,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89995002 } }, { @@ -3309,7 +3371,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994916 } }, { @@ -3367,7 +3430,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994902 } }, { @@ -3425,7 +3489,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994877 } }, { @@ -3483,7 +3548,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994876 } }, { @@ -3541,7 +3607,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994672 } }, { @@ -3599,7 +3666,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994637 } }, { @@ -3657,7 +3725,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994440 } }, { @@ -3689,7 +3758,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994137 } }, { @@ -3721,7 +3791,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994136 } }, { @@ -3753,7 +3824,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994130 } }, { @@ -3811,7 +3883,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994126 } }, { @@ -3869,7 +3942,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89994125 } }, { @@ -3926,7 +4000,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89991077 } }, { @@ -3983,7 +4058,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89991062 } }, { @@ -4040,7 +4116,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89990961 } }, { @@ -4097,7 +4174,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89990938 } }, { @@ -4155,7 +4233,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89990819 } }, { @@ -4213,7 +4292,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89990781 } }, { @@ -4270,7 +4350,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89989645 } }, { @@ -4327,7 +4408,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89989628 } }, { @@ -4384,7 +4466,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89989623 } }, { @@ -4441,7 +4524,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89989618 } }, { @@ -4472,7 +4556,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89989597 } }, { @@ -4529,7 +4614,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89989594 } }, { @@ -4586,7 +4672,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89989541 } }, { @@ -4643,7 +4730,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89989506 } }, { @@ -4700,7 +4788,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89989450 } }, { @@ -4758,7 +4847,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89989376 } }, { @@ -4815,7 +4905,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89989371 } }, { @@ -4872,7 +4963,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89989365 } }, { @@ -4930,7 +5022,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89989354 } }, { @@ -4987,7 +5080,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89989339 } }, { @@ -5045,7 +5139,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89989191 } }, { @@ -5105,7 +5200,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89974136 } }, { @@ -5163,7 +5259,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89965962 } }, { @@ -5221,7 +5318,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89965785 } }, { @@ -5279,7 +5377,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89965762 } }, { @@ -5337,7 +5436,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89965407 } }, { @@ -5395,7 +5495,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89965400 } }, { @@ -5427,7 +5528,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89965315 } }, { @@ -5485,7 +5587,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89965215 } }, { @@ -5543,7 +5646,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89965115 } }, { @@ -5601,7 +5705,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89965001 } }, { @@ -5659,7 +5764,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89964677 } }, { @@ -5717,7 +5823,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89964665 } }, { @@ -5775,7 +5882,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89964580 } }, { @@ -5833,7 +5941,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89964547 } }, { @@ -5891,7 +6000,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89964427 } }, { @@ -5949,7 +6059,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89964413 } }, { @@ -6007,7 +6118,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89964365 } }, { @@ -6065,7 +6177,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89927795 } }, { @@ -6123,7 +6236,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89927784 } }, { @@ -6181,7 +6295,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89927744 } }, { @@ -6239,7 +6354,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89927719 } }, { @@ -6296,7 +6412,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 89923234 } }, { @@ -6354,7 +6471,8 @@ "metadata": { "theme": "artworks", "theme-creator": "Not logged in" - } + }, + "id": 89922269 } }, { @@ -6412,7 +6530,8 @@ "metadata": { "theme": "artworks", "theme-creator": "Not logged in" - } + }, + "id": 89922194 } }, { @@ -6470,7 +6589,8 @@ "metadata": { "theme": "artworks", "theme-creator": "Not logged in" - } + }, + "id": 89922132 } }, { @@ -6528,7 +6648,8 @@ "metadata": { "theme": "artworks", "theme-creator": "Not logged in" - } + }, + "id": 89922041 } }, { @@ -6585,7 +6706,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 89918711 } }, { @@ -6642,7 +6764,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 89918675 } }, { @@ -6699,7 +6822,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 89918631 } }, { @@ -6756,7 +6880,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 89918590 } }, { @@ -6813,7 +6938,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 89918557 } }, { @@ -6875,7 +7001,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 89918496 } }, { @@ -6937,7 +7064,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 89918491 } }, { @@ -6999,7 +7127,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 89918483 } }, { @@ -7061,7 +7190,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 89918453 } }, { @@ -7118,7 +7248,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89903500 } }, { @@ -7175,7 +7306,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89903362 } }, { @@ -7232,7 +7364,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89903280 } }, { @@ -7287,7 +7420,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89901819 } }, { @@ -7342,7 +7476,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89901763 } }, { @@ -7400,7 +7535,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89873464 } }, { @@ -7458,7 +7594,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89873437 } }, { @@ -7516,7 +7653,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89873379 } }, { @@ -7574,7 +7712,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89869480 } }, { @@ -7632,7 +7771,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89869436 } }, { @@ -7690,7 +7830,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 89869379 } }, { @@ -7747,7 +7888,8 @@ "check_date": null, "metadata": { "theme": "Restaurants" - } + }, + "id": 89854556 } }, { @@ -7804,7 +7946,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89847129 } }, { @@ -7861,7 +8004,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89847053 } }, { @@ -7921,7 +8065,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89821362 } }, { @@ -7981,7 +8126,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89821327 } }, { @@ -8038,7 +8184,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89804554 } }, { @@ -8095,7 +8242,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89804545 } }, { @@ -8153,7 +8301,8 @@ "metadata": { "theme": "Datos de tienda", "theme-creator": "yopaseopor" - } + }, + "id": 89804341 } }, { @@ -8211,7 +8360,8 @@ "metadata": { "theme": "Datos de tienda", "theme-creator": "yopaseopor" - } + }, + "id": 89804128 } }, { @@ -8268,7 +8418,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89803709 } }, { @@ -8325,7 +8476,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 89803685 } }, { @@ -8383,7 +8535,8 @@ "metadata": { "theme": "Superficie", "theme-creator": "Not logged in" - } + }, + "id": 89794266 } }, { @@ -8440,7 +8593,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89789965 } }, { @@ -8498,7 +8652,8 @@ "metadata": { "theme": "Fietsstraten", "theme-creator": "Not logged in" - } + }, + "id": 89789070 } }, { @@ -8556,7 +8711,8 @@ "metadata": { "theme": "Fietsstraten", "theme-creator": "Not logged in" - } + }, + "id": 89788850 } }, { @@ -8614,7 +8770,8 @@ "metadata": { "theme": "Fietsstraten", "theme-creator": "Not logged in" - } + }, + "id": 89788822 } }, { @@ -8672,7 +8829,8 @@ "metadata": { "theme": "Fietsstraten", "theme-creator": "Not logged in" - } + }, + "id": 89788812 } }, { @@ -8730,7 +8888,8 @@ "metadata": { "theme": "Fietsstraten", "theme-creator": "Not logged in" - } + }, + "id": 89788587 } }, { @@ -8790,7 +8949,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777909 } }, { @@ -8850,7 +9010,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777843 } }, { @@ -8910,7 +9071,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777782 } }, { @@ -8970,7 +9132,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777754 } }, { @@ -9030,7 +9193,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777720 } }, { @@ -9090,7 +9254,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777635 } }, { @@ -9150,7 +9315,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777620 } }, { @@ -9210,7 +9376,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777568 } }, { @@ -9270,7 +9437,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777558 } }, { @@ -9330,7 +9498,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777492 } }, { @@ -9390,7 +9559,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777464 } }, { @@ -9450,7 +9620,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777446 } }, { @@ -9510,7 +9681,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89777414 } }, { @@ -9567,7 +9739,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89776281 } }, { @@ -9624,7 +9797,8 @@ "check_date": null, "metadata": { "theme": "personal" - } + }, + "id": 89776268 } }, { @@ -9679,7 +9853,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89761097 } }, { @@ -9734,7 +9909,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89752874 } }, { @@ -9789,7 +9965,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89752826 } }, { @@ -9849,7 +10026,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89743882 } }, { @@ -9909,7 +10087,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89743820 } }, { @@ -9969,7 +10148,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89743728 } }, { @@ -10024,7 +10204,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89740126 } }, { @@ -10079,7 +10260,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89718813 } }, { @@ -10134,7 +10316,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89712301 } }, { @@ -10189,7 +10372,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89712151 } }, { @@ -10244,7 +10428,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89712123 } }, { @@ -10299,7 +10484,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89712111 } }, { @@ -10354,7 +10540,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89712097 } }, { @@ -10409,7 +10596,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89712077 } }, { @@ -10464,7 +10652,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89709008 } }, { @@ -10519,7 +10708,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89708913 } }, { @@ -10574,7 +10764,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89708836 } }, { @@ -10629,7 +10820,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89708795 } }, { @@ -10684,7 +10876,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89708088 } }, { @@ -10739,7 +10932,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89708034 } }, { @@ -10794,7 +10988,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89707983 } }, { @@ -10849,7 +11044,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89707964 } }, { @@ -10904,7 +11100,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89707958 } }, { @@ -10959,7 +11156,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89707924 } }, { @@ -11014,7 +11212,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89705487 } }, { @@ -11069,7 +11268,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89697089 } }, { @@ -11124,7 +11324,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89697014 } }, { @@ -11179,7 +11380,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89622951 } }, { @@ -11234,7 +11436,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89622923 } }, { @@ -11289,7 +11492,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89622886 } }, { @@ -11344,7 +11548,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89622807 } }, { @@ -11399,7 +11604,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89608014 } }, { @@ -11454,7 +11660,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89607809 } }, { @@ -11509,7 +11716,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89607765 } }, { @@ -11564,7 +11772,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89591688 } }, { @@ -11619,7 +11828,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89591653 } }, { @@ -11674,7 +11884,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89591643 } }, { @@ -11729,7 +11940,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89585554 } }, { @@ -11784,7 +11996,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89581804 } }, { @@ -11839,7 +12052,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89566523 } }, { @@ -11894,7 +12108,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89537077 } }, { @@ -11949,7 +12164,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89529460 } }, { @@ -12004,7 +12220,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89528596 } }, { @@ -12033,7 +12250,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89513953 } }, { @@ -12062,7 +12280,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89507735 } }, { @@ -12091,7 +12310,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89507698 } }, { @@ -12120,7 +12340,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466862 } }, { @@ -12175,7 +12396,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466819 } }, { @@ -12230,7 +12452,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466775 } }, { @@ -12285,7 +12508,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466758 } }, { @@ -12340,7 +12564,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466648 } }, { @@ -12395,7 +12620,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466590 } }, { @@ -12450,7 +12676,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466577 } }, { @@ -12505,7 +12732,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466568 } }, { @@ -12560,7 +12788,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466534 } }, { @@ -12615,7 +12844,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466521 } }, { @@ -12670,7 +12900,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466505 } }, { @@ -12725,7 +12956,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89466101 } }, { @@ -12785,7 +13017,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89456596 } }, { @@ -12845,7 +13078,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89456554 } }, { @@ -12905,7 +13139,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89456494 } }, { @@ -12965,7 +13200,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89456470 } }, { @@ -12999,7 +13235,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89427211 } }, { @@ -13033,7 +13270,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89427167 } }, { @@ -13093,7 +13331,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89427074 } }, { @@ -13148,7 +13387,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89417205 } }, { @@ -13203,7 +13443,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89417169 } }, { @@ -13258,7 +13499,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89338725 } }, { @@ -13313,7 +13555,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89337783 } }, { @@ -13347,7 +13590,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89314595 } }, { @@ -13407,7 +13651,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89314575 } }, { @@ -13467,7 +13712,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89314554 } }, { @@ -13527,7 +13773,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89314545 } }, { @@ -13582,7 +13829,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89309318 } }, { @@ -13637,7 +13885,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89301027 } }, { @@ -13692,7 +13941,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89292111 } }, { @@ -13747,7 +13997,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89292039 } }, { @@ -13802,7 +14053,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89291100 } }, { @@ -13836,7 +14088,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89281420 } }, { @@ -13896,7 +14149,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89280973 } }, { @@ -13956,7 +14210,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89280844 } }, { @@ -14016,7 +14271,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89280801 } }, { @@ -14076,7 +14332,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89280763 } }, { @@ -14136,7 +14393,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89280500 } }, { @@ -14196,7 +14454,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89280456 } }, { @@ -14256,7 +14515,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89271173 } }, { @@ -14316,7 +14576,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89271153 } }, { @@ -14376,7 +14637,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89271142 } }, { @@ -14436,7 +14698,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89271129 } }, { @@ -14496,7 +14759,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89271122 } }, { @@ -14556,7 +14820,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89271109 } }, { @@ -14616,7 +14881,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89271079 } }, { @@ -14676,7 +14942,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89271069 } }, { @@ -14736,7 +15003,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89271033 } }, { @@ -14796,7 +15064,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89271010 } }, { @@ -14856,7 +15125,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89270968 } }, { @@ -14916,7 +15186,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89270937 } }, { @@ -14976,7 +15247,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89270921 } }, { @@ -15036,7 +15308,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89269423 } }, { @@ -15091,7 +15364,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89243471 } }, { @@ -15125,7 +15399,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89241564 } }, { @@ -15185,7 +15460,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89241493 } }, { @@ -15245,7 +15521,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89241311 } }, { @@ -15305,7 +15582,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89241213 } }, { @@ -15365,7 +15643,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89241077 } }, { @@ -15425,7 +15704,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89241036 } }, { @@ -15485,7 +15765,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89240842 } }, { @@ -15545,7 +15826,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89240747 } }, { @@ -15605,7 +15887,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89240601 } }, { @@ -15665,7 +15948,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89240517 } }, { @@ -15725,7 +16009,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89238094 } }, { @@ -15785,7 +16070,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89238015 } }, { @@ -15845,7 +16131,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89237924 } }, { @@ -15905,7 +16192,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89216341 } }, { @@ -15965,7 +16253,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89216328 } }, { @@ -16025,7 +16314,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89216288 } }, { @@ -16085,7 +16375,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89216285 } }, { @@ -16145,7 +16436,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89216244 } }, { @@ -16205,7 +16497,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89216216 } }, { @@ -16265,7 +16558,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89216202 } }, { @@ -16325,7 +16619,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89216186 } }, { @@ -16385,7 +16680,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89216012 } }, { @@ -16445,7 +16741,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89215951 } }, { @@ -16505,7 +16802,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89215883 } }, { @@ -16565,7 +16863,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89215746 } }, { @@ -16625,7 +16924,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89215678 } }, { @@ -16685,7 +16985,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89215613 } }, { @@ -16740,7 +17041,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89196683 } }, { @@ -16795,7 +17097,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89196554 } }, { @@ -16850,7 +17153,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89196531 } }, { @@ -16905,7 +17209,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89183359 } }, { @@ -16960,7 +17265,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89183346 } }, { @@ -17015,7 +17321,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89163669 } }, { @@ -17070,7 +17377,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89163658 } }, { @@ -17125,7 +17433,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89163637 } }, { @@ -17180,7 +17489,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89163594 } }, { @@ -17235,7 +17545,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89160626 } }, { @@ -17290,7 +17601,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89160587 } }, { @@ -17345,7 +17657,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89157318 } }, { @@ -17379,7 +17692,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89155840 } }, { @@ -17439,7 +17753,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89155785 } }, { @@ -17499,7 +17814,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89155722 } }, { @@ -17559,7 +17875,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89155709 } }, { @@ -17614,7 +17931,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89155506 } }, { @@ -17674,7 +17992,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89155299 } }, { @@ -17734,7 +18053,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89155260 } }, { @@ -17794,7 +18114,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89154853 } }, { @@ -17854,7 +18175,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89154816 } }, { @@ -17914,7 +18236,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89154775 } }, { @@ -17974,7 +18297,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89154755 } }, { @@ -18034,7 +18358,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89154668 } }, { @@ -18068,7 +18393,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89154629 } }, { @@ -18102,7 +18428,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89154604 } }, { @@ -18157,7 +18484,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89153051 } }, { @@ -18212,7 +18540,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89123603 } }, { @@ -18267,7 +18596,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89108914 } }, { @@ -18322,7 +18652,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89108910 } }, { @@ -18377,7 +18708,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89105341 } }, { @@ -18406,7 +18738,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104799 } }, { @@ -18461,7 +18794,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104798 } }, { @@ -18516,7 +18850,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104790 } }, { @@ -18571,7 +18906,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104787 } }, { @@ -18626,7 +18962,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104783 } }, { @@ -18681,7 +19018,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104721 } }, { @@ -18736,7 +19074,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104698 } }, { @@ -18791,7 +19130,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104690 } }, { @@ -18846,7 +19186,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104516 } }, { @@ -18901,7 +19242,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104494 } }, { @@ -18956,7 +19298,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104482 } }, { @@ -19011,7 +19354,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104449 } }, { @@ -19066,7 +19410,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104426 } }, { @@ -19121,7 +19466,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104410 } }, { @@ -19176,7 +19522,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104320 } }, { @@ -19231,7 +19578,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104278 } }, { @@ -19286,7 +19634,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89104235 } }, { @@ -19341,7 +19690,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89102969 } }, { @@ -19396,7 +19746,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89102934 } }, { @@ -19451,7 +19802,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89102835 } }, { @@ -19506,7 +19858,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89102790 } }, { @@ -19561,7 +19914,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89102424 } }, { @@ -19616,7 +19970,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89102251 } }, { @@ -19671,7 +20026,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89102045 } }, { @@ -19726,7 +20082,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89101863 } }, { @@ -19781,7 +20138,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89101785 } }, { @@ -19836,7 +20194,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89101713 } }, { @@ -19891,7 +20250,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89101381 } }, { @@ -19946,7 +20306,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89101354 } }, { @@ -20001,7 +20362,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89101346 } }, { @@ -20056,7 +20418,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89101149 } }, { @@ -20111,7 +20474,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89101117 } }, { @@ -20166,7 +20530,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89099807 } }, { @@ -20221,7 +20586,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89099737 } }, { @@ -20276,7 +20642,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89099143 } }, { @@ -20331,7 +20698,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89099112 } }, { @@ -20386,7 +20754,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89096354 } }, { @@ -20441,7 +20810,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89096346 } }, { @@ -20501,7 +20871,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89087248 } }, { @@ -20561,7 +20932,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89087207 } }, { @@ -20621,7 +20993,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89087139 } }, { @@ -20655,7 +21028,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89086959 } }, { @@ -20715,7 +21089,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89086868 } }, { @@ -20775,7 +21150,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89086780 } }, { @@ -20835,7 +21211,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89086727 } }, { @@ -20895,7 +21272,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89086689 } }, { @@ -20955,7 +21333,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89086647 } }, { @@ -21015,7 +21394,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89074899 } }, { @@ -21070,7 +21450,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89061220 } }, { @@ -21125,7 +21506,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89059723 } }, { @@ -21180,7 +21562,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89054743 } }, { @@ -21235,7 +21618,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89052742 } }, { @@ -21290,7 +21674,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 89052737 } }, { @@ -21345,7 +21730,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88990444 } }, { @@ -21374,7 +21760,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88990436 } }, { @@ -21429,7 +21816,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88990428 } }, { @@ -21484,7 +21872,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88990398 } }, { @@ -21539,7 +21928,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88990354 } }, { @@ -21594,7 +21984,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88990297 } }, { @@ -21654,7 +22045,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88985027 } }, { @@ -21714,7 +22106,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88984933 } }, { @@ -21774,7 +22167,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88984719 } }, { @@ -21808,7 +22202,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981788 } }, { @@ -21842,7 +22237,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981786 } }, { @@ -21876,7 +22272,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981782 } }, { @@ -21910,7 +22307,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981774 } }, { @@ -21944,7 +22342,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981764 } }, { @@ -21978,7 +22377,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981760 } }, { @@ -22012,7 +22412,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981754 } }, { @@ -22046,7 +22447,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981747 } }, { @@ -22080,7 +22482,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981746 } }, { @@ -22114,7 +22517,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981735 } }, { @@ -22148,7 +22552,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981729 } }, { @@ -22182,7 +22587,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981728 } }, { @@ -22216,7 +22622,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88981727 } }, { @@ -22271,7 +22678,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88978711 } }, { @@ -22326,7 +22734,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88978682 } }, { @@ -22381,7 +22790,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88978650 } }, { @@ -22415,7 +22825,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88945083 } }, { @@ -22475,7 +22886,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88945041 } }, { @@ -22535,7 +22947,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88944951 } }, { @@ -22595,7 +23008,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88944926 } }, { @@ -22650,7 +23064,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88940196 } }, { @@ -22705,7 +23120,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88940187 } }, { @@ -22760,7 +23176,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88940182 } }, { @@ -22815,7 +23232,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88940172 } }, { @@ -22870,7 +23288,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88937201 } }, { @@ -22925,7 +23344,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88937197 } }, { @@ -22980,7 +23400,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88912957 } }, { @@ -23035,7 +23456,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88912716 } }, { @@ -23090,7 +23512,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88912135 } }, { @@ -23145,7 +23568,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88912130 } }, { @@ -23200,7 +23624,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88912126 } }, { @@ -23255,7 +23680,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88912116 } }, { @@ -23310,7 +23736,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88912044 } }, { @@ -23365,7 +23792,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88911817 } }, { @@ -23420,7 +23848,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88911794 } }, { @@ -23475,7 +23904,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88911435 } }, { @@ -23530,7 +23960,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88911393 } }, { @@ -23585,7 +24016,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88911383 } }, { @@ -23614,7 +24046,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88910490 } }, { @@ -23669,7 +24102,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88910488 } }, { @@ -23724,7 +24158,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88892458 } }, { @@ -23779,7 +24214,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88892445 } }, { @@ -23834,7 +24270,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88892415 } }, { @@ -23889,7 +24326,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88882756 } }, { @@ -23944,7 +24382,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88882696 } }, { @@ -23999,7 +24438,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88882672 } }, { @@ -24054,7 +24494,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878778 } }, { @@ -24083,7 +24524,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878766 } }, { @@ -24138,7 +24580,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878757 } }, { @@ -24193,7 +24636,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878735 } }, { @@ -24248,7 +24692,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878713 } }, { @@ -24303,7 +24748,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878708 } }, { @@ -24332,7 +24778,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878705 } }, { @@ -24361,7 +24808,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878703 } }, { @@ -24390,7 +24838,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878702 } }, { @@ -24445,7 +24894,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878701 } }, { @@ -24505,7 +24955,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878686 } }, { @@ -24560,7 +25011,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878678 } }, { @@ -24620,7 +25072,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88878603 } }, { @@ -24675,7 +25128,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88877940 } }, { @@ -24730,7 +25184,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88877938 } }, { @@ -24785,7 +25240,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88877934 } }, { @@ -24814,7 +25270,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88877931 } }, { @@ -24869,7 +25326,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88877903 } }, { @@ -24903,7 +25361,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88876365 } }, { @@ -24963,7 +25422,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88876343 } }, { @@ -25023,7 +25483,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88876310 } }, { @@ -25083,7 +25544,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88876053 } }, { @@ -25143,7 +25605,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88872316 } }, { @@ -25177,7 +25640,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88849217 } }, { @@ -25237,7 +25701,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88849201 } }, { @@ -25297,7 +25762,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88849120 } }, { @@ -25357,7 +25823,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88849083 } }, { @@ -25417,7 +25884,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88849032 } }, { @@ -25477,7 +25945,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88847542 } }, { @@ -25506,7 +25975,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88846225 } }, { @@ -25535,7 +26005,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88846207 } }, { @@ -25590,7 +26061,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88846161 } }, { @@ -25645,7 +26117,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88846085 } }, { @@ -25700,7 +26173,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88846067 } }, { @@ -25755,7 +26229,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88846029 } }, { @@ -25815,7 +26290,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845992 } }, { @@ -25875,7 +26351,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845970 } }, { @@ -25909,7 +26386,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845939 } }, { @@ -25969,7 +26447,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845906 } }, { @@ -26029,7 +26508,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845874 } }, { @@ -26089,7 +26569,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845776 } }, { @@ -26149,7 +26630,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845735 } }, { @@ -26209,7 +26691,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845709 } }, { @@ -26269,7 +26752,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845697 } }, { @@ -26329,7 +26813,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845637 } }, { @@ -26363,7 +26848,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88845602 } }, { @@ -26423,7 +26909,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88837531 } }, { @@ -26499,7 +26986,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88835815 } }, { @@ -26559,7 +27047,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88835732 } }, { @@ -26619,7 +27108,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88835686 } }, { @@ -26679,7 +27169,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88835619 } }, { @@ -26739,7 +27230,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88835559 } }, { @@ -26799,7 +27291,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88835506 } }, { @@ -26859,7 +27352,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88835384 } }, { @@ -26919,7 +27413,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88835329 } }, { @@ -26979,7 +27474,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88835271 } }, { @@ -27039,7 +27535,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88833752 } }, { @@ -27099,7 +27596,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88833727 } }, { @@ -27159,7 +27657,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88833707 } }, { @@ -27219,7 +27718,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88833670 } }, { @@ -27279,7 +27779,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88832970 } }, { @@ -27339,7 +27840,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88832936 } }, { @@ -27399,7 +27901,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88832896 } }, { @@ -27454,7 +27957,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88825749 } }, { @@ -27509,7 +28013,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88825141 } }, { @@ -27564,7 +28069,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88825051 } }, { @@ -27619,7 +28125,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88813196 } }, { @@ -27674,7 +28181,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88813194 } }, { @@ -27729,7 +28237,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88813191 } }, { @@ -27784,7 +28293,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88813189 } }, { @@ -27839,7 +28349,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88810288 } }, { @@ -27894,7 +28405,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88810034 } }, { @@ -27949,7 +28461,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 88810031 } } ] diff --git a/Docs/Tools/stats/stats.2020-9.json b/Docs/Tools/stats/stats.2020-9.json index 3ae75b9157..39a25aa7d6 100644 --- a/Docs/Tools/stats/stats.2020-9.json +++ b/Docs/Tools/stats/stats.2020-9.json @@ -56,7 +56,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 91790167 } }, { @@ -115,7 +116,8 @@ "theme": "dalemasvelocidad", "language": "es", "theme-creator": "" - } + }, + "id": 91779411 } }, { @@ -173,7 +175,8 @@ "metadata": { "theme": "personal", "language": "en" - } + }, + "id": 91773184 } }, { @@ -236,7 +239,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 91759649 } }, { @@ -299,7 +303,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 91724357 } }, { @@ -358,7 +363,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 91673475 } }, { @@ -415,7 +421,8 @@ "check_date": null, "metadata": { "theme": "mcac_cyclofix" - } + }, + "id": 91667984 } }, { @@ -472,7 +479,8 @@ "check_date": null, "metadata": { "theme": "mcac_cyclofix" - } + }, + "id": 91667983 } }, { @@ -529,7 +537,8 @@ "check_date": null, "metadata": { "theme": "mcac_cyclofix" - } + }, + "id": 91667982 } }, { @@ -588,7 +597,8 @@ "theme": "ghostbikes", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 91660559 } }, { @@ -652,7 +662,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 91628909 } }, { @@ -711,7 +722,8 @@ "theme": "containeronvas", "language": "es", "theme-creator": "" - } + }, + "id": 91625545 } }, { @@ -774,7 +786,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 91623165 } }, { @@ -834,7 +847,8 @@ "language": "nl", "theme-creator": "MapComplete", "embedded-website": "" - } + }, + "id": 91600328 } }, { @@ -893,7 +907,8 @@ "theme": "aed", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 91598640 } }, { @@ -951,7 +966,8 @@ "metadata": { "theme": "dalemasvelocidad", "theme-creator": "" - } + }, + "id": 91596369 } }, { @@ -1009,7 +1025,8 @@ "metadata": { "theme": "postalcode", "theme-creator": "" - } + }, + "id": 91591043 } }, { @@ -1067,7 +1084,8 @@ "metadata": { "theme": "postalcode", "theme-creator": "" - } + }, + "id": 91590879 } }, { @@ -1126,7 +1144,8 @@ "theme": "ghostbikes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 91587115 } }, { @@ -1184,7 +1203,8 @@ "metadata": { "theme": "dalemasvelocidad", "theme-creator": "" - } + }, + "id": 91586795 } }, { @@ -1242,7 +1262,8 @@ "metadata": { "theme": "ghostbikes", "theme-creator": "MapComplete" - } + }, + "id": 91578488 } }, { @@ -1300,7 +1321,8 @@ "metadata": { "theme": "ghostbikes", "theme-creator": "MapComplete" - } + }, + "id": 91577107 } }, { @@ -1358,7 +1380,8 @@ "metadata": { "theme": "cyclofix", "theme-creator": "MapComplete" - } + }, + "id": 91576955 } }, { @@ -1416,7 +1439,8 @@ "metadata": { "theme": "crossingtime", "theme-creator": "" - } + }, + "id": 91575776 } }, { @@ -1474,7 +1498,8 @@ "metadata": { "theme": "crossingtime", "theme-creator": "" - } + }, + "id": 91564964 } }, { @@ -1537,7 +1562,8 @@ "metadata": { "theme": "cyclofix", "theme-creator": "MapComplete" - } + }, + "id": 91564798 } }, { @@ -1600,7 +1626,8 @@ "metadata": { "theme": "cyclofix", "theme-creator": "MapComplete" - } + }, + "id": 91564089 } }, { @@ -1663,7 +1690,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 91562463 } }, { @@ -1726,7 +1754,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 91557719 } }, { @@ -1784,7 +1813,8 @@ "metadata": { "theme": "aed", "theme-creator": "MapComplete" - } + }, + "id": 91552473 } }, { @@ -1842,7 +1872,8 @@ "metadata": { "theme": "cyclofix", "theme-creator": "MapComplete" - } + }, + "id": 91542705 } }, { @@ -1901,7 +1932,8 @@ "theme": "bookcases", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 91535355 } }, { @@ -1964,7 +1996,8 @@ "metadata": { "theme": "ghostbikes", "theme-creator": "MapComplete" - } + }, + "id": 91527452 } }, { @@ -2022,7 +2055,8 @@ "metadata": { "theme": "containeronvas", "theme-creator": "" - } + }, + "id": 91525513 } }, { @@ -2081,7 +2115,8 @@ "theme": "climbing", "language": "nl", "theme-creator": "" - } + }, + "id": 91518811 } }, { @@ -2140,7 +2175,8 @@ "theme": "nature", "language": "nl", "theme-creator": "" - } + }, + "id": 91518314 } }, { @@ -2237,7 +2273,8 @@ "metadata": { "theme": "maps", "theme-creator": "MapComplete" - } + }, + "id": 91517794 } }, { @@ -2300,7 +2337,8 @@ "metadata": { "theme": "boomgaarden", "theme-creator": "" - } + }, + "id": 91463977 } }, { @@ -2363,7 +2401,8 @@ "metadata": { "theme": "fietsstraten", "theme-creator": "MapComlete" - } + }, + "id": 91457976 } }, { @@ -2426,7 +2465,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "" - } + }, + "id": 91271957 } }, { @@ -2484,7 +2524,8 @@ "metadata": { "theme": "fietsstraten", "theme-creator": "MapComlete" - } + }, + "id": 91244376 } }, { @@ -2542,7 +2583,8 @@ "metadata": { "theme": "climbing", "theme-creator": "" - } + }, + "id": 91240064 } }, { @@ -2599,7 +2641,8 @@ "check_date": null, "metadata": { "theme": "metamap" - } + }, + "id": 91229495 } }, { @@ -2657,7 +2700,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "" - } + }, + "id": 91227891 } }, { @@ -2720,7 +2764,8 @@ "metadata": { "theme": "aed", "theme-creator": "MapComplete" - } + }, + "id": 91220202 } }, { @@ -2797,7 +2842,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "" - } + }, + "id": 91186735 } }, { @@ -2855,7 +2901,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "" - } + }, + "id": 91186361 } }, { @@ -2918,7 +2965,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "" - } + }, + "id": 91179439 } }, { @@ -2976,7 +3024,8 @@ "metadata": { "theme": "cyclofix", "theme-creator": "MapComplete" - } + }, + "id": 91178668 } }, { @@ -3039,7 +3088,8 @@ "metadata": { "theme": "cyclofix", "theme-creator": "MapComplete" - } + }, + "id": 91174621 } }, { @@ -3097,7 +3147,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "" - } + }, + "id": 91158300 } }, { @@ -3160,7 +3211,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 91119338 } }, { @@ -3218,7 +3270,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "" - } + }, + "id": 91099444 } }, { @@ -3276,7 +3329,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "" - } + }, + "id": 91074626 } }, { @@ -3334,7 +3388,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "" - } + }, + "id": 91074608 } }, { @@ -3394,7 +3449,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91064867 } }, { @@ -3454,7 +3510,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91064861 } }, { @@ -3514,7 +3571,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91064714 } }, { @@ -3574,7 +3632,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91060765 } }, { @@ -3634,7 +3693,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91060755 } }, { @@ -3694,7 +3754,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91041161 } }, { @@ -3754,7 +3815,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91041061 } }, { @@ -3814,7 +3876,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91040950 } }, { @@ -3874,7 +3937,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91005229 } }, { @@ -3934,7 +3998,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91005193 } }, { @@ -3994,7 +4059,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91004594 } }, { @@ -4054,7 +4120,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91003424 } }, { @@ -4114,7 +4181,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91001838 } }, { @@ -4174,7 +4242,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91001663 } }, { @@ -4234,7 +4303,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91001370 } }, { @@ -4294,7 +4364,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91001352 } }, { @@ -4354,7 +4425,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91001279 } }, { @@ -4414,7 +4486,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91001211 } }, { @@ -4474,7 +4547,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91001154 } }, { @@ -4534,7 +4608,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91001125 } }, { @@ -4594,7 +4669,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91001059 } }, { @@ -4654,7 +4730,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91001022 } }, { @@ -4714,7 +4791,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 91000952 } }, { @@ -4774,7 +4852,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90999953 } }, { @@ -4834,7 +4913,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90999776 } }, { @@ -4894,7 +4974,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90999724 } }, { @@ -4949,7 +5030,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90996138 } }, { @@ -5004,7 +5086,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90996120 } }, { @@ -5064,7 +5147,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90996010 } }, { @@ -5124,7 +5208,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995645 } }, { @@ -5184,7 +5269,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995608 } }, { @@ -5244,7 +5330,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995564 } }, { @@ -5304,7 +5391,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995512 } }, { @@ -5364,7 +5452,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995491 } }, { @@ -5424,7 +5513,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995407 } }, { @@ -5484,7 +5574,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995382 } }, { @@ -5544,7 +5635,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995270 } }, { @@ -5604,7 +5696,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995245 } }, { @@ -5664,7 +5757,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995213 } }, { @@ -5724,7 +5818,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995177 } }, { @@ -5784,7 +5879,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995087 } }, { @@ -5844,7 +5940,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90995053 } }, { @@ -5904,7 +6001,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90994933 } }, { @@ -5964,7 +6062,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90994905 } }, { @@ -6024,7 +6123,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90994883 } }, { @@ -6084,7 +6184,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90994846 } }, { @@ -6144,7 +6245,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90992147 } }, { @@ -6204,7 +6306,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90992125 } }, { @@ -6264,7 +6367,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90989855 } }, { @@ -6324,7 +6428,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90989775 } }, { @@ -6384,7 +6489,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90989632 } }, { @@ -6444,7 +6550,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90989585 } }, { @@ -6504,7 +6611,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90989561 } }, { @@ -6564,7 +6672,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90989501 } }, { @@ -6624,7 +6733,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90989462 } }, { @@ -6679,7 +6789,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90987807 } }, { @@ -6739,7 +6850,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90983747 } }, { @@ -6799,7 +6911,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90983527 } }, { @@ -6859,7 +6972,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90983465 } }, { @@ -6919,7 +7033,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90983409 } }, { @@ -6979,7 +7094,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90983264 } }, { @@ -7039,7 +7155,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90983212 } }, { @@ -7099,7 +7216,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90982722 } }, { @@ -7159,7 +7277,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90981224 } }, { @@ -7219,7 +7338,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90981197 } }, { @@ -7279,7 +7399,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90981148 } }, { @@ -7339,7 +7460,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90981096 } }, { @@ -7399,7 +7521,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90981058 } }, { @@ -7459,7 +7582,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90981038 } }, { @@ -7519,7 +7643,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90981009 } }, { @@ -7579,7 +7704,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90980121 } }, { @@ -7639,7 +7765,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90980033 } }, { @@ -7699,7 +7826,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90979502 } }, { @@ -7773,7 +7901,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90979432 } }, { @@ -7830,7 +7959,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90950672 } }, { @@ -7887,7 +8017,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90949407 } }, { @@ -7944,7 +8075,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90949013 } }, { @@ -8002,7 +8134,8 @@ "metadata": { "theme": "id", "theme-creator": "" - } + }, + "id": 90948937 } }, { @@ -8059,7 +8192,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90944045 } }, { @@ -8116,7 +8250,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 90940565 } }, { @@ -8173,7 +8308,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90938570 } }, { @@ -8230,7 +8366,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 90937613 } }, { @@ -8287,7 +8424,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 90937509 } }, { @@ -8344,7 +8482,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90928529 } }, { @@ -8401,7 +8540,8 @@ "check_date": null, "metadata": { "theme": "mcac_cyclofix" - } + }, + "id": 90888933 } }, { @@ -8459,7 +8599,8 @@ "metadata": { "theme": "fietsstraten", "theme-creator": "MapComlete" - } + }, + "id": 90881057 } }, { @@ -8517,7 +8658,8 @@ "metadata": { "theme": "fietsstraten", "theme-creator": "MapComlete" - } + }, + "id": 90850604 } }, { @@ -8574,7 +8716,8 @@ "check_date": null, "metadata": { "theme": "metamap" - } + }, + "id": 90823549 } }, { @@ -8646,7 +8789,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 90822349 } }, { @@ -8703,7 +8847,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 90820369 } }, { @@ -8760,7 +8905,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 90817864 } }, { @@ -8818,7 +8964,8 @@ "metadata": { "theme": "aed", "theme-creator": "MapComplete" - } + }, + "id": 90804365 } }, { @@ -8875,7 +9022,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 90798265 } }, { @@ -8932,7 +9080,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90795847 } }, { @@ -8989,7 +9138,8 @@ "check_date": null, "metadata": { "theme": "buurtnatuur" - } + }, + "id": 90794795 } }, { @@ -9046,7 +9196,8 @@ "check_date": null, "metadata": { "theme": "natuurpunt" - } + }, + "id": 90794775 } }, { @@ -9104,7 +9255,8 @@ "metadata": { "theme": "arbres", "theme-creator": "" - } + }, + "id": 90790543 } }, { @@ -9162,7 +9314,8 @@ "metadata": { "theme": "arbres", "theme-creator": "" - } + }, + "id": 90787182 } }, { @@ -9220,7 +9373,8 @@ "metadata": { "theme": "id", "theme-creator": "" - } + }, + "id": 90786503 } }, { @@ -9277,7 +9431,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90764596 } }, { @@ -9335,7 +9490,8 @@ "metadata": { "theme": "aed", "theme-creator": "MapComplete" - } + }, + "id": 90762633 } }, { @@ -9392,7 +9548,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90754649 } }, { @@ -9449,7 +9606,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90711850 } }, { @@ -9506,7 +9664,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90661800 } }, { @@ -9563,7 +9722,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90652529 } }, { @@ -9599,7 +9759,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90604385 } }, { @@ -9661,7 +9822,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90604349 } }, { @@ -9723,7 +9885,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90604182 } }, { @@ -9759,7 +9922,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90604181 } }, { @@ -9821,7 +9985,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90604111 } }, { @@ -9883,7 +10048,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90604050 } }, { @@ -9919,7 +10085,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90604049 } }, { @@ -9981,7 +10148,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90604044 } }, { @@ -10043,7 +10211,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90603787 } }, { @@ -10105,7 +10274,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90603171 } }, { @@ -10167,7 +10337,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90603167 } }, { @@ -10229,7 +10400,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90603151 } }, { @@ -10286,7 +10458,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90603089 } }, { @@ -10348,7 +10521,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90603030 } }, { @@ -10410,7 +10584,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90602768 } }, { @@ -10468,7 +10643,8 @@ "metadata": { "theme": "artworks", "theme-creator": "MapComplete" - } + }, + "id": 90601225 } }, { @@ -10526,7 +10702,8 @@ "metadata": { "theme": "fietsstraten", "theme-creator": "MapComlete" - } + }, + "id": 90601201 } }, { @@ -10584,7 +10761,8 @@ "metadata": { "theme": "artworks", "theme-creator": "MapComplete" - } + }, + "id": 90600775 } }, { @@ -10642,7 +10820,8 @@ "metadata": { "theme": "artworks", "theme-creator": "MapComplete" - } + }, + "id": 90595733 } }, { @@ -10700,7 +10879,8 @@ "metadata": { "theme": "artworks", "theme-creator": "MapComplete" - } + }, + "id": 90595520 } }, { @@ -10758,7 +10938,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90577730 } }, { @@ -10815,7 +10996,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90551017 } }, { @@ -10872,7 +11054,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90548086 } }, { @@ -10930,7 +11113,8 @@ "metadata": { "theme": "aed", "theme-creator": "MapComplete" - } + }, + "id": 90545395 } }, { @@ -10988,7 +11172,8 @@ "metadata": { "theme": "toilets", "theme-creator": "MapComplete" - } + }, + "id": 90544563 } }, { @@ -11045,7 +11230,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90502031 } }, { @@ -11103,7 +11289,8 @@ "metadata": { "theme": "ghostbikes", "theme-creator": "MapComplete" - } + }, + "id": 90496495 } }, { @@ -11160,7 +11347,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90491879 } }, { @@ -11217,7 +11405,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90491318 } }, { @@ -11274,7 +11463,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90488367 } }, { @@ -11331,7 +11521,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90485445 } }, { @@ -11391,7 +11582,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484657 } }, { @@ -11451,7 +11643,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484603 } }, { @@ -11511,7 +11704,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484579 } }, { @@ -11571,7 +11765,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484524 } }, { @@ -11631,7 +11826,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484484 } }, { @@ -11691,7 +11887,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484476 } }, { @@ -11751,7 +11948,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484462 } }, { @@ -11811,7 +12009,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484441 } }, { @@ -11871,7 +12070,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484416 } }, { @@ -11931,7 +12131,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484407 } }, { @@ -11991,7 +12192,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484386 } }, { @@ -12051,7 +12253,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484362 } }, { @@ -12111,7 +12314,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484347 } }, { @@ -12171,7 +12375,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484292 } }, { @@ -12231,7 +12436,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484263 } }, { @@ -12291,7 +12497,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484234 } }, { @@ -12325,7 +12532,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484202 } }, { @@ -12359,7 +12567,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484112 } }, { @@ -12419,7 +12628,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90484052 } }, { @@ -12479,7 +12689,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90483985 } }, { @@ -12539,7 +12750,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90483916 } }, { @@ -12599,7 +12811,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90483843 } }, { @@ -12657,7 +12870,8 @@ "metadata": { "theme": "aed", "theme-creator": "MapComplete" - } + }, + "id": 90482341 } }, { @@ -12717,7 +12931,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90479608 } }, { @@ -12777,7 +12992,8 @@ "harmful": null, "checked": false, "check_date": null, - "metadata": {} + "metadata": {}, + "id": 90479591 } }, { @@ -12834,7 +13050,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90478757 } }, { @@ -12892,7 +13109,8 @@ "metadata": { "theme": "toilets", "theme-creator": "MapComplete" - } + }, + "id": 90476470 } }, { @@ -12949,7 +13167,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90473079 } }, { @@ -13007,7 +13226,8 @@ "metadata": { "theme": "velocidad", "theme-creator": "" - } + }, + "id": 90460448 } }, { @@ -13065,7 +13285,8 @@ "metadata": { "theme": "ghostbikes", "theme-creator": "MapComplete" - } + }, + "id": 90454739 } }, { @@ -13123,7 +13344,8 @@ "metadata": { "theme": "ghostbikes", "theme-creator": "MapComplete" - } + }, + "id": 90451385 } }, { @@ -13181,7 +13403,8 @@ "metadata": { "theme": "aed", "theme-creator": "MapComplete" - } + }, + "id": 90435151 } }, { @@ -13239,7 +13462,8 @@ "metadata": { "theme": "aed", "theme-creator": "MapComplete" - } + }, + "id": 90374163 } }, { @@ -13297,7 +13521,8 @@ "metadata": { "theme": "artworks", "theme-creator": "MapComplete" - } + }, + "id": 90358508 } }, { @@ -13354,7 +13579,8 @@ "check_date": null, "metadata": { "theme": "cyclofix" - } + }, + "id": 90327941 } }, { @@ -13412,7 +13638,8 @@ "metadata": { "theme": "artworks", "theme-creator": "MapComplete" - } + }, + "id": 90325360 } }, { @@ -13470,7 +13697,8 @@ "metadata": { "theme": "artworks", "theme-creator": "Not logged in" - } + }, + "id": 90317681 } }, { @@ -13528,7 +13756,8 @@ "metadata": { "theme": "artworks", "theme-creator": "MapComplete" - } + }, + "id": 90296993 } }, { @@ -13586,7 +13815,8 @@ "metadata": { "theme": "bookcases", "theme-creator": "MapComplete" - } + }, + "id": 90292472 } }, { @@ -13644,7 +13874,8 @@ "metadata": { "theme": "aed", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 90263965 } } ] diff --git a/Docs/Tools/stats/stats.2021-1.json b/Docs/Tools/stats/stats.2021-1.json index a073f36e62..b710c326a8 100644 --- a/Docs/Tools/stats/stats.2021-1.json +++ b/Docs/Tools/stats/stats.2021-1.json @@ -58,7 +58,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98467725 } }, { @@ -119,7 +120,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98467603 } }, { @@ -180,7 +182,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 98460295 } }, { @@ -241,7 +244,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 98456272 } }, { @@ -319,7 +323,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98449135 } }, { @@ -380,7 +385,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 98448481 } }, { @@ -440,7 +446,8 @@ "theme": "picnictable", "imagery": "osm", "language": "en" - } + }, + "id": 98448320 } }, { @@ -500,7 +507,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 98437369 } }, { @@ -561,7 +569,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 98417963 } }, { @@ -622,7 +631,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 98416814 } }, { @@ -683,7 +693,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 98412650 } }, { @@ -744,7 +755,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 98410641 } }, { @@ -805,7 +817,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98374817 } }, { @@ -866,7 +879,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98371877 } }, { @@ -927,7 +941,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98352985 } }, { @@ -988,7 +1003,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98322167 } }, { @@ -1049,7 +1065,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98322082 } }, { @@ -1110,7 +1127,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 98306989 } }, { @@ -1171,7 +1189,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98301641 } }, { @@ -1232,7 +1251,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 98229218 } }, { @@ -1293,7 +1313,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 98229099 } }, { @@ -1354,7 +1375,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98198969 } }, { @@ -1415,7 +1437,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 98183437 } }, { @@ -1476,7 +1499,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98148467 } }, { @@ -1537,7 +1561,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98148236 } }, { @@ -1597,7 +1622,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 98143845 } }, { @@ -1658,7 +1684,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98134697 } }, { @@ -1719,7 +1746,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98058241 } }, { @@ -1780,7 +1808,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98057411 } }, { @@ -1841,7 +1870,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98049808 } }, { @@ -1902,7 +1932,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98046838 } }, { @@ -1963,7 +1994,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98046406 } }, { @@ -2024,7 +2056,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98032028 } }, { @@ -2085,7 +2118,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98022407 } }, { @@ -2146,7 +2180,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98021252 } }, { @@ -2207,7 +2242,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 98019711 } }, { @@ -2283,7 +2319,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97999677 } }, { @@ -2344,7 +2381,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 97982572 } }, { @@ -2405,7 +2443,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97981296 } }, { @@ -2466,7 +2505,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 97975013 } }, { @@ -2543,7 +2583,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 97971861 } }, { @@ -2604,7 +2645,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Christian Neumann " - } + }, + "id": 97970141 } }, { @@ -2664,7 +2706,8 @@ "theme": "pingpong", "imagery": "osm", "language": "nl" - } + }, + "id": 97969812 } }, { @@ -2725,7 +2768,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97969122 } }, { @@ -2786,7 +2830,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97968558 } }, { @@ -2847,7 +2892,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 97953003 } }, { @@ -2923,7 +2969,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97918475 } }, { @@ -2984,7 +3031,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97905093 } }, { @@ -3045,7 +3093,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97905043 } }, { @@ -3080,7 +3129,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97897996 } }, { @@ -3141,7 +3191,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97890693 } }, { @@ -3201,7 +3252,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 97850636 } }, { @@ -3262,7 +3314,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97845480 } }, { @@ -3322,7 +3375,8 @@ "theme": "surveillance", "imagery": "Stadia.AlidadeSmoothDark", "language": "en" - } + }, + "id": 97827779 } }, { @@ -3383,7 +3437,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97744035 } }, { @@ -3444,7 +3499,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97722280 } }, { @@ -3505,7 +3561,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97720781 } }, { @@ -3565,7 +3622,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 97720603 } }, { @@ -3626,7 +3684,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 97720228 } }, { @@ -3686,7 +3745,8 @@ "theme": "wiki:User:joost_schouppe/campersite", "imagery": "osm", "language": "en" - } + }, + "id": 97706983 } }, { @@ -3747,7 +3807,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97701599 } }, { @@ -3808,7 +3869,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97700317 } }, { @@ -3869,7 +3931,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97692703 } }, { @@ -3930,7 +3993,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97686456 } }, { @@ -3991,7 +4055,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97682765 } }, { @@ -4052,7 +4117,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97678655 } }, { @@ -4112,7 +4178,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 97676779 } }, { @@ -4173,7 +4240,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97646137 } }, { @@ -4233,7 +4301,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 97640804 } }, { @@ -4294,7 +4363,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97629850 } }, { @@ -4355,7 +4425,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97619137 } }, { @@ -4416,7 +4487,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97619006 } }, { @@ -4477,7 +4549,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97611926 } }, { @@ -4538,7 +4611,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97596920 } }, { @@ -4599,7 +4673,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97584579 } }, { @@ -4660,7 +4735,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97584125 } }, { @@ -4721,7 +4797,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97581736 } }, { @@ -4782,7 +4859,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 97581678 } }, { @@ -4843,7 +4921,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97581595 } }, { @@ -4932,7 +5011,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97580462 } }, { @@ -4993,7 +5073,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97572054 } }, { @@ -5054,7 +5135,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 97571925 } }, { @@ -5115,7 +5197,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97558341 } }, { @@ -5175,7 +5258,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 97557058 } }, { @@ -5235,7 +5319,8 @@ "theme": "wiki-User-joost_schouppe-campersite", "imagery": "osm", "language": "en" - } + }, + "id": 97555565 } }, { @@ -5296,7 +5381,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97543181 } }, { @@ -5357,7 +5443,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97518237 } }, { @@ -5417,7 +5504,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 97494238 } }, { @@ -5478,7 +5566,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97492404 } }, { @@ -5539,7 +5628,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97466773 } }, { @@ -5600,7 +5690,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97461822 } }, { @@ -5661,7 +5752,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97460300 } }, { @@ -5722,7 +5814,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 97443981 } }, { @@ -5782,7 +5875,8 @@ "theme": "wiki:User:joost_schouppe/campersite", "imagery": "osm", "language": "en" - } + }, + "id": 97439355 } }, { @@ -5845,7 +5939,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 97395648 } }, { @@ -5906,7 +6001,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97393566 } }, { @@ -5967,7 +6063,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97390528 } }, { @@ -6028,7 +6125,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 97385016 } }, { @@ -6088,7 +6186,8 @@ "theme": "wiki:User:joost_schouppe/campersite", "imagery": "osm", "language": "en" - } + }, + "id": 97380227 } }, { @@ -6148,7 +6247,8 @@ "theme": "wiki:User:joost_schouppe/campersite", "imagery": "osm", "language": "en" - } + }, + "id": 97380110 } }, { @@ -6209,7 +6309,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97375834 } }, { @@ -6270,7 +6371,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97371956 } }, { @@ -6330,7 +6432,8 @@ "theme": "wiki:User:joost_schouppe/campersite", "imagery": "osm", "language": "en" - } + }, + "id": 97371774 } }, { @@ -6391,7 +6494,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97337096 } }, { @@ -6452,7 +6556,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97332769 } }, { @@ -6513,7 +6618,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97327412 } }, { @@ -6579,7 +6685,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 97313582 } }, { @@ -6640,7 +6747,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97263926 } }, { @@ -6700,7 +6808,8 @@ "theme": "wiki:User:joost_schouppe/campersite", "imagery": "osm", "language": "en" - } + }, + "id": 97256687 } }, { @@ -6766,7 +6875,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97231513 } }, { @@ -6832,7 +6942,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97221773 } }, { @@ -6893,7 +7004,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97217616 } }, { @@ -6954,7 +7066,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97211787 } }, { @@ -7014,7 +7127,8 @@ "theme": "wiki:User:joost_schouppe/campersite", "imagery": "osm", "language": "en" - } + }, + "id": 97210462 } }, { @@ -7075,7 +7189,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97195966 } }, { @@ -7135,7 +7250,8 @@ "theme": "campersite", "imagery": "osm", "language": "en" - } + }, + "id": 97185967 } }, { @@ -7196,7 +7312,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 97183915 } }, { @@ -7256,7 +7373,8 @@ "theme": "campersite", "imagery": "osm", "language": "en" - } + }, + "id": 97182987 } }, { @@ -7317,7 +7435,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97137285 } }, { @@ -7378,7 +7497,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97136113 } }, { @@ -7439,7 +7559,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97123454 } }, { @@ -7499,7 +7620,8 @@ "theme": "crossingtime", "imagery": "osm", "language": "es" - } + }, + "id": 97106307 } }, { @@ -7560,7 +7682,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97083191 } }, { @@ -7621,7 +7744,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97077181 } }, { @@ -7687,7 +7811,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 97026167 } }, { @@ -7753,7 +7878,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 97025792 } }, { @@ -7814,7 +7940,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97019882 } }, { @@ -7905,7 +8032,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 97010957 } }, { @@ -7996,7 +8124,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 97008704 } }, { @@ -8057,7 +8186,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96940791 } }, { @@ -8118,7 +8248,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 96936300 } }, { @@ -8184,7 +8315,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 96932914 } }, { @@ -8250,7 +8382,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96932821 } }, { @@ -8311,7 +8444,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 96932361 } }, { @@ -8375,7 +8509,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96913831 } }, { @@ -8439,7 +8574,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96911158 } }, { @@ -8503,7 +8639,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96896162 } }, { @@ -8567,7 +8704,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96891171 } }, { @@ -8631,7 +8769,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96817720 } }, { @@ -8690,7 +8829,8 @@ "theme": "charging_stations", "language": "en", "theme-creator": "" - } + }, + "id": 96815194 } }, { @@ -8749,7 +8889,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96814012 } }, { @@ -8813,7 +8954,8 @@ "theme": "benches", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 96807227 } }, { @@ -8877,7 +9019,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96801175 } }, { @@ -8941,7 +9084,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96794904 } }, { @@ -9005,7 +9149,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96792786 } }, { @@ -9069,7 +9214,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96788183 } }, { @@ -9133,7 +9279,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96784719 } }, { @@ -9192,7 +9339,8 @@ "theme": "toilets", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96776774 } }, { @@ -9251,7 +9399,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96772551 } }, { @@ -9310,7 +9459,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96768531 } }, { @@ -9374,7 +9524,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96755150 } }, { @@ -9433,7 +9584,8 @@ "theme": "cyclofix", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 96754404 } } ] diff --git a/Docs/Tools/stats/stats.2021-10.json b/Docs/Tools/stats/stats.2021-10.json index b39a4174fb..87ef4a2b87 100644 --- a/Docs/Tools/stats/stats.2021-10.json +++ b/Docs/Tools/stats/stats.2021-10.json @@ -59,7 +59,8 @@ "create": 7, "imagery": "osm", "language": "en" - } + }, + "id": 113211661 } }, { @@ -120,7 +121,8 @@ "answer": 24, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113209361 } }, { @@ -181,7 +183,8 @@ "answer": 263, "imagery": "osm", "language": "en" - } + }, + "id": 113208196 } }, { @@ -242,7 +245,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 1 - } + }, + "id": 113206794 } }, { @@ -310,7 +314,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113203637 } }, { @@ -376,7 +381,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113200439 } }, { @@ -438,7 +444,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 1 - } + }, + "id": 113197196 } }, { @@ -499,7 +506,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113196838 } }, { @@ -565,7 +573,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113194894 } }, { @@ -626,7 +635,8 @@ "answer": 32, "imagery": "osm", "language": "nl" - } + }, + "id": 113194138 } }, { @@ -687,7 +697,8 @@ "answer": 21, "imagery": "osm", "language": "de" - } + }, + "id": 113193868 } }, { @@ -748,7 +759,8 @@ "answer": 29, "imagery": "osm", "language": "nl" - } + }, + "id": 113193213 } }, { @@ -812,7 +824,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113192072 } }, { @@ -875,7 +888,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113191871 } }, { @@ -936,7 +950,8 @@ "answer": 112, "imagery": "osm", "language": "nl" - } + }, + "id": 113188983 } }, { @@ -997,7 +1012,8 @@ "answer": 5, "imagery": "osm", "language": "de" - } + }, + "id": 113185480 } }, { @@ -1058,7 +1074,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113183368 } }, { @@ -1119,7 +1136,8 @@ "answer": 11, "imagery": "osm", "language": "en" - } + }, + "id": 113178247 } }, { @@ -1180,7 +1198,8 @@ "answer": 5, "imagery": "osm", "language": "en" - } + }, + "id": 113178210 } }, { @@ -1242,7 +1261,8 @@ "create": 1, "imagery": "osm", "language": "ca" - } + }, + "id": 113174278 } }, { @@ -1304,7 +1324,8 @@ "imagery": "CartoDB.Positron", "language": "en", "move:node/9212378672": "improve_accuracy" - } + }, + "id": 113171049 } }, { @@ -1366,7 +1387,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113170848 } }, { @@ -1432,7 +1454,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113167174 } }, { @@ -1501,7 +1524,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "add-image": 1 - } + }, + "id": 113166817 } }, { @@ -1562,7 +1586,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113164317 } }, { @@ -1623,7 +1648,8 @@ "answer": 37, "imagery": "osm", "language": "de" - } + }, + "id": 113162656 } }, { @@ -1685,7 +1711,8 @@ "answer": 7, "imagery": "osm", "language": "en" - } + }, + "id": 113156911 } }, { @@ -1746,7 +1773,8 @@ "answer": 7, "imagery": "osm", "language": "en" - } + }, + "id": 113154144 } }, { @@ -1807,7 +1835,8 @@ "answer": 41, "imagery": "osm", "language": "de" - } + }, + "id": 113151688 } }, { @@ -1871,7 +1900,8 @@ "imagery": "osm", "language": "en", "move:node/9211743706": "improve_accuracy" - } + }, + "id": 113150555 } }, { @@ -1933,7 +1963,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113146384 } }, { @@ -1997,7 +2028,8 @@ "language": "en", "move:node/6017635080": "improve_accuracy", "move:node/7947512310": "improve_accuracy" - } + }, + "id": 113145619 } }, { @@ -2058,7 +2090,8 @@ "answer": 7, "imagery": "osm", "language": "en" - } + }, + "id": 113141592 } }, { @@ -2120,7 +2153,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113133260 } }, { @@ -2181,7 +2215,8 @@ "answer": 3, "imagery": "osm", "language": "de" - } + }, + "id": 113132316 } }, { @@ -2242,7 +2277,8 @@ "answer": 13, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 113131130 } }, { @@ -2303,7 +2339,8 @@ "answer": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113128981 } }, { @@ -2365,7 +2402,8 @@ "answer": 13, "imagery": "osm", "language": "en" - } + }, + "id": 113127802 } }, { @@ -2427,7 +2465,8 @@ "create": 1, "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 113125295 } }, { @@ -2488,7 +2527,8 @@ "import": 3, "imagery": "osm", "language": "nl" - } + }, + "id": 113125083 } }, { @@ -2550,7 +2590,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113120672 } }, { @@ -2611,7 +2652,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113120671 } }, { @@ -2673,7 +2715,8 @@ "answer": 2, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113116149 } }, { @@ -2734,7 +2777,8 @@ "answer": 124, "imagery": "osm", "language": "de" - } + }, + "id": 113108382 } }, { @@ -2795,7 +2839,8 @@ "answer": 5, "imagery": "osm", "language": "de" - } + }, + "id": 113092656 } }, { @@ -2856,7 +2901,8 @@ "answer": 24, "imagery": "osm", "language": "de" - } + }, + "id": 113088240 } }, { @@ -2918,7 +2964,8 @@ "create": 1, "imagery": "osm", "language": "es" - } + }, + "id": 113082716 } }, { @@ -2980,7 +3027,8 @@ "create": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 113082381 } }, { @@ -3045,7 +3093,8 @@ "language": "nl", "add-image": 1, "move:node/-1": "improve_accuracy" - } + }, + "id": 113082319 } }, { @@ -3107,7 +3156,8 @@ "imagery": "osm", "language": "nl", "add-image": 2 - } + }, + "id": 113082105 } }, { @@ -3170,7 +3220,8 @@ "imagery": "osm", "language": "en", "move:node/4227045139": "improve_accuracy" - } + }, + "id": 113077093 } }, { @@ -3237,7 +3288,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113059829 } }, { @@ -3299,7 +3351,8 @@ "create": 2, "imagery": "osm", "language": "es" - } + }, + "id": 113059588 } }, { @@ -3360,7 +3413,8 @@ "answer": 7, "imagery": "osm", "language": "en" - } + }, + "id": 113058608 } }, { @@ -3421,7 +3475,8 @@ "answer": 35, "imagery": "osm", "language": "de" - } + }, + "id": 113051034 } }, { @@ -3482,7 +3537,8 @@ "answer": 1, "imagery": "Stamen.TonerLite", "language": "en" - } + }, + "id": 113050669 } }, { @@ -3551,7 +3607,8 @@ "imagery": "osm", "language": "en", "move:node/9205242210": "improve_accuracy" - } + }, + "id": 113044898 } }, { @@ -3612,7 +3669,8 @@ "answer": 8, "imagery": "osm", "language": "en" - } + }, + "id": 113038656 } }, { @@ -3674,7 +3732,8 @@ "create": 6, "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 113037755 } }, { @@ -3736,7 +3795,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 1 - } + }, + "id": 113034431 } }, { @@ -3798,7 +3858,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113030047 } }, { @@ -3860,7 +3921,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 1 - } + }, + "id": 113028520 } }, { @@ -3923,7 +3985,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 1 - } + }, + "id": 113024531 } }, { @@ -3984,7 +4047,8 @@ "answer": 12, "imagery": "osm", "language": "en" - } + }, + "id": 113019941 } }, { @@ -4045,7 +4109,8 @@ "answer": 23, "imagery": "osm", "language": "nl" - } + }, + "id": 113010848 } }, { @@ -4106,7 +4171,8 @@ "answer": 36, "imagery": "osm", "language": "en" - } + }, + "id": 113008229 } }, { @@ -4167,7 +4233,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113005319 } }, { @@ -4234,7 +4301,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113001200 } }, { @@ -4295,7 +4363,8 @@ "answer": 12, "imagery": "osm", "language": "en" - } + }, + "id": 112999964 } }, { @@ -4356,7 +4425,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 112999873 } }, { @@ -4417,7 +4487,8 @@ "answer": 3, "imagery": "osm", "language": "es" - } + }, + "id": 112993571 } }, { @@ -4478,7 +4549,8 @@ "answer": 5, "imagery": "osm", "language": "nl" - } + }, + "id": 112993400 } }, { @@ -4539,7 +4611,8 @@ "answer": 154, "imagery": "osm", "language": "en" - } + }, + "id": 112986442 } }, { @@ -4601,7 +4674,8 @@ "answer": 14, "imagery": "osm", "language": "nl" - } + }, + "id": 112977842 } }, { @@ -4667,7 +4741,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112977275 } }, { @@ -4728,7 +4803,8 @@ "answer": 53, "imagery": "osm", "language": "en" - } + }, + "id": 112972777 } }, { @@ -4790,7 +4866,8 @@ "answer": 5, "imagery": "osm", "language": "nl" - } + }, + "id": 112970293 } }, { @@ -4856,7 +4933,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112966235 } }, { @@ -4917,7 +4995,8 @@ "answer": 32, "imagery": "osm", "language": "en" - } + }, + "id": 112965511 } }, { @@ -4978,7 +5057,8 @@ "answer": 180, "imagery": "osm", "language": "en" - } + }, + "id": 112965061 } }, { @@ -5039,7 +5119,8 @@ "answer": 11, "imagery": "osm", "language": "en" - } + }, + "id": 112964829 } }, { @@ -5100,7 +5181,8 @@ "answer": 18, "imagery": "osm", "language": "en" - } + }, + "id": 112964711 } }, { @@ -5161,7 +5243,8 @@ "answer": 22, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 112953730 } }, { @@ -5222,7 +5305,8 @@ "answer": 48, "imagery": "osm", "language": "nl" - } + }, + "id": 112953572 } }, { @@ -5283,7 +5367,8 @@ "answer": 4, "imagery": "osm", "language": "nl" - } + }, + "id": 112953457 } }, { @@ -5344,7 +5429,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112952854 } }, { @@ -5410,7 +5496,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112952535 } }, { @@ -5471,7 +5558,8 @@ "answer": 6, "imagery": "osm", "language": "nl" - } + }, + "id": 112949077 } }, { @@ -5534,7 +5622,8 @@ "imagery": "Actueel_ortho25_WMS", "language": "nl", "move:node/9187383555": "The location of this object is inaccurate and should be moved a few meter" - } + }, + "id": 112945227 } }, { @@ -5602,7 +5691,8 @@ "deletion": 1, "language": "fr", "deletion:node/9119877457": "duplicate" - } + }, + "id": 112928541 } }, { @@ -5663,7 +5753,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 112918213 } }, { @@ -5724,7 +5815,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 112916108 } }, { @@ -5792,7 +5884,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 112913626 } }, { @@ -5854,7 +5947,8 @@ "create": 1, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 112910601 } }, { @@ -5927,7 +6021,8 @@ "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" - } + }, + "id": 112908415 } }, { @@ -5991,7 +6086,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 2 - } + }, + "id": 112908056 } }, { @@ -6052,7 +6148,8 @@ "answer": 5, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112902452 } }, { @@ -6115,7 +6212,8 @@ "imagery": "osm", "language": "de", "add-image": 1 - } + }, + "id": 112902215 } }, { @@ -6177,7 +6275,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 112900519 } }, { @@ -6244,7 +6343,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112900339 } }, { @@ -6307,7 +6407,8 @@ "create": 4, "imagery": "Actueel_ortho25_WMS", "language": "en" - } + }, + "id": 112899746 } }, { @@ -6369,7 +6470,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 112893211 } }, { @@ -6433,7 +6535,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 112892700 } }, { @@ -6494,7 +6597,8 @@ "answer": 1, "imagery": "CartoDB.Positron", "language": "fr" - } + }, + "id": 112890047 } }, { @@ -6555,7 +6659,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112888673 } }, { @@ -6616,7 +6721,8 @@ "answer": 3, "imagery": "osm", "language": "en" - } + }, + "id": 112886005 } }, { @@ -6684,7 +6790,8 @@ "imagery": "HDM_HOT", "language": "ca", "add-image": 6 - } + }, + "id": 112885975 } }, { @@ -6746,7 +6853,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112883053 } }, { @@ -6808,7 +6916,8 @@ "answer": 39, "imagery": "osm", "language": "nl" - } + }, + "id": 112881713 } }, { @@ -6874,7 +6983,8 @@ "answer": 2, "imagery": "osm", "language": "de" - } + }, + "id": 112879502 } }, { @@ -6935,7 +7045,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112879289 } }, { @@ -7001,7 +7112,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 112879190 } }, { @@ -7063,7 +7175,8 @@ "answer": 12, "imagery": "osm", "language": "nl" - } + }, + "id": 112877710 } }, { @@ -7129,7 +7242,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112875924 } }, { @@ -7191,7 +7305,8 @@ "answer": 7, "imagery": "osm", "language": "nl" - } + }, + "id": 112873649 } }, { @@ -7253,7 +7368,8 @@ "answer": 4, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 112868634 } }, { @@ -7314,7 +7430,8 @@ "answer": 3, "imagery": "osm", "language": "de" - } + }, + "id": 112868128 } }, { @@ -7377,7 +7494,8 @@ "imagery": "osm", "language": "en", "add-image": 4 - } + }, + "id": 112867160 } }, { @@ -7440,7 +7558,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 112866456 } }, { @@ -7501,7 +7620,8 @@ "answer": 8, "imagery": "osm", "language": "en" - } + }, + "id": 112865466 } }, { @@ -7563,7 +7683,8 @@ "create": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 112864730 } }, { @@ -7626,7 +7747,8 @@ "create": 1, "imagery": "geodata.md.gov-MD_SixInchImagery", "language": "en" - } + }, + "id": 112861808 } }, { @@ -7661,7 +7783,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112861396 } }, { @@ -7722,7 +7845,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 112861395 } }, { @@ -7784,7 +7908,8 @@ "create": 1, "imagery": "EsriWorldImageryClarity", "language": "nl" - } + }, + "id": 112856442 } }, { @@ -7845,7 +7970,8 @@ "answer": 15, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 112856106 } }, { @@ -7907,7 +8033,8 @@ "create": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 112856017 } }, { @@ -7969,7 +8096,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 112852101 } }, { @@ -8030,7 +8158,8 @@ "answer": 2, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 112849606 } }, { @@ -8091,7 +8220,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112847851 } }, { @@ -8156,7 +8286,8 @@ "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" - } + }, + "id": 112844464 } }, { @@ -8219,7 +8350,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 112843053 } }, { @@ -8280,7 +8412,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 112840556 } }, { @@ -8346,7 +8479,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112840419 } }, { @@ -8407,7 +8541,8 @@ "answer": 21, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112838739 } }, { @@ -8468,7 +8603,8 @@ "answer": 4, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112838646 } }, { @@ -8529,7 +8665,8 @@ "answer": 21, "imagery": "osm", "language": "en" - } + }, + "id": 112838009 } }, { @@ -8590,7 +8727,8 @@ "answer": 7, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112837641 } }, { @@ -8651,7 +8789,8 @@ "answer": 18, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112837241 } }, { @@ -8712,7 +8851,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 112837065 } }, { @@ -8770,7 +8910,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 112831683 } }, { @@ -8837,7 +8978,8 @@ "create": 5, "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 112828266 } }, { @@ -8898,7 +9040,8 @@ "answer": 17, "imagery": "osm", "language": "nl" - } + }, + "id": 112827018 } }, { @@ -8960,7 +9103,8 @@ "create": 1, "imagery": "AGIV", "language": "nl" - } + }, + "id": 112825777 } }, { @@ -9026,7 +9170,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112805789 } }, { @@ -9088,7 +9233,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 112799378 } }, { @@ -9149,7 +9295,8 @@ "answer": 18, "imagery": "osm", "language": "nl" - } + }, + "id": 112796853 } }, { @@ -9212,7 +9359,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 1 - } + }, + "id": 112788625 } }, { @@ -9279,7 +9427,8 @@ "create": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 112777915 } }, { @@ -9340,7 +9489,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112769664 } }, { @@ -9401,7 +9551,8 @@ "answer": 4, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 112768775 } }, { @@ -9462,7 +9613,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 112768712 } }, { @@ -9523,7 +9675,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 112763424 } }, { @@ -9586,7 +9739,8 @@ "create": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 112761963 } }, { @@ -9646,7 +9800,8 @@ "theme": "food", "imagery": "osm", "language": "en" - } + }, + "id": 112757603 } }, { @@ -9707,7 +9862,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112756229 } }, { @@ -9769,7 +9925,8 @@ "answer": 253, "imagery": "osm", "language": "nl" - } + }, + "id": 112753161 } }, { @@ -9831,7 +9988,8 @@ "answer": 155, "imagery": "osm", "language": "nl" - } + }, + "id": 112752015 } }, { @@ -9891,7 +10049,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112748629 } }, { @@ -9953,7 +10112,8 @@ "answer": 205, "imagery": "osm", "language": "nl" - } + }, + "id": 112748388 } }, { @@ -10014,7 +10174,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112747371 } }, { @@ -10080,7 +10241,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 112745665 } }, { @@ -10142,7 +10304,8 @@ "answer": 3, "imagery": "osm", "language": "nl" - } + }, + "id": 112745041 } }, { @@ -10204,7 +10367,8 @@ "answer": 130, "imagery": "osm", "language": "nl" - } + }, + "id": 112740347 } }, { @@ -10266,7 +10430,8 @@ "answer": 18, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 112738677 } }, { @@ -10328,7 +10493,8 @@ "answer": 8, "imagery": "osm", "language": "nl" - } + }, + "id": 112738403 } }, { @@ -10389,7 +10555,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112733217 } }, { @@ -10450,7 +10617,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112729830 } }, { @@ -10510,7 +10678,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112729580 } }, { @@ -10571,7 +10740,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112728248 } }, { @@ -10637,7 +10807,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 112718253 } }, { @@ -10698,7 +10869,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112712386 } }, { @@ -10763,7 +10935,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 112710590 } }, { @@ -10825,7 +10998,8 @@ "answer": 3, "imagery": "osm", "language": "nl" - } + }, + "id": 112710210 } }, { @@ -10887,7 +11061,8 @@ "answer": 55, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 112709992 } }, { @@ -10950,7 +11125,8 @@ "create": 1, "imagery": "Actueel_ortho25_WMS", "language": "nl" - } + }, + "id": 112705847 } }, { @@ -11012,7 +11188,8 @@ "answer": 35, "imagery": "osm", "language": "nl" - } + }, + "id": 112701458 } }, { @@ -11073,7 +11250,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112699968 } }, { @@ -11135,7 +11313,8 @@ "answer": 11, "imagery": "osm", "language": "nl" - } + }, + "id": 112697990 } }, { @@ -11199,7 +11378,8 @@ "imagery": "osm", "language": "nl", "add-image": 3 - } + }, + "id": 112695953 } }, { @@ -11260,7 +11440,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112694872 } }, { @@ -11321,7 +11502,8 @@ "imagery": "Metropole_Ruhr_RVR-DOP10", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 112694402 } }, { @@ -11384,7 +11566,8 @@ "create": 3, "imagery": "osm", "language": "en" - } + }, + "id": 112693435 } }, { @@ -11445,7 +11628,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112690492 } }, { @@ -11505,7 +11689,8 @@ "theme": "food", "imagery": "osm", "language": "en" - } + }, + "id": 112690102 } }, { @@ -11566,7 +11751,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112689371 } }, { @@ -11627,7 +11813,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112685292 } }, { @@ -11688,7 +11875,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112673477 } }, { @@ -11746,7 +11934,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 112670419 } }, { @@ -11806,7 +11995,8 @@ "theme": "charging_stations", "imagery": "Actueel_ortho25_WMS", "language": "nl" - } + }, + "id": 112668948 } }, { @@ -11866,7 +12056,8 @@ "theme": "https://gist.githubusercontent.com/RobinLinde/d22223ebe86469b0ff08e7f308ab109c/raw/774eb9ea5e8ad150b1d01868b4d51f5ca219101e/street_lighting.json", "imagery": "osm", "language": "nl" - } + }, + "id": 112668843 } }, { @@ -11929,7 +12120,8 @@ "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" - } + }, + "id": 112668565 } }, { @@ -11989,7 +12181,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 112667042 } }, { @@ -12050,7 +12243,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112663580 } }, { @@ -12116,7 +12310,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 112658974 } }, { @@ -12182,7 +12377,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 112658231 } }, { @@ -12243,7 +12439,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe" - } + }, + "id": 112657372 } }, { @@ -12304,7 +12501,8 @@ "answer": 3, "imagery": "osm", "language": "nl" - } + }, + "id": 112654375 } }, { @@ -12370,7 +12568,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 112652820 } }, { @@ -12431,7 +12630,8 @@ "imagery": "HDM_HOT", "language": "fr", "theme-creator": "Erwin Olario" - } + }, + "id": 112649426 } }, { @@ -12491,7 +12691,8 @@ "theme": "vets", "imagery": "osm", "language": "en" - } + }, + "id": 112641505 } }, { @@ -12551,7 +12752,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "fr" - } + }, + "id": 112638273 } }, { @@ -12612,7 +12814,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 112637945 } }, { @@ -12673,7 +12876,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 112637933 } }, { @@ -12734,7 +12938,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112636966 } }, { @@ -12795,7 +13000,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112635876 } }, { @@ -12856,7 +13062,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112630581 } }, { @@ -12917,7 +13124,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 112628013 } }, { @@ -12978,7 +13186,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 112625573 } }, { @@ -13038,7 +13247,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 112623519 } }, { @@ -13099,7 +13309,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 112622176 } }, { @@ -13160,7 +13371,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112621911 } }, { @@ -13221,7 +13433,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112621112 } }, { @@ -13284,7 +13497,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 112619905 } }, { @@ -13347,7 +13561,8 @@ "create": 3, "imagery": "osm", "language": "de" - } + }, + "id": 112619236 } }, { @@ -13408,7 +13623,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 112618493 } }, { @@ -13471,7 +13687,8 @@ "create": 3, "imagery": "osm", "language": "de" - } + }, + "id": 112618387 } }, { @@ -13532,7 +13749,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 112613205 } }, { @@ -13593,7 +13811,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112609243 } }, { @@ -13659,7 +13878,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112609034 } }, { @@ -13725,7 +13945,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112608864 } }, { @@ -13786,7 +14007,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 112607574 } }, { @@ -13845,7 +14067,8 @@ "theme": "climbing", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 112605904 } }, { @@ -13906,7 +14129,8 @@ "imagery": "osm", "language": "pl", "theme-creator": "MapComplete" - } + }, + "id": 112604326 } }, { @@ -13966,7 +14190,8 @@ "theme": "vets", "imagery": "osm", "language": "en" - } + }, + "id": 112597311 } }, { @@ -14028,7 +14253,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 112594776 } }, { @@ -14089,7 +14315,8 @@ "imagery": "osm", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 112589924 } }, { @@ -14150,7 +14377,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 112588973 } }, { @@ -14185,7 +14413,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 112588967 } }, { @@ -14220,7 +14449,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 112588960 } }, { @@ -14281,7 +14511,8 @@ "imagery": "osm", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 112588071 } }, { @@ -14343,7 +14574,8 @@ "answer": 13, "imagery": "osm", "language": "nl" - } + }, + "id": 112583752 } }, { @@ -14404,7 +14636,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112582519 } }, { @@ -14465,7 +14698,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112582263 } }, { @@ -14525,7 +14759,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 112577212 } }, { @@ -14586,7 +14821,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 112577079 } }, { @@ -14648,7 +14884,8 @@ "answer": 2, "imagery": "AGIV", "language": "nl" - } + }, + "id": 112576927 } }, { @@ -14707,7 +14944,8 @@ "theme": "climbing", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 112572303 } }, { @@ -14769,7 +15007,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 112572196 } }, { @@ -14830,7 +15069,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112571724 } }, { @@ -14891,7 +15131,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 112560800 } }, { @@ -14951,7 +15192,8 @@ "theme": "https://gist.githubusercontent.com/RobinLinde/d22223ebe86469b0ff08e7f308ab109c/raw/425cd9fcbd0bacf96eb15d26f5ebe26c767d85ad/street_lighting.json", "imagery": "osm", "language": "nl" - } + }, + "id": 112558686 } }, { @@ -15016,7 +15258,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112557963 } }, { @@ -15055,7 +15298,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112557918 } }, { @@ -15094,7 +15338,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112557911 } }, { @@ -15133,7 +15378,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112557906 } }, { @@ -15172,7 +15418,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112557894 } }, { @@ -15237,7 +15484,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112557189 } }, { @@ -15303,7 +15551,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 112553873 } }, { @@ -15369,7 +15618,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112553700 } }, { @@ -15435,7 +15685,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112548410 } }, { @@ -15497,7 +15748,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 112547351 } }, { @@ -15558,7 +15810,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112544664 } }, { @@ -15624,7 +15877,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 112543270 } }, { @@ -15685,7 +15939,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112536982 } }, { @@ -15746,7 +16001,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112531350 } }, { @@ -15808,7 +16064,8 @@ "answer": 76, "imagery": "osm", "language": "nl" - } + }, + "id": 112531308 } }, { @@ -15870,7 +16127,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 112531267 } }, { @@ -15931,7 +16189,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112530341 } }, { @@ -15992,7 +16251,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112526460 } }, { @@ -16053,7 +16313,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112526420 } }, { @@ -16115,7 +16376,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112515540 } }, { @@ -16151,7 +16413,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112515535 } }, { @@ -16212,7 +16475,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112512636 } }, { @@ -16272,7 +16536,8 @@ "theme": "cafes_and_pubs", "imagery": "osm", "language": "en" - } + }, + "id": 112505740 } }, { @@ -16338,7 +16603,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 112491571 } }, { @@ -16398,7 +16664,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "nl" - } + }, + "id": 112489507 } }, { @@ -16461,7 +16728,8 @@ "imagery": "osm", "language": "en", "move:node/2410018174": "The location of this object is inaccurate and should be moved a few meter" - } + }, + "id": 112482378 } }, { @@ -16497,7 +16765,8 @@ "imagery": "osm", "language": "en", "move:node/2410018174": "The location of this object is inaccurate and should be moved a few meter" - } + }, + "id": 112482374 } }, { @@ -16558,7 +16827,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 112482373 } }, { @@ -16623,7 +16893,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112479766 } }, { @@ -16685,7 +16956,8 @@ "answer": 218, "imagery": "osm", "language": "nl" - } + }, + "id": 112475285 } }, { @@ -16747,7 +17019,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 112473004 } }, { @@ -16809,7 +17082,8 @@ "answer": 14, "imagery": "osm", "language": "nl" - } + }, + "id": 112472850 } }, { @@ -16871,7 +17145,8 @@ "answer": 121, "imagery": "osm", "language": "nl" - } + }, + "id": 112468967 } }, { @@ -16933,7 +17208,8 @@ "answer": 16, "imagery": "osm", "language": "en" - } + }, + "id": 112468748 } }, { @@ -16998,7 +17274,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112468176 } }, { @@ -17037,7 +17314,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112468152 } }, { @@ -17076,7 +17354,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112468142 } }, { @@ -17115,7 +17394,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112468132 } }, { @@ -17154,7 +17434,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112468117 } }, { @@ -17218,7 +17499,8 @@ "language": "en", "add-image": 1, "deletion:node/1603226228": "not found" - } + }, + "id": 112468072 } }, { @@ -17283,7 +17565,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112467810 } }, { @@ -17343,7 +17626,8 @@ "theme": "hackerspaces", "imagery": "AGIVFlandersGRB", "language": "en" - } + }, + "id": 112464085 } }, { @@ -17405,7 +17689,8 @@ "answer": 204, "imagery": "osm", "language": "nl" - } + }, + "id": 112461207 } }, { @@ -17467,7 +17752,8 @@ "answer": 52, "imagery": "osm", "language": "nl" - } + }, + "id": 112459522 } }, { @@ -17533,7 +17819,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112459018 } }, { @@ -17599,7 +17886,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112453960 } }, { @@ -17660,7 +17948,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 112450541 } }, { @@ -17722,7 +18011,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112450408 } }, { @@ -17784,7 +18074,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112450212 } }, { @@ -17851,7 +18142,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" - } + }, + "id": 112450049 } }, { @@ -17913,7 +18205,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112449329 } }, { @@ -17975,7 +18268,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112449036 } }, { @@ -18037,7 +18331,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 112448844 } }, { @@ -18098,7 +18393,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112430185 } }, { @@ -18159,7 +18455,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112428336 } }, { @@ -18219,7 +18516,8 @@ "theme": "hackerspaces", "imagery": "osm", "language": "en" - } + }, + "id": 112428113 } }, { @@ -18266,7 +18564,7 @@ "uid": "13059466", "editor": "MapComplete 0.10.5", "comment": "Adding data with #MapComplete for theme #natuurpunt", - "comments_count": 0, + "comments_count": 1, "source": "Not reported", "imagery_used": "Not reported", "date": "2021-10-12T13:20:04Z", @@ -18284,7 +18582,8 @@ "theme": "natuurpunt", "imagery": "osmfr-basque", "language": "nl" - } + }, + "id": 112418276 } }, { @@ -18346,7 +18645,8 @@ "answer": 13, "imagery": "osm", "language": "nl" - } + }, + "id": 112418058 } }, { @@ -18412,7 +18712,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112414153 } }, { @@ -18472,7 +18773,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112411027 } }, { @@ -18533,7 +18835,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112410942 } }, { @@ -18594,7 +18897,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112410842 } }, { @@ -18660,7 +18964,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112410216 } }, { @@ -18700,7 +19005,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112410148 } }, { @@ -18740,7 +19046,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112410137 } }, { @@ -18806,7 +19113,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112409961 } }, { @@ -18872,7 +19180,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112408152 } }, { @@ -18932,7 +19241,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "nl" - } + }, + "id": 112407680 } }, { @@ -18998,7 +19308,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112407555 } }, { @@ -19064,7 +19375,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112405230 } }, { @@ -19131,7 +19443,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112404738 } }, { @@ -19197,7 +19510,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112404698 } }, { @@ -19258,7 +19572,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112403540 } }, { @@ -19319,7 +19634,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112398731 } }, { @@ -19380,7 +19696,8 @@ "answer": 63, "imagery": "osm", "language": "en" - } + }, + "id": 112394950 } }, { @@ -19440,7 +19757,8 @@ "theme": "surveillance", "imagery": "osm", "language": "fr" - } + }, + "id": 112385386 } }, { @@ -19505,7 +19823,8 @@ "theme": "cafes_and_pubs", "imagery": "osm", "language": "nl" - } + }, + "id": 112384671 } }, { @@ -19544,7 +19863,8 @@ "theme": "cafes_and_pubs", "imagery": "osm", "language": "nl" - } + }, + "id": 112384656 } }, { @@ -19609,7 +19929,8 @@ "theme": "cafes_and_pubs", "imagery": "osm", "language": "nl" - } + }, + "id": 112384422 } }, { @@ -19675,7 +19996,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112384352 } }, { @@ -19740,7 +20062,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "ru" - } + }, + "id": 112383897 } }, { @@ -19805,7 +20128,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "ru" - } + }, + "id": 112383586 } }, { @@ -19871,7 +20195,8 @@ "imagery": "osm", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112383135 } }, { @@ -19905,7 +20230,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 112381580 } }, { @@ -19971,7 +20297,8 @@ "imagery": "osm", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112378407 } }, { @@ -20011,7 +20338,8 @@ "imagery": "osm", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112378399 } }, { @@ -20077,7 +20405,8 @@ "imagery": "osm", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112377559 } }, { @@ -20143,7 +20472,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112376494 } }, { @@ -20208,7 +20538,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "ru" - } + }, + "id": 112375123 } }, { @@ -20270,7 +20601,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 112370013 } }, { @@ -20331,7 +20663,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112367451 } }, { @@ -20391,7 +20724,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112367104 } }, { @@ -20451,7 +20785,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112363104 } }, { @@ -20517,7 +20852,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112357387 } }, { @@ -20583,7 +20919,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112347491 } }, { @@ -20643,7 +20980,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 112345814 } }, { @@ -20704,7 +21042,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 112345632 } }, { @@ -20766,7 +21105,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 112342965 } }, { @@ -20840,7 +21180,8 @@ "theme": "charging_stations", "imagery": "Actueel_ortho25_WMS", "language": "nl" - } + }, + "id": 112340366 } }, { @@ -20901,7 +21242,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112338978 } }, { @@ -20961,7 +21303,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 112337671 } }, { @@ -21021,7 +21364,8 @@ "theme": "charging_stations", "imagery": "Actueel_ortho25_WMS", "language": "nl" - } + }, + "id": 112334732 } }, { @@ -21081,7 +21425,8 @@ "theme": "surveillance", "imagery": "osm", "language": "fr" - } + }, + "id": 112332930 } }, { @@ -21141,7 +21486,8 @@ "theme": "charging_stations", "imagery": "Actueel_ortho25_WMS", "language": "nl" - } + }, + "id": 112330699 } }, { @@ -21203,7 +21549,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 112330574 } }, { @@ -21264,7 +21611,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112328716 } }, { @@ -21326,7 +21674,8 @@ "answer": 3, "imagery": "osm", "language": "en" - } + }, + "id": 112328411 } }, { @@ -21387,7 +21736,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112316572 } }, { @@ -21449,7 +21799,8 @@ "answer": 6, "imagery": "osm", "language": "nl" - } + }, + "id": 112316272 } }, { @@ -21510,7 +21861,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 112314658 } }, { @@ -21571,7 +21923,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112314551 } }, { @@ -21632,7 +21985,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112309536 } }, { @@ -21698,7 +22052,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112309468 } }, { @@ -21764,7 +22119,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112298065 } }, { @@ -21825,7 +22181,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112297552 } }, { @@ -21886,7 +22243,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 112297440 } }, { @@ -21947,7 +22305,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112296202 } }, { @@ -22009,7 +22368,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 112296054 } }, { @@ -22071,7 +22431,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 112290463 } }, { @@ -22137,7 +22498,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112281434 } }, { @@ -22199,7 +22561,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 112279328 } }, { @@ -22265,7 +22628,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112278882 } }, { @@ -22331,7 +22695,8 @@ "imagery": "osm", "language": "ru", "theme-creator": "Midgard" - } + }, + "id": 112278613 } }, { @@ -22393,7 +22758,8 @@ "answer": 12, "imagery": "osm", "language": "nl" - } + }, + "id": 112276370 } }, { @@ -22459,7 +22825,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112257164 } }, { @@ -22521,7 +22888,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 112254501 } }, { @@ -22582,7 +22950,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe" - } + }, + "id": 112248115 } }, { @@ -22643,7 +23012,8 @@ "answer": 10, "imagery": "osm", "language": "nl" - } + }, + "id": 112240027 } }, { @@ -22704,7 +23074,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 112234645 } }, { @@ -22765,7 +23136,8 @@ "imagery": "UrbISOrtho", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112229544 } }, { @@ -22826,7 +23198,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112224009 } }, { @@ -22887,7 +23260,8 @@ "imagery": "UrbISOrtho", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112212373 } }, { @@ -22948,7 +23322,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112211689 } }, { @@ -23009,7 +23384,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112211183 } }, { @@ -23070,7 +23446,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112209084 } }, { @@ -23131,7 +23508,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 112208365 } }, { @@ -23197,7 +23575,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112205719 } }, { @@ -23258,7 +23637,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112191771 } }, { @@ -23320,7 +23700,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" - } + }, + "id": 112186493 } }, { @@ -23380,7 +23761,8 @@ "theme": "surveillance", "imagery": "osm", "language": "fr" - } + }, + "id": 112185465 } }, { @@ -23441,7 +23823,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112179831 } }, { @@ -23502,7 +23885,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112179174 } }, { @@ -23563,7 +23947,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe" - } + }, + "id": 112178507 } }, { @@ -23624,7 +24009,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 112178005 } }, { @@ -23686,7 +24072,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112163110 } }, { @@ -23748,7 +24135,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112128443 } }, { @@ -23809,7 +24197,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112127869 } }, { @@ -23875,7 +24264,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112126523 } }, { @@ -23941,7 +24331,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112126121 } }, { @@ -24001,7 +24392,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 112114876 } }, { @@ -24067,7 +24459,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112111343 } }, { @@ -24133,7 +24526,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112108235 } }, { @@ -24173,7 +24567,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112107663 } }, { @@ -24213,7 +24608,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112107662 } }, { @@ -24279,7 +24675,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112104949 } }, { @@ -24339,7 +24736,8 @@ "theme": "wheelchairsidewalks", "imagery": "osm", "language": "en" - } + }, + "id": 112093739 } }, { @@ -24399,7 +24797,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 112093106 } }, { @@ -24459,7 +24858,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 112092983 } }, { @@ -24519,7 +24919,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "nl" - } + }, + "id": 112092780 } }, { @@ -24580,7 +24981,8 @@ "imagery": "osm", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112088657 } }, { @@ -24646,7 +25048,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112076269 } }, { @@ -24712,7 +25115,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112073969 } }, { @@ -24778,7 +25182,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 112073624 } }, { @@ -24840,7 +25245,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 112068300 } }, { @@ -24906,7 +25312,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112063015 } }, { @@ -24972,7 +25379,8 @@ "imagery": "osm", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112058690 } }, { @@ -25033,7 +25441,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 112042373 } }, { @@ -25095,7 +25504,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112037485 } }, { @@ -25155,7 +25565,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112035851 } }, { @@ -25216,7 +25627,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 112035466 } }, { @@ -25277,7 +25689,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 112034198 } }, { @@ -25339,7 +25752,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112030042 } }, { @@ -25399,7 +25813,8 @@ "theme": "food", "imagery": "osm", "language": "nl" - } + }, + "id": 112026025 } }, { @@ -25460,7 +25875,8 @@ "imagery": "AGIV", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 112025893 } }, { @@ -25520,7 +25936,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 112025734 } }, { @@ -25581,7 +25998,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112023175 } }, { @@ -25642,7 +26060,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112022340 } }, { @@ -25703,7 +26122,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 112022181 } }, { @@ -25764,7 +26184,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112022086 } }, { @@ -25825,7 +26246,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112022070 } }, { @@ -25886,7 +26308,8 @@ "imagery": "osm", "language": "zh_Hant", "theme-creator": "MapComplete" - } + }, + "id": 112020043 } }, { @@ -25947,7 +26370,8 @@ "imagery": "AGIV", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112016293 } }, { @@ -26008,7 +26432,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe" - } + }, + "id": 112015290 } }, { @@ -26069,7 +26494,8 @@ "imagery": "osm", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 112014103 } }, { @@ -26130,7 +26556,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 112008969 } }, { @@ -26191,7 +26618,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112007497 } }, { @@ -26252,7 +26680,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 112006165 } }, { @@ -26312,7 +26741,8 @@ "theme": "cafes_and_pubs", "imagery": "osm", "language": "en" - } + }, + "id": 112005129 } }, { @@ -26373,7 +26803,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112004831 } }, { @@ -26434,7 +26865,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 112003493 } }, { @@ -26495,7 +26927,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 112002831 } }, { @@ -26556,7 +26989,8 @@ "imagery": "osm", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 112002251 } }, { @@ -26617,7 +27051,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 112001500 } }, { @@ -26677,7 +27112,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 112001382 } }, { @@ -26738,7 +27174,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 112000014 } }, { @@ -26804,7 +27241,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111997577 } }, { @@ -26866,7 +27304,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111996531 } }, { @@ -26927,7 +27366,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111973084 } }, { @@ -26988,7 +27428,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111963945 } }, { @@ -27049,7 +27490,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111963037 } }, { @@ -27115,7 +27557,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111958971 } }, { @@ -27181,7 +27624,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 111952857 } }, { @@ -27242,7 +27686,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 111949930 } }, { @@ -27302,7 +27747,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 111948340 } }, { @@ -27362,7 +27808,8 @@ "theme": "surveillance", "imagery": "osm", "language": "fr" - } + }, + "id": 111945546 } } ] diff --git a/Docs/Tools/stats/stats.2021-11.json b/Docs/Tools/stats/stats.2021-11.json index e48c117b11..402f05fe6e 100644 --- a/Docs/Tools/stats/stats.2021-11.json +++ b/Docs/Tools/stats/stats.2021-11.json @@ -61,7 +61,8 @@ "language": "de", "change_over_5000m": 8, "change_within_50m": 1 - } + }, + "id": 114413321 } }, { @@ -123,7 +124,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 4 - } + }, + "id": 114390777 } }, { @@ -185,7 +187,8 @@ "imagery": "HDM_HOT", "language": "de", "change_over_5000m": 5 - } + }, + "id": 114389648 } }, { @@ -246,7 +249,8 @@ "answer": 52, "imagery": "osm", "language": "en" - } + }, + "id": 114384752 } }, { @@ -313,7 +317,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114380980 } }, { @@ -374,7 +379,8 @@ "answer": 3, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 114379235 } }, { @@ -437,7 +443,8 @@ "imagery": "osm", "language": "it", "add-image": 1 - } + }, + "id": 114377590 } }, { @@ -499,7 +506,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "change_within_5000m": 2 - } + }, + "id": 114375671 } }, { @@ -560,7 +568,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 114369149 } }, { @@ -627,7 +636,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114368553 } }, { @@ -688,7 +698,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114368491 } }, { @@ -755,7 +766,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 114368266 } }, { @@ -821,7 +833,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 114367986 } }, { @@ -882,7 +895,8 @@ "answer": 39, "imagery": "osm", "language": "en" - } + }, + "id": 114354518 } }, { @@ -943,7 +957,8 @@ "answer": 3, "imagery": "osm", "language": "en" - } + }, + "id": 114351414 } }, { @@ -1007,7 +1022,8 @@ "language": "de", "change_over_5000m": 5, "change_within_25m": 2 - } + }, + "id": 114349593 } }, { @@ -1069,7 +1085,8 @@ "imagery": "Mapbox", "language": "de", "change_within_25m": 3 - } + }, + "id": 114348251 } }, { @@ -1134,7 +1151,8 @@ "change_over_5000m": 2, "change_within_25m": 2, "change_within_50m": 1 - } + }, + "id": 114347399 } }, { @@ -1199,7 +1217,8 @@ "change_within_50m": 11, "change_within_100m": 29, "change_within_500m": 88 - } + }, + "id": 114343276 } }, { @@ -1261,7 +1280,8 @@ "answer": 41, "imagery": "osm", "language": "en" - } + }, + "id": 114340268 } }, { @@ -1323,7 +1343,8 @@ "create": 1, "imagery": "EsriWorldImagery", "language": "ca" - } + }, + "id": 114340098 } }, { @@ -1388,7 +1409,8 @@ "add-image": 2, "change_over_5000m": 2, "change_within_1000m": 6 - } + }, + "id": 114338984 } }, { @@ -1449,7 +1471,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 114335960 } }, { @@ -1510,7 +1533,8 @@ "create": 1, "imagery": "USDA-NAIP", "language": "en" - } + }, + "id": 114329759 } }, { @@ -1572,7 +1596,8 @@ "imagery": "osm", "language": "en", "change_over_5000m": 1 - } + }, + "id": 114319431 } }, { @@ -1634,7 +1659,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 114319021 } }, { @@ -1698,7 +1724,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 7 - } + }, + "id": 114316814 } }, { @@ -1760,7 +1787,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 1 - } + }, + "id": 114306447 } }, { @@ -1822,7 +1850,8 @@ "imagery": "osm", "language": "nl", "change_within_25m": 5 - } + }, + "id": 114304836 } }, { @@ -1884,7 +1913,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114304491 } }, { @@ -1945,7 +1975,8 @@ "answer": 3, "imagery": "osm", "language": "de" - } + }, + "id": 114302874 } }, { @@ -2006,7 +2037,8 @@ "answer": 2, "imagery": "osm", "language": "ca" - } + }, + "id": 114301863 } }, { @@ -2067,7 +2099,8 @@ "create": 1, "imagery": "PNOA-Spain-TMS", "language": "ca" - } + }, + "id": 114301506 } }, { @@ -2136,7 +2169,8 @@ "language": "en", "deletion:node/8860535700": "not found", "deletion:node/9165200919": "not found" - } + }, + "id": 114279545 } }, { @@ -2199,7 +2233,8 @@ "create": 1, "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 114279284 } }, { @@ -2265,7 +2300,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 114273016 } }, { @@ -2327,7 +2363,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114269075 } }, { @@ -2389,7 +2426,8 @@ "imagery": "AGIV", "language": "en", "change_over_5000m": 1 - } + }, + "id": 114261635 } }, { @@ -2471,7 +2509,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 114253236 } }, { @@ -2537,7 +2576,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 114252798 } }, { @@ -2598,7 +2638,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114238844 } }, { @@ -2662,7 +2703,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 4 - } + }, + "id": 114238775 } }, { @@ -2724,7 +2766,8 @@ "imagery": "osm", "language": "en", "change_within_1000m": 2 - } + }, + "id": 114236873 } }, { @@ -2788,7 +2831,8 @@ "language": "en", "change_over_5000m": 3, "change_within_25m": 12 - } + }, + "id": 114235477 } }, { @@ -2850,7 +2894,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114226221 } }, { @@ -2912,7 +2957,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 4 - } + }, + "id": 114226105 } }, { @@ -2976,7 +3022,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 11 - } + }, + "id": 114222569 } }, { @@ -3037,7 +3084,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 114220664 } }, { @@ -3103,7 +3151,8 @@ "answer": 7, "imagery": "osm", "language": "en" - } + }, + "id": 114218744 } }, { @@ -3165,7 +3214,8 @@ "imagery": "osm", "language": "en", "change_over_5000m": 1 - } + }, + "id": 114216269 } }, { @@ -3227,7 +3277,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114209976 } }, { @@ -3291,7 +3342,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 1 - } + }, + "id": 114209389 } }, { @@ -3354,7 +3406,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "change_within_50m": 1 - } + }, + "id": 114195601 } }, { @@ -3420,7 +3473,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114190549 } }, { @@ -3482,7 +3536,8 @@ "imagery": "osm", "language": "en", "change_within_50m": 1 - } + }, + "id": 114187255 } }, { @@ -3545,7 +3600,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "change_within_50m": 1 - } + }, + "id": 114179670 } }, { @@ -3611,7 +3667,8 @@ "answer": 8, "imagery": "osm", "language": "en" - } + }, + "id": 114152917 } }, { @@ -3672,7 +3729,8 @@ "imagery": "CyclOSM", "language": "en", "add-image": 3 - } + }, + "id": 114145243 } }, { @@ -3733,7 +3791,8 @@ "answer": 3, "imagery": "osm", "language": "nl" - } + }, + "id": 114143108 } }, { @@ -3800,7 +3859,8 @@ "create": 1, "imagery": "HDM_HOT", "language": "nl" - } + }, + "id": 114141649 } }, { @@ -3866,7 +3926,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 114137991 } }, { @@ -3927,7 +3988,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114137682 } }, { @@ -3988,7 +4050,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 114131999 } }, { @@ -4051,7 +4114,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 26 - } + }, + "id": 114127880 } }, { @@ -4114,7 +4178,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 4 - } + }, + "id": 114114258 } }, { @@ -4181,7 +4246,8 @@ "change_within_100m": 4, "change_within_500m": 4, "change_within_5000m": 9 - } + }, + "id": 114110334 } }, { @@ -4249,7 +4315,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114109022 } }, { @@ -4312,7 +4379,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 11 - } + }, + "id": 114108771 } }, { @@ -4377,7 +4445,8 @@ "change_within_25m": 19, "change_within_50m": 10, "change_within_500m": 1 - } + }, + "id": 114107213 } }, { @@ -4440,7 +4509,8 @@ "create": 3, "imagery": "AGIV", "language": "en" - } + }, + "id": 114104745 } }, { @@ -4501,7 +4571,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 114102892 } }, { @@ -4565,7 +4636,8 @@ "language": "en", "change_within_25m": 3, "change_within_50m": 1 - } + }, + "id": 114102705 } }, { @@ -4629,7 +4701,8 @@ "language": "en", "change_within_25m": 34, "change_within_50m": 7 - } + }, + "id": 114099060 } }, { @@ -4690,7 +4763,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 114097689 } }, { @@ -4751,7 +4825,8 @@ "imagery": "HDM_HOT", "language": "nl", "add-image": 2 - } + }, + "id": 114097283 } }, { @@ -4815,7 +4890,8 @@ "language": "en", "change_within_25m": 5, "change_within_500m": 5 - } + }, + "id": 114095799 } }, { @@ -4876,7 +4952,8 @@ "answer": 10, "imagery": "osm", "language": "en" - } + }, + "id": 114094304 } }, { @@ -4940,7 +5017,8 @@ "language": "en", "change_within_25m": 11, "change_within_50m": 3 - } + }, + "id": 114089983 } }, { @@ -5002,7 +5080,8 @@ "imagery": "HDM_HOT", "language": "nl", "add-image": 4 - } + }, + "id": 114086967 } }, { @@ -5066,7 +5145,8 @@ "language": "en", "change_within_25m": 14, "change_within_100m": 10 - } + }, + "id": 114084633 } }, { @@ -5127,7 +5207,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114079110 } }, { @@ -5189,7 +5270,8 @@ "imagery": "AGIV", "language": "nl", "conflation": 18 - } + }, + "id": 114079039 } }, { @@ -5224,7 +5306,8 @@ "answer": 1, "imagery": "AGIV", "language": "nl" - } + }, + "id": 114079031 } }, { @@ -5285,7 +5368,8 @@ "answer": 6, "imagery": "osm", "language": "nl" - } + }, + "id": 114077348 } }, { @@ -5349,7 +5433,8 @@ "imagery": "AGIV", "language": "nl", "conflation": 40 - } + }, + "id": 114076677 } }, { @@ -5410,7 +5495,8 @@ "answer": 15, "imagery": "osm", "language": "en" - } + }, + "id": 114074271 } }, { @@ -5474,7 +5560,8 @@ "language": "en", "add-image": 3, "change_over_5000m": 7 - } + }, + "id": 114071129 } }, { @@ -5538,7 +5625,8 @@ "language": "en", "add-image": 3, "change_over_5000m": 8 - } + }, + "id": 114070865 } }, { @@ -5603,7 +5691,8 @@ "language": "en", "change_within_25m": 5, "move:node/9272741457": "improve_accuracy" - } + }, + "id": 114067572 } }, { @@ -5666,7 +5755,8 @@ "imagery": "osm", "language": "en", "change_over_5000m": 21 - } + }, + "id": 114066212 } }, { @@ -5730,7 +5820,8 @@ "language": "en", "add-image": 1, "change_within_25m": 4 - } + }, + "id": 114056542 } }, { @@ -5792,7 +5883,8 @@ "create": 1, "imagery": "osm", "language": "it" - } + }, + "id": 114054547 } }, { @@ -5854,7 +5946,8 @@ "create": 1, "imagery": "EsriWorldImagery", "language": "it" - } + }, + "id": 114053349 } }, { @@ -5921,7 +6014,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114050247 } }, { @@ -5987,7 +6081,8 @@ "answer": 7, "imagery": "osm", "language": "en" - } + }, + "id": 114049879 } }, { @@ -6049,7 +6144,8 @@ "imagery": "osm", "language": "en", "change_within_1000m": 2 - } + }, + "id": 114046939 } }, { @@ -6112,7 +6208,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 6 - } + }, + "id": 114044551 } }, { @@ -6176,7 +6273,8 @@ "language": "it", "change_within_500m": 2, "change_within_1000m": 6 - } + }, + "id": 114036668 } }, { @@ -6243,7 +6341,8 @@ "create": 1, "imagery": "osm", "language": "it" - } + }, + "id": 114034673 } }, { @@ -6306,7 +6405,8 @@ "language": "en", "add-image": 1, "change_within_500m": 1 - } + }, + "id": 114034194 } }, { @@ -6368,7 +6468,8 @@ "create": 2, "imagery": "osm", "language": "it" - } + }, + "id": 114034038 } }, { @@ -6431,7 +6532,8 @@ "imagery": "osm", "language": "en", "change_within_5000m": 1 - } + }, + "id": 114033487 } }, { @@ -6494,7 +6596,8 @@ "imagery": "osm", "language": "en", "change_over_5000m": 2 - } + }, + "id": 114032625 } }, { @@ -6558,7 +6661,8 @@ "language": "en", "add-image": 1, "change_within_25m": 6 - } + }, + "id": 114032166 } }, { @@ -6621,7 +6725,8 @@ "language": "en", "change_within_25m": 1, "deletion:node/4314294835": "not found" - } + }, + "id": 114031265 } }, { @@ -6684,7 +6789,8 @@ "imagery": "HDM_HOT", "language": "en", "change_within_5000m": 3 - } + }, + "id": 114030479 } }, { @@ -6747,7 +6853,8 @@ "language": "en", "add-image": 1, "change_within_25m": 4 - } + }, + "id": 114030464 } }, { @@ -6808,7 +6915,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 114029802 } }, { @@ -6875,7 +6983,8 @@ "change_within_25m": 45, "change_within_100m": 6, "move:node/9269860379": "improve_accuracy" - } + }, + "id": 114029781 } }, { @@ -6941,7 +7050,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114029511 } }, { @@ -7002,7 +7112,8 @@ "answer": 43, "imagery": "osm", "language": "en" - } + }, + "id": 114027270 } }, { @@ -7063,7 +7174,8 @@ "answer": 33, "imagery": "osm", "language": "en" - } + }, + "id": 114026957 } }, { @@ -7124,7 +7236,8 @@ "answer": 11, "imagery": "osm", "language": "en" - } + }, + "id": 114025440 } }, { @@ -7188,7 +7301,8 @@ "language": "en", "change_within_25m": 1, "change_within_50m": 1 - } + }, + "id": 114025211 } }, { @@ -7249,7 +7363,8 @@ "answer": 17, "imagery": "osm", "language": "en" - } + }, + "id": 114023582 } }, { @@ -7312,7 +7427,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "change_within_500m": 6 - } + }, + "id": 114023430 } }, { @@ -7376,7 +7492,8 @@ "imagery": "osm", "language": "en", "move:node/9269432914": "improve_accuracy" - } + }, + "id": 114020398 } }, { @@ -7440,7 +7557,8 @@ "language": "en", "add-image": 1, "change_within_25m": 3 - } + }, + "id": 114020355 } }, { @@ -7505,7 +7623,8 @@ "add-image": 1, "change_within_25m": 3, "change_within_500m": 1 - } + }, + "id": 114018406 } }, { @@ -7572,7 +7691,8 @@ "create": 4, "imagery": "osm", "language": "en" - } + }, + "id": 114017985 } }, { @@ -7633,7 +7753,8 @@ "answer": 4, "imagery": "osm", "language": "de" - } + }, + "id": 114010623 } }, { @@ -7694,7 +7815,8 @@ "imagery": "CartoDB.Voyager", "language": "it", "add-image": 1 - } + }, + "id": 114008323 } }, { @@ -7757,7 +7879,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "change_within_25m": 4 - } + }, + "id": 113993823 } }, { @@ -7820,7 +7943,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 113988227 } }, { @@ -7881,7 +8005,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113977700 } }, { @@ -7942,7 +8067,8 @@ "answer": 10, "imagery": "osm", "language": "nl" - } + }, + "id": 113949456 } }, { @@ -8003,7 +8129,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113949393 } }, { @@ -8067,7 +8194,8 @@ "language": "nl", "add-image": 1, "change_within_25m": 8 - } + }, + "id": 113949291 } }, { @@ -8129,7 +8257,8 @@ "imagery": "HDM_HOT", "language": "nl", "add-image": 12 - } + }, + "id": 113947704 } }, { @@ -8192,7 +8321,8 @@ "imagery": "HDM_HOT", "language": "nl", "change_within_5000m": 4 - } + }, + "id": 113943668 } }, { @@ -8259,7 +8389,8 @@ "imagery": "osm", "language": "nl", "change_within_500m": 1 - } + }, + "id": 113939005 } }, { @@ -8322,7 +8453,8 @@ "imagery": "HDM_HOT", "language": "nl", "change_within_25m": 7 - } + }, + "id": 113938518 } }, { @@ -8383,7 +8515,8 @@ "answer": 3, "imagery": "osm", "language": "nl" - } + }, + "id": 113932492 } }, { @@ -8446,7 +8579,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 2 - } + }, + "id": 113922524 } }, { @@ -8510,7 +8644,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 18 - } + }, + "id": 113919138 } }, { @@ -8572,7 +8707,8 @@ "answer": 6, "imagery": "osm", "language": "nl" - } + }, + "id": 113903019 } }, { @@ -8635,7 +8771,8 @@ "imagery": "HDM_HOT", "language": "nl", "change_within_500m": 6 - } + }, + "id": 113894057 } }, { @@ -8696,7 +8833,8 @@ "answer": 7, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113891121 } }, { @@ -8760,7 +8898,8 @@ "language": "nl", "add-image": 1, "change_within_25m": 7 - } + }, + "id": 113885921 } }, { @@ -8822,7 +8961,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113874951 } }, { @@ -8883,7 +9023,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113871656 } }, { @@ -8945,7 +9086,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113871399 } }, { @@ -9007,7 +9149,8 @@ "answer": 14, "imagery": "osm", "language": "en" - } + }, + "id": 113871332 } }, { @@ -9075,7 +9218,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "add-image": 2 - } + }, + "id": 113870726 } }, { @@ -9142,7 +9286,8 @@ "create": 1, "imagery": "CartoDB.Positron", "language": "nl" - } + }, + "id": 113870121 } }, { @@ -9208,7 +9353,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 2 - } + }, + "id": 113870099 } }, { @@ -9270,7 +9416,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113864247 } }, { @@ -9335,7 +9482,8 @@ "language": "nl", "change_within_500m": 2, "deletion:node/9257811058": "testing point" - } + }, + "id": 113863158 } }, { @@ -9398,7 +9546,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "change_within_25m": 2 - } + }, + "id": 113860718 } }, { @@ -9461,7 +9610,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 3 - } + }, + "id": 113860578 } }, { @@ -9522,7 +9672,8 @@ "answer": 3, "imagery": "osm", "language": "nl" - } + }, + "id": 113859710 } }, { @@ -9583,7 +9734,8 @@ "answer": 4, "imagery": "osm", "language": "nl" - } + }, + "id": 113859499 } }, { @@ -9645,7 +9797,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113858537 } }, { @@ -9707,7 +9860,8 @@ "imagery": "HDM_HOT", "language": "nl", "add-image": 3 - } + }, + "id": 113857890 } }, { @@ -9769,7 +9923,8 @@ "imagery": "osm", "language": "en", "change_within_5000m": 4 - } + }, + "id": 113854721 } }, { @@ -9831,7 +9986,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113847794 } }, { @@ -9893,7 +10049,8 @@ "imagery": "osm", "language": "en", "add-image": 6 - } + }, + "id": 113844419 } }, { @@ -9954,7 +10111,8 @@ "import": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113840870 } }, { @@ -10018,7 +10176,8 @@ "language": "en", "add-image": 2, "change_within_25m": 5 - } + }, + "id": 113840427 } }, { @@ -10080,7 +10239,8 @@ "import": 4, "imagery": "AGIVFlandersGRB", "language": "en" - } + }, + "id": 113840300 } }, { @@ -10145,7 +10305,8 @@ "add-image": 7, "change_within_25m": 14, "change_within_500m": 2 - } + }, + "id": 113840279 } }, { @@ -10211,7 +10372,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113840019 } }, { @@ -10274,7 +10436,8 @@ "create": 5, "imagery": "Mapbox", "language": "en" - } + }, + "id": 113833223 } }, { @@ -10337,7 +10500,8 @@ "imagery": "osm", "language": "en", "add-image": 20 - } + }, + "id": 113827490 } }, { @@ -10398,7 +10562,8 @@ "import": 15, "imagery": "AGIVFlandersGRB", "language": "en" - } + }, + "id": 113823101 } }, { @@ -10462,7 +10627,8 @@ "language": "en", "change_within_100m": 1, "change_within_500m": 1 - } + }, + "id": 113821970 } }, { @@ -10524,7 +10690,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113820175 } }, { @@ -10585,7 +10752,8 @@ "answer": 7, "imagery": "osm", "language": "nl" - } + }, + "id": 113819738 } }, { @@ -10647,7 +10815,8 @@ "imagery": "osm", "language": "en", "change_within_5000m": 10 - } + }, + "id": 113815150 } }, { @@ -10713,7 +10882,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113811125 } }, { @@ -10777,7 +10947,8 @@ "language": "en", "change_within_25m": 9, "move:node/9247814726": "improve_accuracy" - } + }, + "id": 113810342 } }, { @@ -10843,7 +11014,8 @@ "answer": 447, "imagery": "osm", "language": "en" - } + }, + "id": 113810139 } }, { @@ -10904,7 +11076,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 113810072 } }, { @@ -10974,7 +11147,8 @@ "answer": 324, "imagery": "osm", "language": "en" - } + }, + "id": 113807773 } }, { @@ -11036,7 +11210,8 @@ "language": "nl", "add-image": 8, "change_within_1000m": 8 - } + }, + "id": 113806724 } }, { @@ -11098,7 +11273,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 53 - } + }, + "id": 113806349 } }, { @@ -11160,7 +11336,8 @@ "language": "nl", "add-image": 1, "change_within_25m": 1 - } + }, + "id": 113800961 } }, { @@ -11221,7 +11398,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 113800605 } }, { @@ -11284,7 +11462,8 @@ "language": "en", "change_within_25m": 1, "change_within_50m": 2 - } + }, + "id": 113799603 } }, { @@ -11346,7 +11525,8 @@ "language": "nl", "add-image": 1, "change_within_25m": 1 - } + }, + "id": 113795722 } }, { @@ -11410,7 +11590,8 @@ "language": "nl", "add-image": 6, "change_within_25m": 7 - } + }, + "id": 113795604 } }, { @@ -11471,7 +11652,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113793660 } }, { @@ -11532,7 +11714,8 @@ "answer": 5, "imagery": "osm", "language": "en" - } + }, + "id": 113787479 } }, { @@ -11594,7 +11777,8 @@ "imagery": "osm", "language": "nl", "change_within_5000m": 3 - } + }, + "id": 113783093 } }, { @@ -11655,7 +11839,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113781509 } }, { @@ -11717,7 +11902,8 @@ "answer": 10, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113781375 } }, { @@ -11780,7 +11966,8 @@ "imagery": "osm", "language": "en", "change_within_500m": 1 - } + }, + "id": 113780467 } }, { @@ -11843,7 +12030,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 113777162 } }, { @@ -11905,7 +12093,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113773473 } }, { @@ -11967,7 +12156,8 @@ "create": 3, "imagery": "osm", "language": "fr" - } + }, + "id": 113772524 } }, { @@ -12028,7 +12218,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113770114 } }, { @@ -12091,7 +12282,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "change_within_500m": 2 - } + }, + "id": 113767259 } }, { @@ -12159,7 +12351,8 @@ "imagery": "osm", "language": "de", "move:node/-1": "improve_accuracy" - } + }, + "id": 113767040 } }, { @@ -12222,7 +12415,8 @@ "language": "en", "add-image": 2, "change_within_500m": 2 - } + }, + "id": 113767012 } }, { @@ -12292,7 +12486,8 @@ "language": "de", "move:node/-1": "improve_accuracy", "move:node/-2": "improve_accuracy" - } + }, + "id": 113766752 } }, { @@ -12360,7 +12555,8 @@ "imagery": "osm", "language": "de", "move:node/1719597181": "improve_accuracy" - } + }, + "id": 113766100 } }, { @@ -12427,7 +12623,8 @@ "create": 6, "imagery": "osm", "language": "de" - } + }, + "id": 113765933 } }, { @@ -12495,7 +12692,8 @@ "language": "de", "move:node/267286858": "improve_accuracy", "move:node/322806285": "relocated" - } + }, + "id": 113765601 } }, { @@ -12562,7 +12760,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113765369 } }, { @@ -12634,7 +12833,8 @@ "move:node/1754404771": "improve_accuracy", "move:node/1754404811": "improve_accuracy", "move:node/5368395007": "improve_accuracy" - } + }, + "id": 113765275 } }, { @@ -12700,7 +12900,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113765274 } }, { @@ -12766,7 +12967,8 @@ "create": 3, "imagery": "osm", "language": "de" - } + }, + "id": 113765121 } }, { @@ -12832,7 +13034,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113764730 } }, { @@ -12893,7 +13096,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 113762865 } }, { @@ -12960,7 +13164,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "add-image": 1 - } + }, + "id": 113762052 } }, { @@ -13029,7 +13234,8 @@ "language": "de", "move:node/-3": "improve_accuracy", "move:node/9250298364": "improve_accuracy" - } + }, + "id": 113761796 } }, { @@ -13099,7 +13305,8 @@ "move:node/-1": "improve_accuracy", "move:node/-2": "improve_accuracy", "move:node/-3": "improve_accuracy" - } + }, + "id": 113761638 } }, { @@ -13160,7 +13367,8 @@ "answer": 3, "imagery": "osm", "language": "it" - } + }, + "id": 113761593 } }, { @@ -13226,7 +13434,8 @@ "answer": 3, "imagery": "osm", "language": "de" - } + }, + "id": 113761534 } }, { @@ -13294,7 +13503,8 @@ "imagery": "osm", "language": "en", "change_within_50m": 2 - } + }, + "id": 113760996 } }, { @@ -13361,7 +13571,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113760883 } }, { @@ -13428,7 +13639,8 @@ "create": 3, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113760658 } }, { @@ -13495,7 +13707,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113760489 } }, { @@ -13561,7 +13774,8 @@ "answer": 4, "imagery": "osm", "language": "de" - } + }, + "id": 113760328 } }, { @@ -13635,7 +13849,8 @@ "change_within_50m": 3, "change_within_100m": 2, "move:node/9250188450": "improve_accuracy" - } + }, + "id": 113760141 } }, { @@ -13707,7 +13922,8 @@ "change_within_50m": 6, "move:node/9250013123": "improve_accuracy", "move:node/9250177500": "improve_accuracy" - } + }, + "id": 113759711 } }, { @@ -13786,7 +14002,8 @@ "move:node/9250176600": "improve_accuracy", "move:node/9250185096": "improve_accuracy", "move:node/9250200237": "improve_accuracy" - } + }, + "id": 113759556 } }, { @@ -13855,7 +14072,8 @@ "language": "en", "change_within_25m": 6, "change_within_50m": 1 - } + }, + "id": 113759501 } }, { @@ -13927,7 +14145,8 @@ "change_within_25m": 35, "move:node/9250160715": "improve_accuracy", "move:node/9250171354": "improve_accuracy" - } + }, + "id": 113759289 } }, { @@ -13988,7 +14207,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113759055 } }, { @@ -14056,7 +14276,8 @@ "imagery": "osm", "language": "en", "change_within_100m": 5 - } + }, + "id": 113758800 } }, { @@ -14119,7 +14340,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "change_within_5000m": 4 - } + }, + "id": 113758504 } }, { @@ -14186,7 +14408,8 @@ "create": 2, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113758185 } }, { @@ -14249,7 +14472,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "change_within_5000m": 11 - } + }, + "id": 113758182 } }, { @@ -14321,7 +14545,8 @@ "change_within_50m": 10, "move:node/9250101192": "improve_accuracy", "move:node/9250140726": "improve_accuracy" - } + }, + "id": 113757575 } }, { @@ -14391,7 +14616,8 @@ "add-image": 1, "change_within_25m": 6, "change_within_50m": 1 - } + }, + "id": 113757473 } }, { @@ -14460,7 +14686,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "relation-fix": 3 - } + }, + "id": 113757237 } }, { @@ -14530,7 +14757,8 @@ "add-image": 4, "change_within_25m": 22, "change_within_50m": 3 - } + }, + "id": 113757122 } }, { @@ -14600,7 +14828,8 @@ "change_within_25m": 6, "change_within_50m": 17, "change_within_100m": 1 - } + }, + "id": 113756938 } }, { @@ -14671,7 +14900,8 @@ "add-image": 2, "change_within_25m": 4, "move:node/9250058943": "improve_accuracy" - } + }, + "id": 113756828 } }, { @@ -14711,7 +14941,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113756815 } }, { @@ -14779,7 +15010,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 1 - } + }, + "id": 113756814 } }, { @@ -14847,7 +15079,8 @@ "language": "de", "add-image": 1, "change_within_25m": 1 - } + }, + "id": 113756772 } }, { @@ -14917,7 +15150,8 @@ "change_within_25m": 7, "change_within_50m": 1, "change_within_100m": 4 - } + }, + "id": 113756676 } }, { @@ -14983,7 +15217,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113756593 } }, { @@ -15054,7 +15289,8 @@ "change_within_25m": 8, "change_within_50m": 14, "change_within_100m": 5 - } + }, + "id": 113756494 } }, { @@ -15120,7 +15356,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113756026 } }, { @@ -15187,7 +15424,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113754874 } }, { @@ -15253,7 +15491,8 @@ "answer": 10, "imagery": "osm", "language": "de" - } + }, + "id": 113754698 } }, { @@ -15320,7 +15559,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113754541 } }, { @@ -15386,7 +15626,8 @@ "answer": 7, "imagery": "osm", "language": "de" - } + }, + "id": 113754500 } }, { @@ -15452,7 +15693,8 @@ "answer": 4, "imagery": "osm", "language": "de" - } + }, + "id": 113754433 } }, { @@ -15518,7 +15760,8 @@ "answer": 13, "imagery": "osm", "language": "de" - } + }, + "id": 113754188 } }, { @@ -15584,7 +15827,8 @@ "answer": 8, "imagery": "osm", "language": "de" - } + }, + "id": 113754116 } }, { @@ -15650,7 +15894,8 @@ "answer": 59, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113754045 } }, { @@ -15716,7 +15961,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113752071 } }, { @@ -15779,7 +16025,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113749418 } }, { @@ -15845,7 +16092,8 @@ "answer": 5, "imagery": "osm", "language": "de" - } + }, + "id": 113747585 } }, { @@ -15911,7 +16159,8 @@ "answer": 8, "imagery": "osm", "language": "de" - } + }, + "id": 113747362 } }, { @@ -15977,7 +16226,8 @@ "answer": 17, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113747067 } }, { @@ -16043,7 +16293,8 @@ "answer": 9, "imagery": "osm", "language": "de" - } + }, + "id": 113746594 } }, { @@ -16109,7 +16360,8 @@ "answer": 12, "imagery": "osm", "language": "de" - } + }, + "id": 113746256 } }, { @@ -16175,7 +16427,8 @@ "answer": 36, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113744063 } }, { @@ -16241,7 +16494,8 @@ "answer": 9, "imagery": "osm", "language": "de" - } + }, + "id": 113744040 } }, { @@ -16307,7 +16561,8 @@ "answer": 2, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113743952 } }, { @@ -16372,7 +16627,8 @@ "language": "en", "change_over_5000m": 39, "change_within_5000m": 80 - } + }, + "id": 113741375 } }, { @@ -16437,7 +16693,8 @@ "change_within_50m": 1, "change_within_100m": 1, "change_within_500m": 2 - } + }, + "id": 113741225 } }, { @@ -16499,7 +16756,8 @@ "imagery": "osm", "language": "en", "change_within_5000m": 3 - } + }, + "id": 113740818 } }, { @@ -16565,7 +16823,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113740545 } }, { @@ -16628,7 +16887,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 1 - } + }, + "id": 113735110 } }, { @@ -16694,7 +16954,8 @@ "answer": 3, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113733740 } }, { @@ -16760,7 +17021,8 @@ "answer": 15, "imagery": "osm", "language": "de" - } + }, + "id": 113733520 } }, { @@ -16826,7 +17088,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113733331 } }, { @@ -16892,7 +17155,8 @@ "answer": 6, "imagery": "osm", "language": "de" - } + }, + "id": 113733222 } }, { @@ -16960,7 +17224,8 @@ "change_over_5000m": 1, "change_within_25m": 8, "move:node/9248363054": "improve_accuracy" - } + }, + "id": 113732652 } }, { @@ -17026,7 +17291,8 @@ "answer": 23, "imagery": "osm", "language": "de" - } + }, + "id": 113731799 } }, { @@ -17090,7 +17356,8 @@ "language": "nl", "add-image": 1, "change_within_25m": 5 - } + }, + "id": 113730627 } }, { @@ -17156,7 +17423,8 @@ "answer": 20, "imagery": "osm", "language": "de" - } + }, + "id": 113728526 } }, { @@ -17224,7 +17492,8 @@ "imagery": "osm", "language": "de", "add-image": 1 - } + }, + "id": 113728191 } }, { @@ -17285,7 +17554,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 113728066 } }, { @@ -17351,7 +17621,8 @@ "answer": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113721207 } }, { @@ -17417,7 +17688,8 @@ "answer": 6, "imagery": "osm", "language": "de" - } + }, + "id": 113712667 } }, { @@ -17483,7 +17755,8 @@ "answer": 13, "imagery": "osm", "language": "de" - } + }, + "id": 113712485 } }, { @@ -17549,7 +17822,8 @@ "answer": 31, "imagery": "osm", "language": "de" - } + }, + "id": 113712262 } }, { @@ -17615,7 +17889,8 @@ "answer": 32, "imagery": "osm", "language": "de" - } + }, + "id": 113711932 } }, { @@ -17681,7 +17956,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113705603 } }, { @@ -17747,7 +18023,8 @@ "answer": 8, "imagery": "osm", "language": "de" - } + }, + "id": 113704380 } }, { @@ -17813,7 +18090,8 @@ "answer": 6, "imagery": "osm", "language": "de" - } + }, + "id": 113703818 } }, { @@ -17874,7 +18152,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113703612 } }, { @@ -17935,7 +18214,8 @@ "answer": 3, "imagery": "osm", "language": "it" - } + }, + "id": 113702505 } }, { @@ -18001,7 +18281,8 @@ "answer": 6, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113702444 } }, { @@ -18067,7 +18348,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 113702124 } }, { @@ -18134,7 +18416,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113702050 } }, { @@ -18200,7 +18483,8 @@ "answer": 14, "imagery": "osm", "language": "en" - } + }, + "id": 113701784 } }, { @@ -18266,7 +18550,8 @@ "answer": 8, "imagery": "osm", "language": "en" - } + }, + "id": 113701706 } }, { @@ -18333,7 +18618,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113701360 } }, { @@ -18394,7 +18680,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 113700003 } }, { @@ -18455,7 +18742,8 @@ "answer": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113699070 } }, { @@ -18522,7 +18810,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113698480 } }, { @@ -18589,7 +18878,8 @@ "create": 2, "imagery": "osm", "language": "de" - } + }, + "id": 113698337 } }, { @@ -18656,7 +18946,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113698278 } }, { @@ -18722,7 +19013,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113697689 } }, { @@ -18789,7 +19081,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113697517 } }, { @@ -18851,7 +19144,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "change_within_1000m": 7 - } + }, + "id": 113697242 } }, { @@ -18913,7 +19207,8 @@ "imagery": "HDM_HOT", "language": "nl", "change_within_1000m": 1 - } + }, + "id": 113697189 } }, { @@ -18979,7 +19274,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113696848 } }, { @@ -19046,7 +19342,8 @@ "imagery": "osm", "language": "de", "add-image": 1 - } + }, + "id": 113696506 } }, { @@ -19109,7 +19406,8 @@ "imagery": "osm", "language": "en", "change_within_1000m": 2 - } + }, + "id": 113695360 } }, { @@ -19178,7 +19476,8 @@ "language": "en", "add-image": 1, "change_within_25m": 2 - } + }, + "id": 113692952 } }, { @@ -19248,7 +19547,8 @@ "add-image": 1, "change_within_25m": 2, "change_within_50m": 5 - } + }, + "id": 113692745 } }, { @@ -19316,7 +19616,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 3 - } + }, + "id": 113692652 } }, { @@ -19384,7 +19685,8 @@ "language": "en", "add-image": 1, "change_within_25m": 11 - } + }, + "id": 113691415 } }, { @@ -19450,7 +19752,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113684745 } }, { @@ -19516,7 +19819,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 113680426 } }, { @@ -19582,7 +19886,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113666227 } }, { @@ -19648,7 +19953,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113666128 } }, { @@ -19688,7 +19994,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113666127 } }, { @@ -19750,7 +20057,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 5 - } + }, + "id": 113666007 } }, { @@ -19813,7 +20121,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "change_within_5000m": 1 - } + }, + "id": 113664697 } }, { @@ -19850,7 +20159,8 @@ "imagery": "osm", "language": "en", "change_within_5000m": 1 - } + }, + "id": 113664639 } }, { @@ -19916,7 +20226,8 @@ "create": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113664294 } }, { @@ -19983,7 +20294,8 @@ "create": 13, "imagery": "osm", "language": "en" - } + }, + "id": 113663618 } }, { @@ -20049,7 +20361,8 @@ "create": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113663060 } }, { @@ -20116,7 +20429,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113663005 } }, { @@ -20183,7 +20497,8 @@ "create": 5, "imagery": "osm", "language": "en" - } + }, + "id": 113662582 } }, { @@ -20249,7 +20564,8 @@ "create": 4, "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 113662208 } }, { @@ -20316,7 +20632,8 @@ "create": 13, "imagery": "osm", "language": "en" - } + }, + "id": 113661631 } }, { @@ -20378,7 +20695,8 @@ "imagery": "osm", "language": "en", "change_within_1000m": 7 - } + }, + "id": 113661608 } }, { @@ -20444,7 +20762,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113661606 } }, { @@ -20513,7 +20832,8 @@ "language": "en", "change_within_50m": 4, "change_within_100m": 3 - } + }, + "id": 113661550 } }, { @@ -20580,7 +20900,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113661212 } }, { @@ -20647,7 +20968,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113661169 } }, { @@ -20714,7 +21036,8 @@ "create": 6, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113660924 } }, { @@ -20781,7 +21104,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113660783 } }, { @@ -20848,7 +21172,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113660696 } }, { @@ -20914,7 +21239,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113660668 } }, { @@ -20983,7 +21309,8 @@ "language": "en", "add-image": 1, "change_within_25m": 2 - } + }, + "id": 113660337 } }, { @@ -21050,7 +21377,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113660317 } }, { @@ -21116,7 +21444,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113660174 } }, { @@ -21182,7 +21511,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113659748 } }, { @@ -21251,7 +21581,8 @@ "language": "en", "change_within_25m": 24, "change_within_50m": 1 - } + }, + "id": 113659643 } }, { @@ -21322,7 +21653,8 @@ "change_within_25m": 6, "change_within_50m": 1, "move:node/9243908844": "improve_accuracy" - } + }, + "id": 113659591 } }, { @@ -21389,7 +21721,8 @@ "create": 6, "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 113659569 } }, { @@ -21455,7 +21788,8 @@ "create": 9, "imagery": "osm", "language": "en" - } + }, + "id": 113659450 } }, { @@ -21521,7 +21855,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113659366 } }, { @@ -21587,7 +21922,8 @@ "create": 3, "imagery": "osm", "language": "en" - } + }, + "id": 113659288 } }, { @@ -21627,7 +21963,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113659287 } }, { @@ -21696,7 +22033,8 @@ "language": "en", "change_within_25m": 20, "change_within_50m": 6 - } + }, + "id": 113659179 } }, { @@ -21791,7 +22129,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 3 - } + }, + "id": 113659027 } }, { @@ -21857,7 +22196,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113659015 } }, { @@ -21923,7 +22263,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113658838 } }, { @@ -21992,7 +22333,8 @@ "language": "de", "change_within_25m": 5, "change_within_50m": 1 - } + }, + "id": 113658681 } }, { @@ -22059,7 +22401,8 @@ "create": 10, "imagery": "osm", "language": "en" - } + }, + "id": 113658667 } }, { @@ -22099,7 +22442,8 @@ "answer": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113658548 } }, { @@ -22163,7 +22507,8 @@ "language": "en", "add-image": 2, "change_within_25m": 8 - } + }, + "id": 113658469 } }, { @@ -22230,7 +22575,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113657967 } }, { @@ -22296,7 +22642,8 @@ "create": 16, "imagery": "osm", "language": "de" - } + }, + "id": 113657736 } }, { @@ -22363,7 +22710,8 @@ "create": 4, "imagery": "osm", "language": "de" - } + }, + "id": 113657620 } }, { @@ -22403,7 +22751,8 @@ "create": 2, "imagery": "osm", "language": "de" - } + }, + "id": 113657566 } }, { @@ -22444,7 +22793,8 @@ "create": 2, "imagery": "osm", "language": "de" - } + }, + "id": 113657565 } }, { @@ -22511,7 +22861,8 @@ "create": 2, "imagery": "osm", "language": "de" - } + }, + "id": 113657564 } }, { @@ -22577,7 +22928,8 @@ "answer": 5, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113657450 } }, { @@ -22643,7 +22995,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113657347 } }, { @@ -22683,7 +23036,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113657213 } }, { @@ -22750,7 +23104,8 @@ "create": 2, "imagery": "osm", "language": "de" - } + }, + "id": 113657212 } }, { @@ -22817,7 +23172,8 @@ "create": 8, "imagery": "osm", "language": "de" - } + }, + "id": 113657009 } }, { @@ -22883,7 +23239,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113656795 } }, { @@ -22950,7 +23307,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113656695 } }, { @@ -23011,7 +23369,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113649599 } }, { @@ -23077,7 +23436,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113648617 } }, { @@ -23146,7 +23506,8 @@ "imagery": "osm", "language": "de", "move:node/9241346070": "improve_accuracy" - } + }, + "id": 113621156 } }, { @@ -23214,7 +23575,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 1 - } + }, + "id": 113617351 } }, { @@ -23255,7 +23617,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 1 - } + }, + "id": 113616982 } }, { @@ -23321,7 +23684,8 @@ "create": 2, "imagery": "osm", "language": "de" - } + }, + "id": 113616486 } }, { @@ -23389,7 +23753,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 3 - } + }, + "id": 113616350 } }, { @@ -23454,7 +23819,8 @@ "add-image": 3, "change_within_25m": 8, "change_within_5000m": 1 - } + }, + "id": 113616285 } }, { @@ -23523,7 +23889,8 @@ "language": "de", "add-image": 1, "change_within_25m": 5 - } + }, + "id": 113615451 } }, { @@ -23593,7 +23960,8 @@ "language": "de", "change_within_25m": 5, "move:node/9241010777": "improve_accuracy" - } + }, + "id": 113615348 } }, { @@ -23662,7 +24030,8 @@ "language": "de", "add-image": 2, "change_within_25m": 6 - } + }, + "id": 113614934 } }, { @@ -23728,7 +24097,8 @@ "answer": 2, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113614812 } }, { @@ -23796,7 +24166,8 @@ "imagery": "osm", "language": "de", "change_within_500m": 3 - } + }, + "id": 113614651 } }, { @@ -23868,7 +24239,8 @@ "change_within_25m": 13, "move:node/9240998351": "improve_accuracy", "move:node/9241137476": "improve_accuracy" - } + }, + "id": 113614079 } }, { @@ -23936,7 +24308,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 1 - } + }, + "id": 113613656 } }, { @@ -24004,7 +24377,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 1 - } + }, + "id": 113613643 } }, { @@ -24046,7 +24420,8 @@ "imagery": "osm", "language": "en", "change_within_100m": 1 - } + }, + "id": 113613642 } }, { @@ -24115,7 +24490,8 @@ "language": "en", "add-image": 1, "change_within_25m": 3 - } + }, + "id": 113613487 } }, { @@ -24183,7 +24559,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 2 - } + }, + "id": 113613486 } }, { @@ -24251,7 +24628,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 2 - } + }, + "id": 113613375 } }, { @@ -24320,7 +24698,8 @@ "language": "en", "move:node/-1": "improve_accuracy", "change_within_25m": 1 - } + }, + "id": 113613114 } }, { @@ -24389,7 +24768,8 @@ "language": "en", "change_within_25m": 6, "change_within_50m": 1 - } + }, + "id": 113612599 } }, { @@ -24458,7 +24838,8 @@ "language": "en", "change_within_25m": 4, "change_within_100m": 1 - } + }, + "id": 113612509 } }, { @@ -24528,7 +24909,8 @@ "language": "en", "relation-fix": 1, "change_within_25m": 20 - } + }, + "id": 113612102 } }, { @@ -24596,7 +24978,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 9 - } + }, + "id": 113611794 } }, { @@ -24662,7 +25045,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113611786 } }, { @@ -24724,7 +25108,8 @@ "imagery": "osm", "language": "de", "add-image": 1 - } + }, + "id": 113611335 } }, { @@ -24791,7 +25176,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 6 - } + }, + "id": 113607510 } }, { @@ -24859,7 +25245,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 5 - } + }, + "id": 113607198 } }, { @@ -24922,7 +25309,8 @@ "language": "es", "change_within_25m": 1, "change_within_500m": 3 - } + }, + "id": 113607073 } }, { @@ -25007,7 +25395,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 5 - } + }, + "id": 113606918 } }, { @@ -25071,7 +25460,8 @@ "language": "es", "change_within_25m": 12, "change_within_1000m": 3 - } + }, + "id": 113606449 } }, { @@ -25139,7 +25529,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 5 - } + }, + "id": 113606018 } }, { @@ -25205,7 +25596,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113605823 } }, { @@ -25275,7 +25667,8 @@ "language": "de", "change_within_25m": 6, "move:node/9240371801": "improve_accuracy" - } + }, + "id": 113605661 } }, { @@ -25341,7 +25734,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113605548 } }, { @@ -25402,7 +25796,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113605291 } }, { @@ -25469,7 +25864,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 9 - } + }, + "id": 113605210 } }, { @@ -25536,7 +25932,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113605176 } }, { @@ -25603,7 +26000,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113604837 } }, { @@ -25672,7 +26070,8 @@ "language": "de", "change_within_25m": 1, "deletion:node/9240394592": "testing point" - } + }, + "id": 113604805 } }, { @@ -25738,7 +26137,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113604564 } }, { @@ -25807,7 +26207,8 @@ "imagery": "osm", "language": "de", "move:node/9240321658": "improve_accuracy" - } + }, + "id": 113604148 } }, { @@ -25874,7 +26275,8 @@ "imagery": "osm", "language": "de", "add-image": 2 - } + }, + "id": 113603891 } }, { @@ -25942,7 +26344,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 1 - } + }, + "id": 113603838 } }, { @@ -26009,7 +26412,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113603802 } }, { @@ -26049,7 +26453,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113603783 } }, { @@ -26112,7 +26517,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 5 - } + }, + "id": 113603188 } }, { @@ -26178,7 +26584,8 @@ "answer": 3, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113602685 } }, { @@ -26244,7 +26651,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113602684 } }, { @@ -26329,7 +26737,8 @@ "imagery": "osm", "language": "de", "add-image": 1 - } + }, + "id": 113602296 } }, { @@ -26397,7 +26806,8 @@ "imagery": "osm", "language": "de", "add-image": 1 - } + }, + "id": 113602222 } }, { @@ -26465,7 +26875,8 @@ "imagery": "osm", "language": "de", "add-image": 1 - } + }, + "id": 113602123 } }, { @@ -26532,7 +26943,8 @@ "create": 2, "imagery": "osm", "language": "de" - } + }, + "id": 113601902 } }, { @@ -26602,7 +27014,8 @@ "language": "de", "add-image": 1, "move:node/9240267570": "improve_accuracy" - } + }, + "id": 113601645 } }, { @@ -26668,7 +27081,8 @@ "answer": 2, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113601430 } }, { @@ -26734,7 +27148,8 @@ "imagery": "osm", "language": "de", "add-image": 3 - } + }, + "id": 113601332 } }, { @@ -26800,7 +27215,8 @@ "answer": 4, "imagery": "osm", "language": "de" - } + }, + "id": 113601079 } }, { @@ -26866,7 +27282,8 @@ "answer": 9, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113599699 } }, { @@ -26929,7 +27346,8 @@ "imagery": "Actueel_ortho25_WMS", "language": "en", "change_within_500m": 6 - } + }, + "id": 113598666 } }, { @@ -26964,7 +27382,8 @@ "imagery": "osm", "language": "en", "add-image": 3 - } + }, + "id": 113598512 } }, { @@ -27025,7 +27444,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113598511 } }, { @@ -27091,7 +27511,8 @@ "answer": 6, "imagery": "osm", "language": "de" - } + }, + "id": 113598373 } }, { @@ -27157,7 +27578,8 @@ "answer": 22, "imagery": "osm", "language": "de" - } + }, + "id": 113598091 } }, { @@ -27218,7 +27640,8 @@ "answer": 1, "imagery": "osmfr-basque", "language": "de" - } + }, + "id": 113594709 } }, { @@ -27280,7 +27703,8 @@ "imagery": "osm", "language": "nl", "change_within_100m": 1 - } + }, + "id": 113588296 } }, { @@ -27342,7 +27766,8 @@ "imagery": "osm", "language": "pt", "add-image": 1 - } + }, + "id": 113586229 } }, { @@ -27403,7 +27828,8 @@ "imagery": "HDM_HOT", "language": "en", "add-image": 1 - } + }, + "id": 113585788 } }, { @@ -27469,7 +27895,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113584728 } }, { @@ -27535,7 +27962,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113584605 } }, { @@ -27601,7 +28029,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 113584481 } }, { @@ -27668,7 +28097,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113584409 } }, { @@ -27735,7 +28165,8 @@ "create": 3, "imagery": "osm", "language": "en" - } + }, + "id": 113584246 } }, { @@ -27801,7 +28232,8 @@ "answer": 3, "imagery": "osm", "language": "en" - } + }, + "id": 113581830 } }, { @@ -27867,7 +28299,8 @@ "answer": 12, "imagery": "osm", "language": "en" - } + }, + "id": 113581380 } }, { @@ -27934,7 +28367,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113581306 } }, { @@ -28001,7 +28435,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113581221 } }, { @@ -28068,7 +28503,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113581039 } }, { @@ -28134,7 +28570,8 @@ "answer": 16, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113580922 } }, { @@ -28201,7 +28638,8 @@ "create": 3, "imagery": "osm", "language": "en" - } + }, + "id": 113580637 } }, { @@ -28268,7 +28706,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113568845 } }, { @@ -28335,7 +28774,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113568571 } }, { @@ -28401,7 +28841,8 @@ "answer": 3, "imagery": "osm", "language": "de" - } + }, + "id": 113568433 } }, { @@ -28468,7 +28909,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113568103 } }, { @@ -28534,7 +28976,8 @@ "create": 1, "imagery": "HDM_HOT", "language": "de" - } + }, + "id": 113567768 } }, { @@ -28600,7 +29043,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113567505 } }, { @@ -28666,7 +29110,8 @@ "answer": 7, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113566980 } }, { @@ -28733,7 +29178,8 @@ "create": 2, "imagery": "osm", "language": "de" - } + }, + "id": 113566589 } }, { @@ -28794,7 +29240,8 @@ "answer": 2, "imagery": "osm", "language": "es" - } + }, + "id": 113565479 } }, { @@ -28860,7 +29307,8 @@ "answer": 11, "imagery": "osm", "language": "de" - } + }, + "id": 113565126 } }, { @@ -28925,7 +29373,8 @@ "language": "nl", "add-image": 7, "move:node/9238133163": "improve_accuracy" - } + }, + "id": 113565062 } }, { @@ -28991,7 +29440,8 @@ "answer": 7, "imagery": "osm", "language": "de" - } + }, + "id": 113564788 } }, { @@ -29057,7 +29507,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113563735 } }, { @@ -29120,7 +29571,8 @@ "create": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113561665 } }, { @@ -29182,7 +29634,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113561089 } }, { @@ -29249,7 +29702,8 @@ "move:node/-1": "improve_accuracy", "move:node/8768659559": "improve_accuracy", "move:node/9237576880": "improve_accuracy" - } + }, + "id": 113558406 } }, { @@ -29312,7 +29766,8 @@ "imagery": "HDM_HOT", "language": "nl", "add-image": 5 - } + }, + "id": 113554894 } }, { @@ -29378,7 +29833,8 @@ "change_within_1000m": 3, "change_within_5000m": 3, "move:node/3455390192": "improve_accuracy" - } + }, + "id": 113544129 } }, { @@ -29440,7 +29896,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 2 - } + }, + "id": 113541988 } }, { @@ -29502,7 +29959,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113536549 } }, { @@ -29570,7 +30028,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 113531693 } }, { @@ -29636,7 +30095,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113524257 } }, { @@ -29698,7 +30158,8 @@ "create": 2, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113520538 } }, { @@ -29765,7 +30226,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113519157 } }, { @@ -29831,7 +30293,8 @@ "answer": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113518984 } }, { @@ -29897,7 +30360,8 @@ "answer": 5, "imagery": "osm", "language": "de" - } + }, + "id": 113518889 } }, { @@ -29970,7 +30434,8 @@ "imagery": "osm", "language": "de", "move:node/9235173348": "improve_accuracy" - } + }, + "id": 113518734 } }, { @@ -30036,7 +30501,8 @@ "answer": 14, "imagery": "osm", "language": "de" - } + }, + "id": 113518718 } }, { @@ -30103,7 +30569,8 @@ "create": 3, "imagery": "osm", "language": "de" - } + }, + "id": 113518617 } }, { @@ -30169,7 +30636,8 @@ "answer": 5, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113518508 } }, { @@ -30236,7 +30704,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113518425 } }, { @@ -30304,7 +30773,8 @@ "imagery": "osm", "language": "de", "move:node/9235095153": "improve_accuracy" - } + }, + "id": 113518262 } }, { @@ -30372,7 +30842,8 @@ "imagery": "osm", "language": "de", "move:node/9235138165": "improve_accuracy" - } + }, + "id": 113518197 } }, { @@ -30439,7 +30910,8 @@ "create": 2, "imagery": "osm", "language": "de" - } + }, + "id": 113518084 } }, { @@ -30511,7 +30983,8 @@ "move:node/6230129922": "improve_accuracy", "move:node/6447492689": "improve_accuracy", "move:node/6447504487": "improve_accuracy" - } + }, + "id": 113518040 } }, { @@ -30577,7 +31050,8 @@ "answer": 7, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113517912 } }, { @@ -30643,7 +31117,8 @@ "answer": 15, "imagery": "osm", "language": "de" - } + }, + "id": 113517804 } }, { @@ -30712,7 +31187,8 @@ "imagery": "osm", "language": "de", "move:node/9235112785": "improve_accuracy" - } + }, + "id": 113517769 } }, { @@ -30778,7 +31254,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113517620 } }, { @@ -30844,7 +31321,8 @@ "answer": 4, "imagery": "osm", "language": "de" - } + }, + "id": 113517349 } }, { @@ -30910,7 +31388,8 @@ "answer": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113517323 } }, { @@ -30977,7 +31456,8 @@ "create": 7, "imagery": "osm", "language": "de" - } + }, + "id": 113517015 } }, { @@ -31043,7 +31523,8 @@ "answer": 2, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113516933 } }, { @@ -31110,7 +31591,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113516869 } }, { @@ -31173,7 +31655,8 @@ "deletion": 1, "language": "en", "deletion:node/9235082800": "testing point" - } + }, + "id": 113516857 } }, { @@ -31235,7 +31718,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113516827 } }, { @@ -31301,7 +31785,8 @@ "answer": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113516557 } }, { @@ -31367,7 +31852,8 @@ "create": 1, "imagery": "osm", "language": "de" - } + }, + "id": 113514618 } }, { @@ -31433,7 +31919,8 @@ "answer": 7, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113514495 } }, { @@ -31494,7 +31981,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 113514247 } }, { @@ -31560,7 +32048,8 @@ "answer": 3, "imagery": "CartoDB.Voyager", "language": "de" - } + }, + "id": 113513805 } }, { @@ -31622,7 +32111,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113511570 } }, { @@ -31683,7 +32173,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113499377 } }, { @@ -31744,7 +32235,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113498268 } }, { @@ -31805,7 +32297,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113498240 } }, { @@ -31871,7 +32364,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 113493880 } }, { @@ -31932,7 +32426,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113493657 } }, { @@ -31993,7 +32488,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 113492944 } }, { @@ -32054,7 +32550,8 @@ "answer": 2, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113491702 } }, { @@ -32118,7 +32615,8 @@ "imagery": "osm", "language": "en", "move:node/-1": "improve_accuracy" - } + }, + "id": 113491295 } }, { @@ -32180,7 +32678,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113491238 } }, { @@ -32241,7 +32740,8 @@ "answer": 2, "imagery": "CartoDB.Positron", "language": "nl" - } + }, + "id": 113489356 } }, { @@ -32302,7 +32802,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113489134 } }, { @@ -32363,7 +32864,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113488340 } }, { @@ -32425,7 +32927,8 @@ "answer": 19, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113481936 } }, { @@ -32487,7 +32990,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113480631 } }, { @@ -32556,7 +33060,8 @@ "imagery": "osm", "language": "fr", "move:node/9233019525": "improve_accuracy" - } + }, + "id": 113480016 } }, { @@ -32617,7 +33122,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113477074 } }, { @@ -32680,7 +33186,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 1 - } + }, + "id": 113472305 } }, { @@ -32741,7 +33248,8 @@ "answer": 24, "imagery": "osm", "language": "en" - } + }, + "id": 113465263 } }, { @@ -32803,7 +33311,8 @@ "create": 8, "imagery": "osm", "language": "en" - } + }, + "id": 113463623 } }, { @@ -32864,7 +33373,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113463553 } }, { @@ -32925,7 +33435,8 @@ "answer": 5, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113463449 } }, { @@ -32987,7 +33498,8 @@ "create": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 113450975 } }, { @@ -33048,7 +33560,8 @@ "answer": 14, "imagery": "osm", "language": "en" - } + }, + "id": 113450551 } }, { @@ -33111,7 +33624,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 113448373 } }, { @@ -33172,7 +33686,8 @@ "answer": 9, "imagery": "osm", "language": "it" - } + }, + "id": 113444561 } }, { @@ -33233,7 +33748,8 @@ "answer": 19, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113442152 } }, { @@ -33295,7 +33811,8 @@ "create": 2, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113438716 } }, { @@ -33356,7 +33873,8 @@ "answer": 121, "imagery": "osm", "language": "en" - } + }, + "id": 113438500 } }, { @@ -33420,7 +33938,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 113429453 } }, { @@ -33481,7 +34000,8 @@ "answer": 12, "imagery": "osm", "language": "it" - } + }, + "id": 113428932 } }, { @@ -33542,7 +34062,8 @@ "answer": 5, "imagery": "osm", "language": "it" - } + }, + "id": 113428858 } }, { @@ -33603,7 +34124,8 @@ "answer": 4, "imagery": "osm", "language": "it" - } + }, + "id": 113428835 } }, { @@ -33665,7 +34187,8 @@ "create": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113428798 } }, { @@ -33726,7 +34249,8 @@ "answer": 8, "imagery": "osm", "language": "de" - } + }, + "id": 113428563 } }, { @@ -33787,7 +34311,8 @@ "answer": 28, "imagery": "osm", "language": "it" - } + }, + "id": 113428090 } }, { @@ -33848,7 +34373,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 113426608 } }, { @@ -33909,7 +34435,8 @@ "answer": 24, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113421595 } }, { @@ -33970,7 +34497,8 @@ "answer": 5, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113418491 } }, { @@ -34031,7 +34559,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113413987 } }, { @@ -34094,7 +34623,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113412065 } }, { @@ -34156,7 +34686,8 @@ "create": 4, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113411796 } }, { @@ -34217,7 +34748,8 @@ "answer": 115, "imagery": "osm", "language": "en" - } + }, + "id": 113410685 } }, { @@ -34278,7 +34810,8 @@ "answer": 2, "imagery": "osm", "language": "es" - } + }, + "id": 113410204 } }, { @@ -34346,7 +34879,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113409895 } }, { @@ -34408,7 +34942,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113409798 } }, { @@ -34471,7 +35006,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 113409011 } }, { @@ -34535,7 +35071,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "move:node/4568201391": "improve_accuracy" - } + }, + "id": 113407314 } }, { @@ -34596,7 +35133,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113405992 } }, { @@ -34657,7 +35195,8 @@ "answer": 64, "imagery": "osm", "language": "en" - } + }, + "id": 113404377 } }, { @@ -34718,7 +35257,8 @@ "answer": 10, "imagery": "osm", "language": "de" - } + }, + "id": 113404365 } }, { @@ -34786,7 +35326,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113403407 } }, { @@ -34847,7 +35388,8 @@ "answer": 131, "imagery": "osm", "language": "it" - } + }, + "id": 113401156 } }, { @@ -34908,7 +35450,8 @@ "answer": 46, "imagery": "osm", "language": "it" - } + }, + "id": 113400546 } }, { @@ -34971,7 +35514,8 @@ "imagery": "osm", "language": "nl", "move:node/9223875638": "improve_accuracy" - } + }, + "id": 113399744 } }, { @@ -35037,7 +35581,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113397481 } }, { @@ -35099,7 +35644,8 @@ "create": 4, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113386555 } }, { @@ -35166,7 +35712,8 @@ "create": 13, "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 113385218 } }, { @@ -35229,7 +35776,8 @@ "create": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113382487 } }, { @@ -35290,7 +35838,8 @@ "answer": 3, "imagery": "osm", "language": "de" - } + }, + "id": 113382251 } }, { @@ -35351,7 +35900,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113376351 } }, { @@ -35414,7 +35964,8 @@ "imagery": "AGIV10cm", "language": "en", "conflation": 2 - } + }, + "id": 113375792 } }, { @@ -35476,7 +36027,8 @@ "import": 1, "imagery": "AGIV10cm", "language": "en" - } + }, + "id": 113375786 } }, { @@ -35538,7 +36090,8 @@ "import": 4, "imagery": "AGIV10cm", "language": "en" - } + }, + "id": 113375744 } }, { @@ -35599,7 +36152,8 @@ "answer": 22, "imagery": "osm", "language": "de" - } + }, + "id": 113375602 } }, { @@ -35662,7 +36216,8 @@ "imagery": "osm", "language": "nl", "move:node/9223875638": "improve_accuracy" - } + }, + "id": 113375570 } }, { @@ -35726,7 +36281,8 @@ "imagery": "osm", "language": "en", "conflation": 4 - } + }, + "id": 113374469 } }, { @@ -35790,7 +36346,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "move:node/9223995072": "improve_accuracy" - } + }, + "id": 113374140 } }, { @@ -35852,7 +36409,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113374077 } }, { @@ -35917,7 +36475,8 @@ "language": "nl", "add-image": 7, "move:node/9223917538": "improve_accuracy" - } + }, + "id": 113373022 } }, { @@ -35978,7 +36537,8 @@ "answer": 11, "imagery": "osm", "language": "es" - } + }, + "id": 113368653 } }, { @@ -36040,7 +36600,8 @@ "import": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113367547 } }, { @@ -36101,7 +36662,8 @@ "answer": 4, "imagery": "osm", "language": "nl" - } + }, + "id": 113364948 } }, { @@ -36162,7 +36724,8 @@ "answer": 3, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113364737 } }, { @@ -36223,7 +36786,8 @@ "answer": 6, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113360279 } }, { @@ -36286,7 +36850,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113354339 } }, { @@ -36347,7 +36912,8 @@ "import": 3, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 113353891 } }, { @@ -36409,7 +36975,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113353572 } }, { @@ -36471,7 +37038,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113351309 } }, { @@ -36532,7 +37100,8 @@ "answer": 13, "imagery": "osm", "language": "de" - } + }, + "id": 113351051 } }, { @@ -36594,7 +37163,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "conflation": 4 - } + }, + "id": 113350305 } }, { @@ -36655,7 +37225,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 113347810 } }, { @@ -36717,7 +37288,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 3 - } + }, + "id": 113347649 } }, { @@ -36781,7 +37353,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113339240 } }, { @@ -36844,7 +37417,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 113337126 } }, { @@ -36906,7 +37480,8 @@ "imagery": "osm", "language": "nl", "move:node/8771441240": "improve_accuracy" - } + }, + "id": 113337023 } }, { @@ -36970,7 +37545,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "move:node/9221540197": "improve_accuracy" - } + }, + "id": 113336834 } }, { @@ -37037,7 +37613,8 @@ "create": 13, "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 113335939 } }, { @@ -37101,7 +37678,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113334874 } }, { @@ -37163,7 +37741,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113331345 } }, { @@ -37231,7 +37810,8 @@ "imagery": "HDM_HOT", "language": "nl", "add-image": 1 - } + }, + "id": 113329273 } }, { @@ -37293,7 +37873,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113329108 } }, { @@ -37354,7 +37935,8 @@ "answer": 83, "imagery": "osm", "language": "de" - } + }, + "id": 113329026 } }, { @@ -37415,7 +37997,8 @@ "answer": 11, "imagery": "osm", "language": "de" - } + }, + "id": 113328646 } }, { @@ -37483,7 +38066,8 @@ "language": "nl", "move:node/8789200971": "improve_accuracy", "move:node/8823682990": "improve_accuracy" - } + }, + "id": 113328015 } }, { @@ -37546,7 +38130,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 10 - } + }, + "id": 113305401 } }, { @@ -37605,7 +38190,8 @@ "theme": "climbing", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 113302704 } }, { @@ -37666,7 +38252,8 @@ "answer": 49, "imagery": "osm", "language": "en" - } + }, + "id": 113300229 } }, { @@ -37733,7 +38320,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113291887 } }, { @@ -37797,7 +38385,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "move:node/9218593524": "improve_accuracy" - } + }, + "id": 113284886 } }, { @@ -37859,7 +38448,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 113284013 } }, { @@ -37920,7 +38510,8 @@ "answer": 5, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113270690 } }, { @@ -37981,7 +38572,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113259034 } }, { @@ -38042,7 +38634,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 1 - } + }, + "id": 113259014 } }, { @@ -38108,7 +38701,8 @@ "answer": 3, "imagery": "osm", "language": "en" - } + }, + "id": 113255395 } }, { @@ -38170,7 +38764,8 @@ "deletion": 1, "language": "en", "deletion:node/2442953886": "disused" - } + }, + "id": 113251293 } }, { @@ -38231,7 +38826,8 @@ "answer": 4, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113250793 } }, { @@ -38292,7 +38888,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 113247252 } }, { @@ -38357,7 +38954,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "move:node/9216683715": "improve_accuracy" - } + }, + "id": 113246649 } }, { @@ -38420,7 +39018,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113242289 } }, { @@ -38456,7 +39055,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113241377 } }, { @@ -38493,7 +39093,8 @@ "imagery": "osm", "language": "en", "move:node/-2": "improve_accuracy" - } + }, + "id": 113241348 } }, { @@ -38529,7 +39130,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113241334 } }, { @@ -38593,7 +39195,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113241037 } }, { @@ -38654,7 +39257,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 4 - } + }, + "id": 113238301 } }, { @@ -38718,7 +39322,8 @@ "imagery": "AGIV10cm", "language": "en", "move:node/9216279358": "improve_accuracy" - } + }, + "id": 113237148 } }, { @@ -38779,7 +39384,8 @@ "answer": 2, "imagery": "osm", "language": "es" - } + }, + "id": 113236656 } }, { @@ -38841,7 +39447,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 4 - } + }, + "id": 113234111 } }, { @@ -38903,7 +39510,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113227669 } }, { @@ -38965,7 +39573,8 @@ "create": 5, "imagery": "osm", "language": "en" - } + }, + "id": 113225986 } }, { @@ -39028,7 +39637,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113224286 } }, { @@ -39094,7 +39704,8 @@ "answer": 519, "imagery": "osm", "language": "de" - } + }, + "id": 113220970 } } ] diff --git a/Docs/Tools/stats/stats.2021-12.json b/Docs/Tools/stats/stats.2021-12.json index 08ce4e0f73..14a167287d 100644 --- a/Docs/Tools/stats/stats.2021-12.json +++ b/Docs/Tools/stats/stats.2021-12.json @@ -61,7 +61,8 @@ "language": "en", "change_over_5000m": 1, "change_within_100m": 4 - } + }, + "id": 115624437 } }, { @@ -125,7 +126,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "change_over_5000m": 6 - } + }, + "id": 115615786 } }, { @@ -188,7 +190,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 6 - } + }, + "id": 115610774 } }, { @@ -252,7 +255,8 @@ "imagery": "osm", "language": "nl", "relation-fix": 1 - } + }, + "id": 115610573 } }, { @@ -314,7 +318,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 115609231 } }, { @@ -376,7 +381,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115609068 } }, { @@ -442,7 +448,8 @@ "change_within_25m": 2, "change_within_50m": 1, "change_within_500m": 1 - } + }, + "id": 115604832 } }, { @@ -504,7 +511,8 @@ "import": 1, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 115600877 } }, { @@ -570,7 +578,8 @@ "add-image": 1, "change_within_25m": 33, "change_within_50m": 4 - } + }, + "id": 115586324 } }, { @@ -632,7 +641,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 2 - } + }, + "id": 115585682 } }, { @@ -694,7 +704,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 1 - } + }, + "id": 115584740 } }, { @@ -755,7 +766,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 115584260 } }, { @@ -817,7 +829,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 115583852 } }, { @@ -878,7 +891,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 115578339 } }, { @@ -941,7 +955,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 1 - } + }, + "id": 115571697 } }, { @@ -1003,7 +1018,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 7 - } + }, + "id": 115556947 } }, { @@ -1069,7 +1085,8 @@ "change_over_5000m": 2, "change_within_25m": 4, "deletion:node/9378806868": "Addition was buggy" - } + }, + "id": 115556765 } }, { @@ -1133,7 +1150,8 @@ "language": "nl", "change_over_5000m": 4, "change_within_25m": 6 - } + }, + "id": 115556736 } }, { @@ -1199,7 +1217,8 @@ "answer": 9, "imagery": "osm", "language": "en" - } + }, + "id": 115535515 } }, { @@ -1264,7 +1283,8 @@ "language": "nl", "change_over_5000m": 1, "change_within_25m": 12 - } + }, + "id": 115533103 } }, { @@ -1325,7 +1345,8 @@ "answer": 5, "imagery": "osm", "language": "en" - } + }, + "id": 115530115 } }, { @@ -1386,7 +1407,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115527664 } }, { @@ -1448,7 +1470,8 @@ "imagery": "osm", "language": "nl", "change_within_25m": 3 - } + }, + "id": 115527316 } }, { @@ -1514,7 +1537,8 @@ "answer": 4, "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 115524073 } }, { @@ -1577,7 +1601,8 @@ "language": "it", "change_within_1000m": 12, "change_within_5000m": 91 - } + }, + "id": 115520700 } }, { @@ -1643,7 +1668,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 2 - } + }, + "id": 115519801 } }, { @@ -1709,7 +1735,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 115517105 } }, { @@ -1771,7 +1798,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 115516355 } }, { @@ -1840,7 +1868,8 @@ "change_within_50m": 3, "change_within_100m": 3, "change_within_500m": 4 - } + }, + "id": 115515838 } }, { @@ -1907,7 +1936,8 @@ "imagery": "osm", "language": "nl", "add-image": 3 - } + }, + "id": 115512626 } }, { @@ -1973,7 +2003,8 @@ "answer": 2, "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 115511711 } }, { @@ -2034,7 +2065,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 115498674 } }, { @@ -2096,7 +2128,8 @@ "imagery": "osm", "language": "en", "change_within_1000m": 1 - } + }, + "id": 115496293 } }, { @@ -2158,7 +2191,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 115491537 } }, { @@ -2237,7 +2271,8 @@ "language": "nl", "add-image": 1, "change_within_25m": 1 - } + }, + "id": 115488738 } }, { @@ -2306,7 +2341,8 @@ "imagery": "osm", "language": "en", "move:node/9374436265": "improve_accuracy" - } + }, + "id": 115488123 } }, { @@ -2369,7 +2405,8 @@ "language": "en", "change_within_1000m": 1, "change_within_5000m": 1 - } + }, + "id": 115487638 } }, { @@ -2430,7 +2467,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115486160 } }, { @@ -2491,7 +2529,8 @@ "answer": 2, "imagery": "osm", "language": "de" - } + }, + "id": 115483390 } }, { @@ -2552,7 +2591,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 115477973 } }, { @@ -2613,7 +2653,8 @@ "answer": 14, "imagery": "osm", "language": "en" - } + }, + "id": 115473836 } }, { @@ -2707,7 +2748,8 @@ "add-image": 2, "change_over_5000m": 3, "change_within_25m": 6 - } + }, + "id": 115468613 } }, { @@ -2773,7 +2815,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 2 - } + }, + "id": 115468391 } }, { @@ -2840,7 +2883,8 @@ "change_over_5000m": 1, "change_within_25m": 5, "change_within_500m": 1 - } + }, + "id": 115468231 } }, { @@ -2906,7 +2950,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 3 - } + }, + "id": 115466855 } }, { @@ -2973,7 +3018,8 @@ "create": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 115461954 } }, { @@ -3039,7 +3085,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 115461617 } }, { @@ -3105,7 +3152,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 115458708 } }, { @@ -3167,7 +3215,8 @@ "imagery": "osm", "language": "en", "change_within_5000m": 43 - } + }, + "id": 115443137 } }, { @@ -3229,7 +3278,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 115442498 } }, { @@ -3294,7 +3344,8 @@ "language": "en", "change_within_25m": 2, "move:node/1625214199": "improve_accuracy" - } + }, + "id": 115437807 } }, { @@ -3357,7 +3408,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 2 - } + }, + "id": 115437165 } }, { @@ -3418,7 +3470,8 @@ "imagery": "osm", "language": "en", "add-image": 4 - } + }, + "id": 115436960 } }, { @@ -3482,7 +3535,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 5 - } + }, + "id": 115434625 } }, { @@ -3546,7 +3600,8 @@ "language": "en", "change_within_100m": 1, "deletion:node/1625270206": "disused" - } + }, + "id": 115433386 } }, { @@ -3609,7 +3664,8 @@ "imagery": "osm", "language": "nl", "change_within_500m": 3 - } + }, + "id": 115433128 } }, { @@ -3675,7 +3731,8 @@ "change_within_500m": 14, "change_within_1000m": 3, "change_within_5000m": 1 - } + }, + "id": 115432966 } }, { @@ -3739,7 +3796,8 @@ "language": "en", "change_within_500m": 3, "change_within_1000m": 1 - } + }, + "id": 115432598 } }, { @@ -3805,7 +3863,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 8 - } + }, + "id": 115429817 } }, { @@ -3870,7 +3929,8 @@ "language": "en", "change_over_5000m": 5, "change_within_25m": 3 - } + }, + "id": 115428764 } }, { @@ -3933,7 +3993,8 @@ "imagery": "osm", "language": "en", "change_within_5000m": 1 - } + }, + "id": 115427632 } }, { @@ -3995,7 +4056,8 @@ "imagery": "osm", "language": "nl", "change_within_25m": 6 - } + }, + "id": 115414828 } }, { @@ -4109,7 +4171,8 @@ "change_within_25m": 2, "change_within_50m": 1, "change_within_100m": 6 - } + }, + "id": 115414383 } }, { @@ -4170,7 +4233,8 @@ "answer": 9, "imagery": "osm", "language": "en" - } + }, + "id": 115410069 } }, { @@ -4231,7 +4295,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 115405896 } }, { @@ -4294,7 +4359,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115405642 } }, { @@ -4355,7 +4421,8 @@ "answer": 35, "imagery": "osm", "language": "en" - } + }, + "id": 115404835 } }, { @@ -4419,7 +4486,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "move:node/9368735169": "improve_accuracy" - } + }, + "id": 115404805 } }, { @@ -4482,7 +4550,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "change_within_500m": 2 - } + }, + "id": 115401224 } }, { @@ -4549,7 +4618,8 @@ "change_within_50m": 9, "change_within_100m": 23, "change_within_500m": 44 - } + }, + "id": 115393520 } }, { @@ -4613,7 +4683,8 @@ "language": "nl", "add-image": 3, "change_over_5000m": 16 - } + }, + "id": 115393404 } }, { @@ -4677,7 +4748,8 @@ "language": "en", "change_within_50m": 1, "move:node/8979968069": "improve_accuracy" - } + }, + "id": 115389875 } }, { @@ -4738,7 +4810,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 115389171 } }, { @@ -4799,7 +4872,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115388271 } }, { @@ -4860,7 +4934,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115388203 } }, { @@ -4925,7 +5000,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 4 - } + }, + "id": 115386087 } }, { @@ -4991,7 +5067,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 4 - } + }, + "id": 115385781 } }, { @@ -5052,7 +5129,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115382020 } }, { @@ -5116,7 +5194,8 @@ "language": "nl", "change_over_5000m": 1, "change_within_25m": 4 - } + }, + "id": 115380975 } }, { @@ -5177,7 +5256,8 @@ "answer": 23, "imagery": "osm", "language": "en" - } + }, + "id": 115377293 } }, { @@ -5243,7 +5323,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115371987 } }, { @@ -5311,7 +5392,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115371526 } }, { @@ -5372,7 +5454,8 @@ "answer": 31, "imagery": "osm", "language": "en" - } + }, + "id": 115368572 } }, { @@ -5433,7 +5516,8 @@ "answer": 285, "imagery": "osm", "language": "en" - } + }, + "id": 115365860 } }, { @@ -5496,7 +5580,8 @@ "imagery": "osm", "language": "fr", "add-image": 3 - } + }, + "id": 115365501 } }, { @@ -5558,7 +5643,8 @@ "imagery": "osm", "language": "fr", "add-image": 1 - } + }, + "id": 115365357 } }, { @@ -5619,7 +5705,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115360983 } }, { @@ -5680,7 +5767,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115359493 } }, { @@ -5746,7 +5834,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115357919 } }, { @@ -5808,7 +5897,8 @@ "imagery": "osm", "language": "nl", "change_within_25m": 6 - } + }, + "id": 115354401 } }, { @@ -5871,7 +5961,8 @@ "language": "nl", "add-image": 1, "change_within_25m": 5 - } + }, + "id": 115354209 } }, { @@ -5936,7 +6027,8 @@ "add-image": 2, "change_over_5000m": 2, "change_within_25m": 4 - } + }, + "id": 115354036 } }, { @@ -5999,7 +6091,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115353415 } }, { @@ -6060,7 +6153,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 115342756 } }, { @@ -6123,7 +6217,8 @@ "imagery": "osm", "language": "en", "move:node/9364014890": "improve_accuracy" - } + }, + "id": 115340330 } }, { @@ -6188,7 +6283,8 @@ "change_within_25m": 6, "change_within_50m": 2, "change_within_100m": 3 - } + }, + "id": 115336696 } }, { @@ -6249,7 +6345,8 @@ "answer": 109, "imagery": "osm", "language": "en" - } + }, + "id": 115335124 } }, { @@ -6398,7 +6495,8 @@ "imagery": "HDM_HOT", "language": "ca", "add-image": 8 - } + }, + "id": 115326275 } }, { @@ -6467,7 +6565,8 @@ "language": "nl", "change_over_5000m": 1, "change_within_25m": 2 - } + }, + "id": 115313460 } }, { @@ -6531,7 +6630,8 @@ "language": "en", "change_within_500m": 1, "deletion:node/1603226230": "disused" - } + }, + "id": 115310002 } }, { @@ -6597,7 +6697,8 @@ "language": "nl", "conflation": 20, "change_over_5000m": 1 - } + }, + "id": 115298834 } }, { @@ -6676,7 +6777,8 @@ "answer": 184, "imagery": "osm", "language": "en" - } + }, + "id": 115294562 } }, { @@ -6741,7 +6843,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 5 - } + }, + "id": 115290470 } }, { @@ -6806,7 +6909,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 5 - } + }, + "id": 115289364 } }, { @@ -6869,7 +6973,8 @@ "language": "nl", "add-image": 1, "change_within_25m": 4 - } + }, + "id": 115287407 } }, { @@ -6930,7 +7035,8 @@ "answer": 22, "imagery": "osm", "language": "en" - } + }, + "id": 115287307 } }, { @@ -6995,7 +7101,8 @@ "add-image": 2, "change_over_5000m": 1, "change_within_25m": 5 - } + }, + "id": 115286627 } }, { @@ -7058,7 +7165,8 @@ "language": "nl", "add-image": 2, "change_within_25m": 17 - } + }, + "id": 115286554 } }, { @@ -7119,7 +7227,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 115281610 } }, { @@ -7184,7 +7293,8 @@ "language": "nl", "conflation": 10, "change_over_5000m": 22 - } + }, + "id": 115277502 } }, { @@ -7245,7 +7355,8 @@ "imagery": "cyclosm", "language": "en", "add-image": 1 - } + }, + "id": 115275144 } }, { @@ -7306,7 +7417,8 @@ "answer": 14, "imagery": "osm", "language": "en" - } + }, + "id": 115271670 } }, { @@ -7367,7 +7479,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115256236 } }, { @@ -7431,7 +7544,8 @@ "language": "nl", "change_over_5000m": 1, "change_within_25m": 1 - } + }, + "id": 115255765 } }, { @@ -7492,7 +7606,8 @@ "answer": 16, "imagery": "osm", "language": "en" - } + }, + "id": 115247011 } }, { @@ -7556,7 +7671,8 @@ "language": "nl", "change_over_5000m": 1, "change_within_25m": 6 - } + }, + "id": 115243413 } }, { @@ -7619,7 +7735,8 @@ "imagery": "osm", "language": "nl", "conflation": 70 - } + }, + "id": 115239186 } }, { @@ -7680,7 +7797,8 @@ "answer": 33, "imagery": "osm", "language": "en" - } + }, + "id": 115239005 } }, { @@ -7745,7 +7863,8 @@ "language": "en", "conflation": 22, "change_over_5000m": 10 - } + }, + "id": 115228819 } }, { @@ -7809,7 +7928,8 @@ "imagery": "swisstopo_swissimage", "language": "de", "move:node/9356644189": "improve_accuracy" - } + }, + "id": 115226904 } }, { @@ -7870,7 +7990,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 115222993 } }, { @@ -7932,7 +8053,8 @@ "imagery": "osm", "language": "en", "change_over_5000m": 1 - } + }, + "id": 115216938 } }, { @@ -7995,7 +8117,8 @@ "imagery": "osm", "language": "nl", "conflation": 46 - } + }, + "id": 115214557 } }, { @@ -8058,7 +8181,8 @@ "imagery": "osm", "language": "nl", "conflation": 42 - } + }, + "id": 115214380 } }, { @@ -8119,7 +8243,8 @@ "create": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 115210315 } }, { @@ -8180,7 +8305,8 @@ "import": 1, "imagery": "AGIV", "language": "nl" - } + }, + "id": 115209594 } }, { @@ -8243,7 +8369,8 @@ "imagery": "osm", "language": "nl", "conflation": 22 - } + }, + "id": 115207937 } }, { @@ -8305,7 +8432,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 4 - } + }, + "id": 115206824 } }, { @@ -8368,7 +8496,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 22 - } + }, + "id": 115205980 } }, { @@ -8431,7 +8560,8 @@ "imagery": "osm", "language": "nl", "conflation": 226 - } + }, + "id": 115203113 } }, { @@ -8492,7 +8622,8 @@ "answer": 18, "imagery": "osm", "language": "en" - } + }, + "id": 115191464 } }, { @@ -8553,7 +8684,8 @@ "answer": 9, "imagery": "osm", "language": "en" - } + }, + "id": 115181170 } }, { @@ -8614,7 +8746,8 @@ "answer": 12, "imagery": "osm", "language": "en" - } + }, + "id": 115173185 } }, { @@ -8675,7 +8808,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115170960 } }, { @@ -8737,7 +8871,8 @@ "imagery": "osm", "language": "en", "change_within_500m": 4 - } + }, + "id": 115161944 } }, { @@ -8798,7 +8933,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 115161754 } }, { @@ -8861,7 +8997,8 @@ "add-image": 11, "change_over_5000m": 10, "change_within_500m": 1 - } + }, + "id": 115159362 } }, { @@ -8931,7 +9068,8 @@ "change_over_5000m": 3, "change_within_25m": 13, "change_within_50m": 9 - } + }, + "id": 115142549 } }, { @@ -8993,7 +9131,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 115141856 } }, { @@ -9055,7 +9194,8 @@ "create": 3, "imagery": "osm", "language": "en" - } + }, + "id": 115140412 } }, { @@ -9116,7 +9256,8 @@ "answer": 25, "imagery": "osm", "language": "en" - } + }, + "id": 115137973 } }, { @@ -9178,7 +9319,8 @@ "language": "nl", "add-image": 1, "change_within_25m": 1 - } + }, + "id": 115137129 } }, { @@ -10285,7 +10427,8 @@ "change_within_50m": 3, "change_within_100m": 33, "change_within_500m": 10 - } + }, + "id": 115137023 } }, { @@ -10346,7 +10489,8 @@ "answer": 98, "language": "nl", "change_over_5000m": 1 - } + }, + "id": 115135141 } }, { @@ -10407,7 +10551,8 @@ "answer": 30, "language": "nl", "change_over_5000m": 30 - } + }, + "id": 115134880 } }, { @@ -10467,7 +10612,8 @@ "theme": "missing_streets", "answer": 140, "language": "nl" - } + }, + "id": 115134486 } }, { @@ -10527,7 +10673,8 @@ "theme": "missing_streets", "answer": 137, "language": "nl" - } + }, + "id": 115134385 } }, { @@ -10587,7 +10734,8 @@ "theme": "missing_streets", "answer": 33, "language": "nl" - } + }, + "id": 115134377 } }, { @@ -10621,7 +10769,8 @@ "theme": "missing_streets", "answer": 2, "language": "nl" - } + }, + "id": 115134139 } }, { @@ -10681,7 +10830,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115134119 } }, { @@ -10741,7 +10891,8 @@ "theme": "missing_streets", "answer": 82, "language": "nl" - } + }, + "id": 115134083 } }, { @@ -10775,7 +10926,8 @@ "theme": "missing_streets", "answer": 50, "language": "nl" - } + }, + "id": 115130255 } }, { @@ -10835,7 +10987,8 @@ "theme": "missing_streets", "answer": 103, "language": "nl" - } + }, + "id": 115130254 } }, { @@ -10869,7 +11022,8 @@ "theme": "missing_streets", "answer": 1092, "language": "nl" - } + }, + "id": 115130191 } }, { @@ -10934,7 +11088,8 @@ "theme": "missing_streets", "answer": 2169, "language": "nl" - } + }, + "id": 115130173 } }, { @@ -10994,7 +11149,8 @@ "theme": "missing_streets", "answer": 683, "language": "nl" - } + }, + "id": 115130103 } }, { @@ -11059,7 +11215,8 @@ "theme": "missing_streets", "answer": 998, "language": "nl" - } + }, + "id": 115129914 } }, { @@ -11124,7 +11281,8 @@ "theme": "missing_streets", "answer": 1152, "language": "nl" - } + }, + "id": 115129864 } }, { @@ -11184,7 +11342,8 @@ "theme": "missing_streets", "answer": 326, "language": "nl" - } + }, + "id": 115129859 } }, { @@ -11218,7 +11377,8 @@ "theme": "missing_streets", "answer": 322, "language": "nl" - } + }, + "id": 115129854 } }, { @@ -11283,7 +11443,8 @@ "theme": "missing_streets", "answer": 320, "language": "nl" - } + }, + "id": 115129850 } }, { @@ -11317,7 +11478,8 @@ "theme": "missing_streets", "answer": 327, "language": "nl" - } + }, + "id": 115129823 } }, { @@ -11351,7 +11513,8 @@ "theme": "missing_streets", "answer": 299, "language": "nl" - } + }, + "id": 115129765 } }, { @@ -11385,7 +11548,8 @@ "theme": "missing_streets", "answer": 66, "language": "nl" - } + }, + "id": 115128261 } }, { @@ -11445,7 +11609,8 @@ "theme": "missing_streets", "answer": 121, "language": "nl" - } + }, + "id": 115128208 } }, { @@ -11510,7 +11675,8 @@ "theme": "missing_streets", "answer": 509, "language": "nl" - } + }, + "id": 115127935 } }, { @@ -11570,7 +11736,8 @@ "theme": "missing_streets", "answer": 55, "language": "nl" - } + }, + "id": 115127772 } }, { @@ -11604,7 +11771,8 @@ "theme": "missing_streets", "answer": 55, "language": "nl" - } + }, + "id": 115127726 } }, { @@ -11664,7 +11832,8 @@ "theme": "missing_streets", "answer": 114, "language": "nl" - } + }, + "id": 115127657 } }, { @@ -11727,7 +11896,8 @@ "language": "nl", "change_within_25m": 7, "change_within_100m": 1 - } + }, + "id": 115127587 } }, { @@ -11800,7 +11970,8 @@ "change_within_100m": 4, "change_within_500m": 1, "change_within_1000m": 1 - } + }, + "id": 115126967 } }, { @@ -11860,7 +12031,8 @@ "theme": "missing_streets", "answer": 19, "language": "nl" - } + }, + "id": 115126671 } }, { @@ -11920,7 +12092,8 @@ "theme": "missing_streets", "answer": 39, "language": "nl" - } + }, + "id": 115126282 } }, { @@ -11980,7 +12153,8 @@ "theme": "missing_streets", "answer": 37, "language": "nl" - } + }, + "id": 115125961 } }, { @@ -12040,7 +12214,8 @@ "theme": "missing_streets", "answer": 35, "language": "nl" - } + }, + "id": 115125958 } }, { @@ -12100,7 +12275,8 @@ "theme": "missing_streets", "answer": 331, "language": "nl" - } + }, + "id": 115125910 } }, { @@ -12160,7 +12336,8 @@ "theme": "missing_streets", "answer": 48, "language": "nl" - } + }, + "id": 115125653 } }, { @@ -12224,7 +12401,8 @@ "language": "nl", "change_over_5000m": 1, "change_within_25m": 5 - } + }, + "id": 115120491 } }, { @@ -12289,7 +12467,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 5 - } + }, + "id": 115120444 } }, { @@ -12350,7 +12529,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 115119368 } }, { @@ -12410,7 +12590,8 @@ "theme": "missing_streets", "answer": 12, "language": "nl" - } + }, + "id": 115113341 } }, { @@ -12470,7 +12651,8 @@ "theme": "missing_streets", "answer": 238, "language": "nl" - } + }, + "id": 115112863 } }, { @@ -12530,7 +12712,8 @@ "theme": "missing_streets", "answer": 14, "language": "nl" - } + }, + "id": 115112710 } }, { @@ -12590,7 +12773,8 @@ "theme": "missing_streets", "answer": 49, "language": "nl" - } + }, + "id": 115112694 } }, { @@ -12650,7 +12834,8 @@ "theme": "missing_streets", "answer": 21, "language": "nl" - } + }, + "id": 115112693 } }, { @@ -12710,7 +12895,8 @@ "theme": "missing_streets", "answer": 50, "language": "nl" - } + }, + "id": 115112656 } }, { @@ -12770,7 +12956,8 @@ "theme": "missing_streets", "answer": 34, "language": "nl" - } + }, + "id": 115112587 } }, { @@ -12830,7 +13017,8 @@ "theme": "missing_streets", "answer": 349, "language": "nl" - } + }, + "id": 115112561 } }, { @@ -12895,7 +13083,8 @@ "theme": "missing_streets", "answer": 395, "language": "nl" - } + }, + "id": 115112552 } }, { @@ -12957,7 +13146,8 @@ "answer": 4, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 115109624 } }, { @@ -13019,7 +13209,8 @@ "imagery": "osm", "language": "en", "change_within_5000m": 8 - } + }, + "id": 115108008 } }, { @@ -13101,7 +13292,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_5000m": 1 - } + }, + "id": 115107812 } }, { @@ -13162,7 +13354,8 @@ "answer": 3, "imagery": "osm", "language": "en" - } + }, + "id": 115106646 } }, { @@ -13224,7 +13417,8 @@ "create": 2, "imagery": "AGIV", "language": "en" - } + }, + "id": 115106101 } }, { @@ -13286,7 +13480,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "change_over_5000m": 1 - } + }, + "id": 115103568 } }, { @@ -13347,7 +13542,8 @@ "answer": 7, "imagery": "osm", "language": "en" - } + }, + "id": 115102913 } }, { @@ -13409,7 +13605,8 @@ "imagery": "osm", "language": "en", "change_within_500m": 2 - } + }, + "id": 115100932 } }, { @@ -13470,7 +13667,8 @@ "answer": 3, "imagery": "osm", "language": "en" - } + }, + "id": 115100836 } }, { @@ -13531,7 +13729,8 @@ "answer": 24, "imagery": "osm", "language": "en" - } + }, + "id": 115100099 } }, { @@ -13592,7 +13791,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115099830 } }, { @@ -13654,7 +13854,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 2 - } + }, + "id": 115098739 } }, { @@ -13715,7 +13916,8 @@ "answer": 98, "imagery": "osm", "language": "en" - } + }, + "id": 115097598 } }, { @@ -13776,7 +13978,8 @@ "answer": 3, "imagery": "osm", "language": "en" - } + }, + "id": 115095784 } }, { @@ -13840,7 +14043,8 @@ "language": "en", "add-image": 1, "change_within_25m": 5 - } + }, + "id": 115077361 } }, { @@ -13905,7 +14109,8 @@ "theme": "missing_streets", "answer": 795, "language": "nl" - } + }, + "id": 115075383 } }, { @@ -13966,7 +14171,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115074314 } }, { @@ -14027,7 +14233,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 115069080 } }, { @@ -14362,7 +14569,8 @@ "add-image": 27, "change_over_5000m": 8, "change_within_25m": 46 - } + }, + "id": 115068458 } }, { @@ -14442,7 +14650,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 115067636 } }, { @@ -14502,7 +14711,8 @@ "theme": "missing_streets", "answer": 189, "language": "nl" - } + }, + "id": 115067548 } }, { @@ -14562,7 +14772,8 @@ "theme": "missing_streets", "answer": 87, "language": "nl" - } + }, + "id": 115066926 } }, { @@ -14622,7 +14833,8 @@ "theme": "missing_streets", "answer": 7, "language": "nl" - } + }, + "id": 115066632 } }, { @@ -14682,7 +14894,8 @@ "theme": "missing_streets", "answer": 6, "language": "nl" - } + }, + "id": 115066513 } }, { @@ -14742,7 +14955,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115066501 } }, { @@ -14802,7 +15016,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115066382 } }, { @@ -14862,7 +15077,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115066269 } }, { @@ -14896,7 +15112,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115066236 } }, { @@ -14956,7 +15173,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115066235 } }, { @@ -15016,7 +15234,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115066138 } }, { @@ -15076,7 +15295,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115066115 } }, { @@ -15136,7 +15356,8 @@ "theme": "missing_streets", "answer": 5, "language": "nl" - } + }, + "id": 115066055 } }, { @@ -15196,7 +15417,8 @@ "theme": "missing_streets", "answer": 9, "language": "nl" - } + }, + "id": 115064642 } }, { @@ -15256,7 +15478,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115064553 } }, { @@ -15316,7 +15539,8 @@ "theme": "missing_streets", "answer": 8, "language": "nl" - } + }, + "id": 115064528 } }, { @@ -15376,7 +15600,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115063280 } }, { @@ -15436,7 +15661,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 115062744 } }, { @@ -15496,7 +15722,8 @@ "theme": "missing_streets", "answer": 2, "language": "nl" - } + }, + "id": 115062715 } }, { @@ -15556,7 +15783,8 @@ "theme": "missing_streets", "answer": 29, "language": "nl" - } + }, + "id": 115062402 } }, { @@ -15616,7 +15844,8 @@ "theme": "missing_streets", "answer": 22, "language": "nl" - } + }, + "id": 115062396 } }, { @@ -15676,7 +15905,8 @@ "theme": "missing_streets", "answer": 5, "language": "nl" - } + }, + "id": 115062377 } }, { @@ -15736,7 +15966,8 @@ "theme": "missing_streets", "answer": 4, "language": "nl" - } + }, + "id": 115062361 } }, { @@ -15799,7 +16030,8 @@ "create": 15, "imagery": "osm", "language": "en" - } + }, + "id": 115055797 } }, { @@ -15915,7 +16147,8 @@ "imagery": "HDM_HOT", "language": "ca", "add-image": 4 - } + }, + "id": 115020070 } }, { @@ -15979,7 +16212,8 @@ "language": "nl", "change_over_5000m": 1, "change_within_25m": 7 - } + }, + "id": 115017408 } }, { @@ -16040,7 +16274,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115015263 } }, { @@ -16099,7 +16334,8 @@ "theme": "climbing", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 114976586 } }, { @@ -16161,7 +16397,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 114969039 } }, { @@ -16223,7 +16460,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114968885 } }, { @@ -16284,7 +16522,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114968357 } }, { @@ -16346,7 +16585,8 @@ "imagery": "osm", "language": "fr", "change_within_100m": 8 - } + }, + "id": 114942699 } }, { @@ -16407,7 +16647,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114940487 } }, { @@ -16468,7 +16709,8 @@ "answer": 1, "imagery": "Stamen.TonerLite", "language": "nl" - } + }, + "id": 114939766 } }, { @@ -16532,7 +16774,8 @@ "language": "en", "change_within_500m": 1, "deletion:node/9337505903": "duplicate" - } + }, + "id": 114931965 } }, { @@ -16599,7 +16842,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114926545 } }, { @@ -16664,7 +16908,8 @@ "language": "en", "change_over_5000m": 2, "change_within_25m": 1 - } + }, + "id": 114925097 } }, { @@ -16727,7 +16972,8 @@ "imagery": "UrbISOrtho", "language": "en", "add-image": 1 - } + }, + "id": 114915854 } }, { @@ -16788,7 +17034,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 114912428 } }, { @@ -16849,7 +17096,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 114910791 } }, { @@ -16911,7 +17159,8 @@ "imagery": "CartoDB.Positron", "language": "en", "add-image": 1 - } + }, + "id": 114897962 } }, { @@ -16971,7 +17220,8 @@ "theme": "missing_streets", "answer": 38, "language": "nl" - } + }, + "id": 114893856 } }, { @@ -17031,7 +17281,8 @@ "theme": "missing_streets", "answer": 9, "language": "nl" - } + }, + "id": 114893804 } }, { @@ -17091,7 +17342,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114893801 } }, { @@ -17156,7 +17408,8 @@ "theme": "missing_streets", "answer": 323, "language": "nl" - } + }, + "id": 114893654 } }, { @@ -17216,7 +17469,8 @@ "theme": "missing_streets", "answer": 13, "language": "nl" - } + }, + "id": 114893624 } }, { @@ -17276,7 +17530,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114893493 } }, { @@ -17336,7 +17591,8 @@ "theme": "missing_streets", "answer": 19, "language": "nl" - } + }, + "id": 114893450 } }, { @@ -17396,7 +17652,8 @@ "theme": "missing_streets", "answer": 18, "language": "nl" - } + }, + "id": 114893443 } }, { @@ -17456,7 +17713,8 @@ "theme": "missing_streets", "answer": 3, "language": "nl" - } + }, + "id": 114893393 } }, { @@ -17516,7 +17774,8 @@ "theme": "missing_streets", "answer": 3, "language": "nl" - } + }, + "id": 114893354 } }, { @@ -17576,7 +17835,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114892696 } }, { @@ -17636,7 +17896,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114892661 } }, { @@ -17696,7 +17957,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114892587 } }, { @@ -17756,7 +18018,8 @@ "theme": "missing_streets", "answer": 5, "language": "nl" - } + }, + "id": 114892548 } }, { @@ -17816,7 +18079,8 @@ "theme": "missing_streets", "answer": 2, "language": "nl" - } + }, + "id": 114892533 } }, { @@ -17876,7 +18140,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114892374 } }, { @@ -17936,7 +18201,8 @@ "theme": "missing_streets", "answer": 7, "language": "nl" - } + }, + "id": 114892271 } }, { @@ -17996,7 +18262,8 @@ "theme": "missing_streets", "answer": 4, "language": "nl" - } + }, + "id": 114892258 } }, { @@ -18056,7 +18323,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114891907 } }, { @@ -18116,7 +18384,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114891875 } }, { @@ -18176,7 +18445,8 @@ "theme": "missing_streets", "answer": 2, "language": "nl" - } + }, + "id": 114891829 } }, { @@ -18236,7 +18506,8 @@ "theme": "missing_streets", "answer": 112, "language": "nl" - } + }, + "id": 114891462 } }, { @@ -18296,7 +18567,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114891452 } }, { @@ -18356,7 +18628,8 @@ "theme": "missing_streets", "answer": 2, "language": "nl" - } + }, + "id": 114891395 } }, { @@ -18415,7 +18688,8 @@ "theme": "climbing", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 114890982 } }, { @@ -18475,7 +18749,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114890770 } }, { @@ -18535,7 +18810,8 @@ "theme": "missing_streets", "answer": 9, "language": "nl" - } + }, + "id": 114890740 } }, { @@ -18595,7 +18871,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114890722 } }, { @@ -18655,7 +18932,8 @@ "theme": "missing_streets", "answer": 3, "language": "nl" - } + }, + "id": 114890702 } }, { @@ -18715,7 +18993,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114890683 } }, { @@ -18775,7 +19054,8 @@ "theme": "missing_streets", "answer": 47, "language": "nl" - } + }, + "id": 114890659 } }, { @@ -18835,7 +19115,8 @@ "theme": "missing_streets", "answer": 4, "language": "nl" - } + }, + "id": 114890643 } }, { @@ -18895,7 +19176,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114890597 } }, { @@ -18955,7 +19237,8 @@ "theme": "missing_streets", "answer": 17, "language": "nl" - } + }, + "id": 114890458 } }, { @@ -19015,7 +19298,8 @@ "theme": "missing_streets", "answer": 6, "language": "nl" - } + }, + "id": 114890456 } }, { @@ -19075,7 +19359,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114890447 } }, { @@ -19135,7 +19420,8 @@ "theme": "missing_streets", "answer": 2, "language": "nl" - } + }, + "id": 114890379 } }, { @@ -19195,7 +19481,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114890314 } }, { @@ -19255,7 +19542,8 @@ "theme": "missing_streets", "answer": 4, "language": "nl" - } + }, + "id": 114890282 } }, { @@ -19315,7 +19603,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114890206 } }, { @@ -19375,7 +19664,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114890164 } }, { @@ -19435,7 +19725,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114890152 } }, { @@ -19495,7 +19786,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114890033 } }, { @@ -19555,7 +19847,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114889712 } }, { @@ -19615,7 +19908,8 @@ "theme": "missing_streets", "answer": 2, "language": "nl" - } + }, + "id": 114889498 } }, { @@ -19675,7 +19969,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114889360 } }, { @@ -19735,7 +20030,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114889145 } }, { @@ -19795,7 +20091,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114889054 } }, { @@ -19855,7 +20152,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114888949 } }, { @@ -19915,7 +20213,8 @@ "theme": "missing_streets", "answer": 5, "language": "nl" - } + }, + "id": 114888813 } }, { @@ -19975,7 +20274,8 @@ "theme": "missing_streets", "answer": 10, "language": "nl" - } + }, + "id": 114888383 } }, { @@ -20009,7 +20309,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114887136 } }, { @@ -20043,7 +20344,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114887135 } }, { @@ -20103,7 +20405,8 @@ "theme": "missing_streets", "answer": 1, "language": "nl" - } + }, + "id": 114887134 } }, { @@ -20167,7 +20470,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 1 - } + }, + "id": 114886637 } }, { @@ -20230,7 +20534,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "change_over_5000m": 9 - } + }, + "id": 114884146 } }, { @@ -20293,7 +20598,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 1 - } + }, + "id": 114882795 } }, { @@ -20355,7 +20661,8 @@ "create": 5, "imagery": "AGIV", "language": "en" - } + }, + "id": 114876730 } }, { @@ -20421,7 +20728,8 @@ "language": "nl", "conflation": 58, "change_over_5000m": 61 - } + }, + "id": 114864189 } }, { @@ -20484,7 +20792,8 @@ "imagery": "AGIV", "language": "nl", "change_over_5000m": 12 - } + }, + "id": 114864085 } }, { @@ -20548,7 +20857,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 52 - } + }, + "id": 114864021 } }, { @@ -20613,7 +20923,8 @@ "language": "nl", "conflation": 2, "change_over_5000m": 10 - } + }, + "id": 114864018 } }, { @@ -20679,7 +20990,8 @@ "answer": 208, "language": "nl", "change_over_5000m": 208 - } + }, + "id": 114863330 } }, { @@ -20740,7 +21052,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 114857522 } }, { @@ -20803,7 +21116,8 @@ "language": "nl", "add-image": 2, "change_over_5000m": 6 - } + }, + "id": 114856487 } }, { @@ -20865,7 +21179,8 @@ "answer": 3, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 114851028 } }, { @@ -20928,7 +21243,8 @@ "language": "en", "add-image": 1, "change_within_25m": 5 - } + }, + "id": 114847633 } }, { @@ -20994,7 +21310,8 @@ "answer": 372, "imagery": "osm", "language": "nl" - } + }, + "id": 114834669 } }, { @@ -21056,7 +21373,8 @@ "imagery": "osm", "language": "en", "change_over_5000m": 1 - } + }, + "id": 114833158 } }, { @@ -21118,7 +21436,8 @@ "imagery": "HDM_HOT", "language": "en", "change_over_5000m": 1 - } + }, + "id": 114826322 } }, { @@ -21182,7 +21501,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 9 - } + }, + "id": 114822385 } }, { @@ -21247,7 +21567,8 @@ "language": "en", "change_within_25m": 2, "move:node/7896638970": "improve_accuracy" - } + }, + "id": 114822347 } }, { @@ -21312,7 +21633,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_100m": 1 - } + }, + "id": 114820618 } }, { @@ -21377,7 +21699,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 1 - } + }, + "id": 114818891 } }, { @@ -21442,7 +21765,8 @@ "language": "en", "change_over_5000m": 1, "change_within_50m": 1 - } + }, + "id": 114816694 } }, { @@ -21505,7 +21829,8 @@ "language": "en", "add-image": 1, "change_within_25m": 5 - } + }, + "id": 114814883 } }, { @@ -21567,7 +21892,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "change_within_1000m": 2 - } + }, + "id": 114811413 } }, { @@ -21628,7 +21954,8 @@ "answer": 24, "imagery": "osm", "language": "en" - } + }, + "id": 114810692 } }, { @@ -21690,7 +22017,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 4 - } + }, + "id": 114805192 } }, { @@ -21752,7 +22080,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "change_within_5000m": 5 - } + }, + "id": 114803817 } }, { @@ -21815,7 +22144,8 @@ "imagery": "AGIV", "language": "en", "add-image": 1 - } + }, + "id": 114803562 } }, { @@ -21878,7 +22208,8 @@ "imagery": "UrbISOrtho", "language": "en", "add-image": 1 - } + }, + "id": 114803527 } }, { @@ -21941,7 +22272,8 @@ "imagery": "UrbISOrtho", "language": "en", "add-image": 3 - } + }, + "id": 114802084 } }, { @@ -22002,7 +22334,8 @@ "answer": 1, "imagery": "osm", "language": "ca" - } + }, + "id": 114799387 } }, { @@ -22086,7 +22419,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_100m": 3 - } + }, + "id": 114797546 } }, { @@ -22149,7 +22483,8 @@ "imagery": "osm", "language": "en", "change_within_100m": 7 - } + }, + "id": 114797432 } }, { @@ -22215,7 +22550,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_100m": 6 - } + }, + "id": 114797398 } }, { @@ -22278,7 +22614,8 @@ "imagery": "osm", "language": "en", "change_over_5000m": 4 - } + }, + "id": 114797118 } }, { @@ -22339,7 +22676,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114794621 } }, { @@ -22404,7 +22742,8 @@ "language": "en", "change_within_25m": 2, "change_within_50m": 5 - } + }, + "id": 114794566 } }, { @@ -22470,7 +22809,8 @@ "change_over_5000m": 2, "change_within_25m": 1, "change_within_50m": 1 - } + }, + "id": 114793785 } }, { @@ -22533,7 +22873,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 114792447 } }, { @@ -22594,7 +22935,8 @@ "imagery": "osm", "language": "nl", "add-image": 2 - } + }, + "id": 114792295 } }, { @@ -22656,7 +22998,8 @@ "imagery": "osm", "language": "nl", "add-image": 2 - } + }, + "id": 114792106 } }, { @@ -22719,7 +23062,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 114792047 } }, { @@ -22781,7 +23125,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 114783965 } }, { @@ -22845,7 +23190,8 @@ "language": "en", "change_over_5000m": 2, "change_within_25m": 10 - } + }, + "id": 114783308 } }, { @@ -22909,7 +23255,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 3 - } + }, + "id": 114776379 } }, { @@ -22974,7 +23321,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 54 - } + }, + "id": 114773708 } }, { @@ -23039,7 +23387,8 @@ "conflation": 2, "change_over_5000m": 2, "change_within_500m": 1 - } + }, + "id": 114765605 } }, { @@ -23100,7 +23449,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 114758399 } }, { @@ -23163,7 +23513,8 @@ "language": "en", "add-image": 6, "change_within_50m": 9 - } + }, + "id": 114752467 } }, { @@ -23225,7 +23576,8 @@ "import": 37, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 114743466 } }, { @@ -23286,7 +23638,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 114727215 } }, { @@ -23348,7 +23701,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 3 - } + }, + "id": 114724239 } }, { @@ -23412,7 +23766,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 1 - } + }, + "id": 114723630 } }, { @@ -23479,7 +23834,8 @@ "move:node/-2": "improve_accuracy", "change_over_5000m": 4, "change_within_25m": 5 - } + }, + "id": 114720848 } }, { @@ -23547,7 +23903,8 @@ "change_within_25m": 6, "change_within_100m": 1, "move:node/9322304462": "improve_accuracy" - } + }, + "id": 114719850 } }, { @@ -23609,7 +23966,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 114719105 } }, { @@ -23670,7 +24028,8 @@ "answer": 52, "imagery": "osm", "language": "en" - } + }, + "id": 114714783 } }, { @@ -23732,7 +24091,8 @@ "imagery": "HDM_HOT", "language": "en", "change_over_5000m": 1 - } + }, + "id": 114713914 } }, { @@ -23794,7 +24154,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 114709693 } }, { @@ -23856,7 +24217,8 @@ "answer": 3, "imagery": "osm", "language": "nl" - } + }, + "id": 114707253 } }, { @@ -23921,7 +24283,8 @@ "language": "en", "conflation": 6, "change_over_5000m": 3 - } + }, + "id": 114705804 } }, { @@ -23984,7 +24347,8 @@ "language": "en", "change_over_5000m": 8, "change_within_5000m": 45 - } + }, + "id": 114701458 } }, { @@ -24045,7 +24409,8 @@ "answer": 3, "imagery": "osm", "language": "ca" - } + }, + "id": 114701243 } }, { @@ -24113,7 +24478,8 @@ "change_within_50m": 2, "change_within_100m": 5, "change_within_500m": 2 - } + }, + "id": 114700843 } }, { @@ -24177,7 +24543,8 @@ "language": "en", "add-image": 1, "change_within_25m": 4 - } + }, + "id": 114699400 } }, { @@ -24239,7 +24606,8 @@ "imagery": "HDM_HOT", "language": "en", "change_over_5000m": 1 - } + }, + "id": 114688415 } }, { @@ -24300,7 +24668,8 @@ "answer": 21, "imagery": "osm", "language": "en" - } + }, + "id": 114688133 } }, { @@ -24365,7 +24734,8 @@ "change_over_5000m": 4, "change_within_25m": 2, "change_within_50m": 6 - } + }, + "id": 114679656 } }, { @@ -24429,7 +24799,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 2 - } + }, + "id": 114673318 } }, { @@ -24490,7 +24861,8 @@ "answer": 16, "imagery": "osm", "language": "en" - } + }, + "id": 114666146 } }, { @@ -24556,7 +24928,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 114661934 } }, { @@ -24618,7 +24991,8 @@ "import": 20, "imagery": "AGIVFlandersGRB", "language": "en" - } + }, + "id": 114655773 } }, { @@ -24679,7 +25053,8 @@ "answer": 31, "imagery": "osm", "language": "nl" - } + }, + "id": 114654575 } }, { @@ -24748,7 +25123,8 @@ "imagery": "HDM_HOT", "language": "fr", "move:node/9233019525": "improve_accuracy" - } + }, + "id": 114648896 } }, { @@ -24815,7 +25191,8 @@ "create": 1, "imagery": "HDM_HOT", "language": "fr" - } + }, + "id": 114648895 } }, { @@ -24879,7 +25256,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 1 - } + }, + "id": 114647202 } }, { @@ -24941,7 +25319,8 @@ "imagery": "osm", "language": "en", "change_within_5000m": 11 - } + }, + "id": 114644262 } }, { @@ -25005,7 +25384,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "conflation": 6 - } + }, + "id": 114628069 } }, { @@ -25069,7 +25449,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 2 - } + }, + "id": 114622793 } }, { @@ -25133,7 +25514,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 4 - } + }, + "id": 114618802 } }, { @@ -25195,7 +25577,8 @@ "import": 39, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 114618588 } }, { @@ -25259,7 +25642,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 6 - } + }, + "id": 114618358 } }, { @@ -25324,7 +25708,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 2 - } + }, + "id": 114617692 } }, { @@ -25360,7 +25745,8 @@ "import": 1, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 114617681 } }, { @@ -25396,7 +25782,8 @@ "import": 1, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 114617676 } }, { @@ -25459,7 +25846,8 @@ "language": "en", "add-image": 4, "change_within_500m": 10 - } + }, + "id": 114617475 } }, { @@ -25524,7 +25912,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 72 - } + }, + "id": 114616724 } }, { @@ -25588,7 +25977,8 @@ "imagery": "osm", "language": "en", "conflation": 6 - } + }, + "id": 114616649 } }, { @@ -25650,7 +26040,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114614741 } }, { @@ -25713,7 +26104,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "change_over_5000m": 22 - } + }, + "id": 114614393 } }, { @@ -25750,7 +26142,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "change_over_5000m": 1 - } + }, + "id": 114614389 } }, { @@ -25813,7 +26206,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "change_over_5000m": 10 - } + }, + "id": 114614354 } }, { @@ -25874,7 +26268,8 @@ "answer": 6, "imagery": "osm", "language": "nl" - } + }, + "id": 114612439 } }, { @@ -25938,7 +26333,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 6 - } + }, + "id": 114609219 } }, { @@ -26004,7 +26400,8 @@ "change_within_25m": 1, "change_within_50m": 1, "change_within_100m": 1 - } + }, + "id": 114606422 } }, { @@ -26068,7 +26465,8 @@ "imagery": "osm", "language": "nl", "conflation": 28 - } + }, + "id": 114599635 } }, { @@ -26132,7 +26530,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 30 - } + }, + "id": 114599169 } }, { @@ -26193,7 +26592,8 @@ "answer": 6, "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 114597644 } }, { @@ -26254,7 +26654,8 @@ "answer": 5, "imagery": "osm", "language": "en" - } + }, + "id": 114597538 } }, { @@ -26315,7 +26716,8 @@ "answer": 9, "imagery": "osm", "language": "en" - } + }, + "id": 114597502 } }, { @@ -26376,7 +26778,8 @@ "answer": 6, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 114597432 } }, { @@ -26440,7 +26843,8 @@ "imagery": "AGIV", "language": "nl", "conflation": 22 - } + }, + "id": 114596214 } }, { @@ -26503,7 +26907,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "change_over_5000m": 12 - } + }, + "id": 114593204 } }, { @@ -26566,7 +26971,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 24 - } + }, + "id": 114589925 } }, { @@ -26603,7 +27009,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 1 - } + }, + "id": 114589923 } }, { @@ -26640,7 +27047,8 @@ "imagery": "osm", "language": "nl", "change_over_5000m": 2 - } + }, + "id": 114589920 } }, { @@ -26703,7 +27111,8 @@ "imagery": "AGIV", "language": "nl", "change_over_5000m": 15 - } + }, + "id": 114589804 } }, { @@ -26740,7 +27149,8 @@ "imagery": "AGIV", "language": "nl", "change_over_5000m": 2 - } + }, + "id": 114589800 } }, { @@ -26777,7 +27187,8 @@ "imagery": "AGIV", "language": "nl", "change_over_5000m": 1 - } + }, + "id": 114589796 } }, { @@ -26814,7 +27225,8 @@ "imagery": "AGIV", "language": "nl", "change_over_5000m": 1 - } + }, + "id": 114589793 } }, { @@ -26851,7 +27263,8 @@ "imagery": "AGIV", "language": "nl", "change_over_5000m": 1 - } + }, + "id": 114589791 } }, { @@ -26914,7 +27327,8 @@ "imagery": "AGIV", "language": "nl", "change_over_5000m": 2 - } + }, + "id": 114589695 } }, { @@ -26950,7 +27364,8 @@ "import": 2, "imagery": "AGIV", "language": "nl" - } + }, + "id": 114589690 } }, { @@ -26986,7 +27401,8 @@ "import": 1, "imagery": "AGIV", "language": "nl" - } + }, + "id": 114589684 } }, { @@ -27022,7 +27438,8 @@ "import": 1, "imagery": "AGIV", "language": "nl" - } + }, + "id": 114589682 } }, { @@ -27058,7 +27475,8 @@ "import": 1, "imagery": "AGIV", "language": "nl" - } + }, + "id": 114589678 } }, { @@ -27120,7 +27538,8 @@ "import": 12, "imagery": "osm", "language": "nl" - } + }, + "id": 114589631 } }, { @@ -27184,7 +27603,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 2 - } + }, + "id": 114583434 } }, { @@ -27250,7 +27670,8 @@ "language": "nl", "conflation": 4, "change_over_5000m": 5 - } + }, + "id": 114581092 } }, { @@ -27315,7 +27736,8 @@ "change_over_5000m": 2, "change_within_50m": 6, "change_within_500m": 6 - } + }, + "id": 114580691 } }, { @@ -27379,7 +27801,8 @@ "imagery": "osm", "language": "en", "conflation": 46 - } + }, + "id": 114571409 } }, { @@ -27414,7 +27837,8 @@ "import": 1, "imagery": "AGIV", "language": "en" - } + }, + "id": 114571100 } }, { @@ -27475,7 +27899,8 @@ "import": 1, "imagery": "AGIVFlandersGRB", "language": "en" - } + }, + "id": 114571099 } }, { @@ -27539,7 +27964,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "conflation": 18 - } + }, + "id": 114571030 } }, { @@ -27603,7 +28029,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "conflation": 6 - } + }, + "id": 114570730 } }, { @@ -27667,7 +28094,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "conflation": 12 - } + }, + "id": 114570678 } }, { @@ -27732,7 +28160,8 @@ "language": "en", "conflation": 22, "change_over_5000m": 6 - } + }, + "id": 114570109 } }, { @@ -27833,7 +28262,8 @@ "imagery": "HDM_HOT", "language": "ca", "change_within_25m": 4 - } + }, + "id": 114567284 } }, { @@ -28003,7 +28433,8 @@ "change_over_5000m": 9, "change_within_25m": 8, "change_within_50m": 1 - } + }, + "id": 114565529 } }, { @@ -28067,7 +28498,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 6 - } + }, + "id": 114564109 } }, { @@ -28129,7 +28561,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114563930 } }, { @@ -28192,7 +28625,8 @@ "imagery": "UrbISOrtho2020", "language": "en", "add-image": 1 - } + }, + "id": 114563899 } }, { @@ -28256,7 +28690,8 @@ "language": "de", "change_over_5000m": 1, "change_within_25m": 1 - } + }, + "id": 114563581 } }, { @@ -28321,7 +28756,8 @@ "change_over_5000m": 11, "change_within_25m": 4, "change_within_100m": 1 - } + }, + "id": 114563116 } }, { @@ -28386,7 +28822,8 @@ "language": "de", "change_over_5000m": 1, "change_within_5000m": 5 - } + }, + "id": 114559225 } }, { @@ -28447,7 +28884,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114558562 } }, { @@ -28509,7 +28947,8 @@ "imagery": "osm", "language": "de", "change_within_25m": 2 - } + }, + "id": 114556655 } }, { @@ -28545,7 +28984,8 @@ "imagery": "osm", "language": "de", "change_within_100m": 2 - } + }, + "id": 114556349 } }, { @@ -28608,7 +29048,8 @@ "language": "nl", "add-image": 2, "change_within_500m": 5 - } + }, + "id": 114547321 } }, { @@ -28673,7 +29114,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 2 - } + }, + "id": 114547035 } }, { @@ -28735,7 +29177,8 @@ "create": 1, "imagery": "AGIV", "language": "nl" - } + }, + "id": 114529779 } }, { @@ -28796,7 +29239,8 @@ "answer": 47, "imagery": "osm", "language": "it" - } + }, + "id": 114529543 } }, { @@ -28858,7 +29302,8 @@ "import": 1, "imagery": "AGIVFlandersGRB", "language": "en" - } + }, + "id": 114528127 } }, { @@ -28919,7 +29364,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 114528068 } }, { @@ -28985,7 +29431,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114525895 } }, { @@ -29046,7 +29493,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114516792 } }, { @@ -29108,7 +29556,8 @@ "imagery": "HDM_HOT", "language": "de", "change_over_5000m": 1 - } + }, + "id": 114508786 } }, { @@ -29174,7 +29623,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 114505852 } }, { @@ -29235,7 +29685,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 114499674 } }, { @@ -29300,7 +29751,8 @@ "language": "nl", "change_within_25m": 2, "change_within_50m": 1 - } + }, + "id": 114483581 } }, { @@ -29366,7 +29818,8 @@ "add-image": 2, "change_over_5000m": 1, "change_within_25m": 3 - } + }, + "id": 114483428 } }, { @@ -29427,7 +29880,8 @@ "answer": 5, "imagery": "osm", "language": "en" - } + }, + "id": 114483211 } }, { @@ -29489,7 +29943,8 @@ "imagery": "osm", "language": "fr", "change_over_5000m": 2 - } + }, + "id": 114482337 } }, { @@ -29552,7 +30007,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "change_within_5000m": 4 - } + }, + "id": 114481412 } }, { @@ -29614,7 +30070,8 @@ "import": 4, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 114463627 } }, { @@ -29679,7 +30136,8 @@ "add-image": 1, "change_over_5000m": 2, "change_within_25m": 10 - } + }, + "id": 114462319 } }, { @@ -29740,7 +30198,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 114461816 } }, { @@ -29801,7 +30260,8 @@ "answer": 3, "imagery": "osm", "language": "es" - } + }, + "id": 114461685 } }, { @@ -29862,7 +30322,8 @@ "imagery": "osm", "language": "en", "add-image": 3 - } + }, + "id": 114460999 } }, { @@ -29928,7 +30389,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 114454431 } }, { @@ -29999,7 +30461,8 @@ "change_over_5000m": 2, "change_within_25m": 3, "move:node/9300915863": "improve_accuracy" - } + }, + "id": 114451924 } }, { @@ -30061,7 +30524,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 114449961 } }, { @@ -30122,7 +30586,8 @@ "create": 1, "imagery": "USDA-NAIP", "language": "en" - } + }, + "id": 114449912 } }, { @@ -30185,7 +30650,8 @@ "create": 4, "imagery": "AGIV", "language": "en" - } + }, + "id": 114440486 } }, { @@ -30249,7 +30715,8 @@ "language": "de", "change_over_5000m": 3, "change_within_25m": 2 - } + }, + "id": 114434814 } }, { @@ -30313,7 +30780,8 @@ "language": "de", "change_over_5000m": 1, "change_within_25m": 6 - } + }, + "id": 114431043 } }, { @@ -30378,7 +30846,8 @@ "change_over_5000m": 6, "change_within_25m": 2, "change_within_100m": 1 - } + }, + "id": 114429834 } }, { @@ -30440,7 +30909,8 @@ "imagery": "osm", "language": "ca", "change_over_5000m": 1 - } + }, + "id": 114422931 } } ] diff --git a/Docs/Tools/stats/stats.2021-2.json b/Docs/Tools/stats/stats.2021-2.json index 784b4adeb5..e71131f5e7 100644 --- a/Docs/Tools/stats/stats.2021-2.json +++ b/Docs/Tools/stats/stats.2021-2.json @@ -57,7 +57,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 100158849 } }, { @@ -117,7 +118,8 @@ "theme": "allotments", "imagery": "osm", "language": "en" - } + }, + "id": 100158594 } }, { @@ -177,7 +179,8 @@ "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", "imagery": "osm", "language": "nl" - } + }, + "id": 100157822 } }, { @@ -237,7 +240,8 @@ "theme": "allotments", "imagery": "osm", "language": "en" - } + }, + "id": 100153982 } }, { @@ -297,7 +301,8 @@ "theme": "allotments", "imagery": "osm", "language": "en" - } + }, + "id": 100153839 } }, { @@ -358,7 +363,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100152747 } }, { @@ -419,7 +425,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100152683 } }, { @@ -480,7 +487,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 100151338 } }, { @@ -541,7 +549,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100149067 } }, { @@ -602,7 +611,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100141367 } }, { @@ -663,7 +673,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100140075 } }, { @@ -724,7 +735,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100126368 } }, { @@ -785,7 +797,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100126236 } }, { @@ -846,7 +859,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100117757 } }, { @@ -907,7 +921,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100117566 } }, { @@ -968,7 +983,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100116843 } }, { @@ -1028,7 +1044,8 @@ "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", "imagery": "osm", "language": "nl" - } + }, + "id": 100116383 } }, { @@ -1089,7 +1106,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100113908 } }, { @@ -1155,7 +1173,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100104366 } }, { @@ -1216,7 +1235,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100104020 } }, { @@ -1277,7 +1297,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100103957 } }, { @@ -1338,7 +1359,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100102164 } }, { @@ -1399,7 +1421,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 100101616 } }, { @@ -1460,7 +1483,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 100081609 } }, { @@ -1521,7 +1545,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100077413 } }, { @@ -1582,7 +1607,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100076620 } }, { @@ -1643,7 +1669,8 @@ "imagery": "AGIV", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 100074776 } }, { @@ -1704,7 +1731,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 100073938 } }, { @@ -1770,7 +1798,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100070322 } }, { @@ -1831,7 +1860,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 100069116 } }, { @@ -1892,7 +1922,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100060787 } }, { @@ -1952,7 +1983,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 100058257 } }, { @@ -2013,7 +2045,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100057814 } }, { @@ -2074,7 +2107,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100057703 } }, { @@ -2135,7 +2169,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100054794 } }, { @@ -2195,7 +2230,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 100053936 } }, { @@ -2256,7 +2292,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100053568 } }, { @@ -2339,7 +2376,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100053202 } }, { @@ -2400,7 +2438,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100052822 } }, { @@ -2461,7 +2500,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100052686 } }, { @@ -2527,7 +2567,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 100052329 } }, { @@ -2592,7 +2633,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 100050884 } }, { @@ -2652,7 +2694,8 @@ "theme": "surveillance", "imagery": "Stadia.AlidadeSmoothDark", "language": "en" - } + }, + "id": 100035223 } }, { @@ -2713,7 +2756,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100005066 } }, { @@ -2774,7 +2818,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100005004 } }, { @@ -2835,7 +2880,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100004851 } }, { @@ -2896,7 +2942,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100001332 } }, { @@ -2956,7 +3003,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 99995841 } }, { @@ -3034,7 +3082,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 99990530 } }, { @@ -3095,7 +3144,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99976196 } }, { @@ -3156,7 +3206,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 99966566 } }, { @@ -3215,7 +3266,8 @@ "theme": "climbing", "language": "de", "theme-creator": "Christian Neumann " - } + }, + "id": 99953165 } }, { @@ -3276,7 +3328,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99936680 } }, { @@ -3337,7 +3390,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99924541 } }, { @@ -3398,7 +3452,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99914037 } }, { @@ -3459,7 +3514,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99910020 } }, { @@ -3520,7 +3576,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99855005 } }, { @@ -3585,7 +3642,8 @@ "theme": "fritures", "imagery": "osm", "language": "fr" - } + }, + "id": 99835912 } }, { @@ -3644,7 +3702,8 @@ "theme": "climbing", "language": "de", "theme-creator": "Christian Neumann " - } + }, + "id": 99832025 } }, { @@ -3705,7 +3764,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 99820220 } }, { @@ -3766,7 +3826,8 @@ "imagery": "Stamen.Watercolor", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99779479 } }, { @@ -3826,7 +3887,8 @@ "theme": "surveillance", "imagery": "Stadia.AlidadeSmoothDark", "language": "en" - } + }, + "id": 99778046 } }, { @@ -3892,7 +3954,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Christian Neumann " - } + }, + "id": 99771721 } }, { @@ -3953,7 +4016,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 99770205 } }, { @@ -4013,7 +4077,8 @@ "theme": "geveltuintjes", "imagery": "osm", "language": "nl" - } + }, + "id": 99767714 } }, { @@ -4074,7 +4139,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 99766646 } }, { @@ -4134,7 +4200,8 @@ "theme": "geveltuintjes", "imagery": "osm", "language": "nl" - } + }, + "id": 99764594 } }, { @@ -4200,7 +4267,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99760617 } }, { @@ -4261,7 +4329,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99759346 } }, { @@ -4322,7 +4391,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 99757412 } }, { @@ -4382,7 +4452,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 99738539 } }, { @@ -4443,7 +4514,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 99736106 } }, { @@ -4504,7 +4576,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 99726454 } }, { @@ -4593,7 +4666,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 99723129 } }, { @@ -4654,7 +4728,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99697887 } }, { @@ -4715,7 +4790,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 99676146 } }, { @@ -4776,7 +4852,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 99675091 } }, { @@ -4837,7 +4914,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 99673436 } }, { @@ -4898,7 +4976,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99665427 } }, { @@ -4959,7 +5038,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 99656265 } }, { @@ -5019,7 +5099,8 @@ "theme": "klimbomen", "imagery": "osm", "language": "nl" - } + }, + "id": 99644899 } }, { @@ -5080,7 +5161,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99622784 } }, { @@ -5145,7 +5227,8 @@ "theme": "geveltuintjes", "imagery": "osm", "language": "nl" - } + }, + "id": 99615501 } }, { @@ -5211,7 +5294,8 @@ "imagery": "NSW_LPI_Imagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99615186 } }, { @@ -5289,7 +5373,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99606292 } }, { @@ -5349,7 +5434,8 @@ "theme": "geveltuintjes", "imagery": "osm", "language": "nl" - } + }, + "id": 99606276 } }, { @@ -5409,7 +5495,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 99601546 } }, { @@ -5469,7 +5556,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 99599094 } }, { @@ -5529,7 +5617,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 99598899 } }, { @@ -5590,7 +5679,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99578370 } }, { @@ -5651,7 +5741,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99569813 } }, { @@ -5712,7 +5803,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99563927 } }, { @@ -5772,7 +5864,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 99554379 } }, { @@ -5833,7 +5926,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 99548215 } }, { @@ -5894,7 +5988,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99527340 } }, { @@ -5955,7 +6050,8 @@ "imagery": "Actueel_ortho25_WMS", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 99527268 } }, { @@ -6016,7 +6112,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99467653 } }, { @@ -6077,7 +6174,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99466463 } }, { @@ -6138,7 +6236,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99457652 } }, { @@ -6199,7 +6298,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99400869 } }, { @@ -6260,7 +6360,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99400802 } }, { @@ -6321,7 +6422,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99400332 } }, { @@ -6382,7 +6484,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 99399352 } }, { @@ -6443,7 +6546,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99398917 } }, { @@ -6504,7 +6608,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 99398824 } }, { @@ -6565,7 +6670,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 99398790 } }, { @@ -6626,7 +6732,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 99385395 } }, { @@ -6686,7 +6793,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 99383785 } }, { @@ -6747,7 +6855,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 99383257 } }, { @@ -6829,7 +6938,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99369933 } }, { @@ -6890,7 +7000,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 99342577 } }, { @@ -6951,7 +7062,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 99342326 } }, { @@ -7029,7 +7141,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 99333909 } }, { @@ -7090,7 +7203,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 99333011 } }, { @@ -7151,7 +7265,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 99320724 } }, { @@ -7212,7 +7327,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99316602 } }, { @@ -7272,7 +7388,8 @@ "theme": "1roadAlllanes", "imagery": "osm", "language": "es" - } + }, + "id": 99231088 } }, { @@ -7332,7 +7449,8 @@ "theme": "1roadAlllanes", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 99199529 } }, { @@ -7392,7 +7510,8 @@ "theme": "crossingtime", "imagery": "osm", "language": "ca" - } + }, + "id": 99199139 } }, { @@ -7452,7 +7571,8 @@ "theme": "restaurants", "imagery": "osm", "language": "ca" - } + }, + "id": 99198918 } }, { @@ -7512,7 +7632,8 @@ "theme": "wherethesidewalkshavenoname", "imagery": "osm", "language": "en" - } + }, + "id": 99198737 } }, { @@ -7573,7 +7694,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 99160858 } }, { @@ -7634,7 +7756,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99142059 } }, { @@ -7695,7 +7818,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99129884 } }, { @@ -7756,7 +7880,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 99117277 } }, { @@ -7816,7 +7941,8 @@ "theme": "vaccination_centres", "imagery": "osm", "language": "nl" - } + }, + "id": 99062508 } }, { @@ -7877,7 +8003,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 99062399 } }, { @@ -7937,7 +8064,8 @@ "theme": "wherethesidewalkshavenoname", "imagery": "osm", "language": "es" - } + }, + "id": 99003014 } }, { @@ -7998,7 +8126,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 98988313 } }, { @@ -8059,7 +8188,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 98985394 } }, { @@ -8119,7 +8249,8 @@ "theme": "picnictable", "imagery": "osm", "language": "en" - } + }, + "id": 98983488 } }, { @@ -8179,7 +8310,8 @@ "theme": "vaccination_centres", "imagery": "AGIV", "language": "nl" - } + }, + "id": 98915231 } }, { @@ -8239,7 +8371,8 @@ "theme": "vaccination_centres", "imagery": "osm", "language": "nl" - } + }, + "id": 98910316 } }, { @@ -8300,7 +8433,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98908195 } }, { @@ -8335,7 +8469,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98908194 } }, { @@ -8396,7 +8531,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98908156 } }, { @@ -8456,7 +8592,8 @@ "theme": "vaccination_centres", "imagery": "osm", "language": "nl" - } + }, + "id": 98890818 } }, { @@ -8517,7 +8654,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98870697 } }, { @@ -8578,7 +8716,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 98870223 } }, { @@ -8639,7 +8778,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98858480 } }, { @@ -8700,7 +8840,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98855499 } }, { @@ -8735,7 +8876,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98855258 } }, { @@ -8796,7 +8938,8 @@ "imagery": "EsriWorldImagery", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 98833004 } }, { @@ -8856,7 +8999,8 @@ "theme": "wherethesidewalkshavenoname", "imagery": "osm", "language": "ca" - } + }, + "id": 98824212 } }, { @@ -8921,7 +9065,8 @@ "theme": "containeronvas", "imagery": "osm", "language": "es" - } + }, + "id": 98823177 } }, { @@ -8982,7 +9127,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 98808335 } }, { @@ -9043,7 +9189,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 98808325 } }, { @@ -9104,7 +9251,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98777544 } }, { @@ -9165,7 +9313,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98775172 } }, { @@ -9226,7 +9375,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 98774403 } }, { @@ -9287,7 +9437,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98770620 } }, { @@ -9348,7 +9499,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98758800 } }, { @@ -9409,7 +9561,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 98740296 } }, { @@ -9470,7 +9623,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 98726086 } }, { @@ -9531,7 +9685,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98725717 } }, { @@ -9591,7 +9746,8 @@ "theme": "paden", "imagery": "osm", "language": "nl" - } + }, + "id": 98713865 } }, { @@ -9652,7 +9808,8 @@ "imagery": "AGIV", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 98709530 } }, { @@ -9713,7 +9870,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98705104 } }, { @@ -9774,7 +9932,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98672493 } }, { @@ -9834,7 +9993,8 @@ "theme": "vaccination_centres", "imagery": "osm", "language": "nl" - } + }, + "id": 98670888 } }, { @@ -9895,7 +10055,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 98665284 } }, { @@ -9956,7 +10117,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98663251 } }, { @@ -10017,7 +10179,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98663183 } }, { @@ -10078,7 +10241,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98663172 } }, { @@ -10139,7 +10303,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98659703 } }, { @@ -10200,7 +10365,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98656940 } }, { @@ -10261,7 +10427,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98655231 } }, { @@ -10322,7 +10489,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98644606 } }, { @@ -10387,7 +10555,8 @@ "theme": "fritures", "imagery": "osm", "language": "fr" - } + }, + "id": 98640403 } }, { @@ -10447,7 +10616,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 98634108 } }, { @@ -10508,7 +10678,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 98632402 } }, { @@ -10569,7 +10740,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98631263 } }, { @@ -10629,7 +10801,8 @@ "theme": "vaccination_centres", "imagery": "osm", "language": "nl" - } + }, + "id": 98626175 } }, { @@ -10690,7 +10863,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98603682 } }, { @@ -10750,7 +10924,8 @@ "theme": "openinghourscovid19", "imagery": "osm", "language": "es" - } + }, + "id": 98592602 } }, { @@ -10785,7 +10960,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98587768 } }, { @@ -10820,7 +10996,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98587566 } }, { @@ -10855,7 +11032,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98585917 } }, { @@ -10890,7 +11068,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98585631 } }, { @@ -10925,7 +11104,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98585501 } }, { @@ -10960,7 +11140,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98576734 } }, { @@ -10995,7 +11176,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98576584 } }, { @@ -11056,7 +11238,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98569828 } }, { @@ -11117,7 +11300,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 98568686 } }, { @@ -11183,7 +11367,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 98566470 } }, { @@ -11223,7 +11408,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 98566286 } }, { @@ -11289,7 +11475,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 98565848 } }, { @@ -11349,7 +11536,8 @@ "theme": "wiki-User-joost_schouppe-geveltuintjes", "imagery": "osm", "language": "nl" - } + }, + "id": 98559761 } }, { @@ -11409,7 +11597,8 @@ "theme": "campersite", "imagery": "osm", "language": "en" - } + }, + "id": 98530962 } }, { @@ -11470,7 +11659,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98529536 } }, { @@ -11531,7 +11721,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98519285 } }, { @@ -11591,7 +11782,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 98519021 } }, { @@ -11652,7 +11844,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 98517414 } }, { @@ -11713,7 +11906,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 98512905 } }, { @@ -11774,7 +11968,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 98502118 } } ] diff --git a/Docs/Tools/stats/stats.2021-3.json b/Docs/Tools/stats/stats.2021-3.json index 0469f8d0b7..7552e466f6 100644 --- a/Docs/Tools/stats/stats.2021-3.json +++ b/Docs/Tools/stats/stats.2021-3.json @@ -58,7 +58,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 102082219 } }, { @@ -119,7 +120,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102081437 } }, { @@ -180,7 +182,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102070461 } }, { @@ -241,7 +244,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102066153 } }, { @@ -302,7 +306,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102065964 } }, { @@ -363,7 +368,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102061652 } }, { @@ -466,7 +472,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102059060 } }, { @@ -573,7 +580,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102053164 } }, { @@ -634,7 +642,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102051867 } }, { @@ -695,7 +704,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102050957 } }, { @@ -756,7 +766,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102050912 } }, { @@ -816,7 +827,8 @@ "theme": "localrevision", "imagery": "osm", "language": "es" - } + }, + "id": 102049993 } }, { @@ -882,7 +894,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102049972 } }, { @@ -942,7 +955,8 @@ "theme": "fitness_station", "imagery": "osm", "language": "en" - } + }, + "id": 102048412 } }, { @@ -1036,7 +1050,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102046524 } }, { @@ -1101,7 +1116,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 102007350 } }, { @@ -1162,7 +1178,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101996119 } }, { @@ -1223,7 +1240,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101995576 } }, { @@ -1302,7 +1320,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101993159 } }, { @@ -1363,7 +1382,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101981953 } }, { @@ -1446,7 +1466,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101981404 } }, { @@ -1507,7 +1528,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101973779 } }, { @@ -1572,7 +1594,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 101942872 } }, { @@ -1633,7 +1656,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101930669 } }, { @@ -1699,7 +1723,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 101919443 } }, { @@ -1764,7 +1789,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 101918321 } }, { @@ -1825,7 +1851,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101892733 } }, { @@ -1886,7 +1913,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101892444 } }, { @@ -1947,7 +1975,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101892297 } }, { @@ -2007,7 +2036,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 101891909 } }, { @@ -2067,7 +2097,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 101890254 } }, { @@ -2128,7 +2159,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101889954 } }, { @@ -2188,7 +2220,8 @@ "theme": "wherethesidewalkshavenoname", "imagery": "osm", "language": "en" - } + }, + "id": 101889823 } }, { @@ -2249,7 +2282,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101885043 } }, { @@ -2310,7 +2344,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 101884979 } }, { @@ -2371,7 +2406,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101881241 } }, { @@ -2432,7 +2468,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 101880355 } }, { @@ -2493,7 +2530,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101879051 } }, { @@ -2554,7 +2592,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 101878531 } }, { @@ -2615,7 +2654,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101876634 } }, { @@ -2676,7 +2716,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 101873402 } }, { @@ -2737,7 +2778,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101873159 } }, { @@ -2798,7 +2840,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101872302 } }, { @@ -2863,7 +2906,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 101871590 } }, { @@ -2923,7 +2967,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 101870926 } }, { @@ -2983,7 +3028,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 101870809 } }, { @@ -3044,7 +3090,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 101868814 } }, { @@ -3109,7 +3156,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 101865315 } }, { @@ -3170,7 +3218,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101852349 } }, { @@ -3231,7 +3280,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe; stla" - } + }, + "id": 101844159 } }, { @@ -3292,7 +3342,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 101841292 } }, { @@ -3353,7 +3404,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101834425 } }, { @@ -3414,7 +3466,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101833538 } }, { @@ -3475,7 +3528,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101829358 } }, { @@ -3536,7 +3590,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101829031 } }, { @@ -3596,7 +3651,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "nl" - } + }, + "id": 101818728 } }, { @@ -3661,7 +3717,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 101813152 } }, { @@ -3739,7 +3796,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101805447 } }, { @@ -3800,7 +3858,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 101805410 } }, { @@ -3860,7 +3919,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 101799330 } }, { @@ -3921,7 +3981,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101795137 } }, { @@ -3981,7 +4042,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 101794174 } }, { @@ -4042,7 +4104,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101793666 } }, { @@ -4102,7 +4165,8 @@ "theme": "1roadAlllanes", "imagery": "osm", "language": "es" - } + }, + "id": 101792066 } }, { @@ -4163,7 +4227,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101785908 } }, { @@ -4224,7 +4289,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 101785278 } }, { @@ -4285,7 +4351,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101780104 } }, { @@ -4345,7 +4412,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 101776584 } }, { @@ -4410,7 +4478,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 101775201 } }, { @@ -4475,7 +4544,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 101772453 } }, { @@ -4536,7 +4606,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101751716 } }, { @@ -4596,7 +4667,8 @@ "theme": "HailHydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 101741727 } }, { @@ -4657,7 +4729,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 101690921 } }, { @@ -4718,7 +4791,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 101689560 } }, { @@ -4778,7 +4852,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 101676357 } }, { @@ -4839,7 +4914,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101675962 } }, { @@ -4900,7 +4976,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101673428 } }, { @@ -4961,7 +5038,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe; stla" - } + }, + "id": 101670098 } }, { @@ -5022,7 +5100,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101668002 } }, { @@ -5083,7 +5162,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101666752 } }, { @@ -5144,7 +5224,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 101664459 } }, { @@ -5205,7 +5286,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101662824 } }, { @@ -5266,7 +5348,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101662737 } }, { @@ -5327,7 +5410,8 @@ "imagery": "nrw_dtm_wms", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101659153 } }, { @@ -5388,7 +5472,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 101658081 } }, { @@ -5449,7 +5534,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101657473 } }, { @@ -5510,7 +5596,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101653974 } }, { @@ -5571,7 +5658,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101599503 } }, { @@ -5632,7 +5720,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101597611 } }, { @@ -5693,7 +5782,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe; stla" - } + }, + "id": 101596541 } }, { @@ -5754,7 +5844,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101595539 } }, { @@ -5815,7 +5906,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101593442 } }, { @@ -5875,7 +5967,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 101570350 } }, { @@ -5936,7 +6029,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101569443 } }, { @@ -5996,7 +6090,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 101565776 } }, { @@ -6057,7 +6152,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101559560 } }, { @@ -6118,7 +6214,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 101554176 } }, { @@ -6178,7 +6275,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 101508098 } }, { @@ -6239,7 +6337,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 101506285 } }, { @@ -6300,7 +6399,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101488654 } }, { @@ -6361,7 +6461,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101462703 } }, { @@ -6422,7 +6523,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101462501 } }, { @@ -6483,7 +6585,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101459868 } }, { @@ -6543,7 +6646,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 101455414 } }, { @@ -6603,7 +6707,8 @@ "theme": "grb", "imagery": "osm", "language": "nl" - } + }, + "id": 101449724 } }, { @@ -6664,7 +6769,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101443809 } }, { @@ -6724,7 +6830,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 101438434 } }, { @@ -6785,7 +6892,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101416023 } }, { @@ -6846,7 +6954,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101393058 } }, { @@ -6906,7 +7015,8 @@ "theme": "geveltuintjes", "imagery": "osm", "language": "nl" - } + }, + "id": 101392787 } }, { @@ -6966,7 +7076,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 101392509 } }, { @@ -7027,7 +7138,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101391692 } }, { @@ -7088,7 +7200,8 @@ "imagery": "CartoDB.Voyager", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 101389783 } }, { @@ -7149,7 +7262,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101382253 } }, { @@ -7210,7 +7324,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101375598 } }, { @@ -7276,7 +7391,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 101348816 } }, { @@ -7337,7 +7453,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe" - } + }, + "id": 101330064 } }, { @@ -7398,7 +7515,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101314914 } }, { @@ -7459,7 +7577,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 101312750 } }, { @@ -7520,7 +7639,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101294518 } }, { @@ -7581,7 +7701,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101294343 } }, { @@ -7642,7 +7763,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101290552 } }, { @@ -7703,7 +7825,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 101285518 } }, { @@ -7764,7 +7887,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe" - } + }, + "id": 101284366 } }, { @@ -7825,7 +7949,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101263817 } }, { @@ -7886,7 +8011,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101243945 } }, { @@ -7947,7 +8073,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101226298 } }, { @@ -8008,7 +8135,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 101219521 } }, { @@ -8068,7 +8196,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 101216733 } }, { @@ -8133,7 +8262,8 @@ "theme": "surveillance", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 101213106 } }, { @@ -8194,7 +8324,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101198354 } }, { @@ -8255,7 +8386,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101192583 } }, { @@ -8316,7 +8448,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 101178103 } }, { @@ -8377,7 +8510,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 101177425 } }, { @@ -8438,7 +8572,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 101177218 } }, { @@ -8499,7 +8634,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101171670 } }, { @@ -8560,7 +8696,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 101166909 } }, { @@ -8620,7 +8757,8 @@ "theme": "crossingtime", "imagery": "osm", "language": "es" - } + }, + "id": 101147703 } }, { @@ -8681,7 +8819,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 101142626 } }, { @@ -8741,7 +8880,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 101142493 } }, { @@ -8801,7 +8941,8 @@ "theme": "wherethesidewalkshavenoname", "imagery": "osm", "language": "ca" - } + }, + "id": 101142390 } }, { @@ -8862,7 +9003,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101142389 } }, { @@ -8923,7 +9065,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101141686 } }, { @@ -8984,7 +9127,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101136189 } }, { @@ -9045,7 +9189,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101135663 } }, { @@ -9106,7 +9251,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101127309 } }, { @@ -9167,7 +9313,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 101125548 } }, { @@ -9227,7 +9374,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "nl" - } + }, + "id": 101122448 } }, { @@ -9288,7 +9436,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101095488 } }, { @@ -9349,7 +9498,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 101082113 } }, { @@ -9410,7 +9560,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 101069649 } }, { @@ -9471,7 +9622,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe" - } + }, + "id": 101068744 } }, { @@ -9532,7 +9684,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101061414 } }, { @@ -9593,7 +9746,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101035070 } }, { @@ -9653,7 +9807,8 @@ "theme": "surveillance", "imagery": "Stadia.AlidadeSmoothDark", "language": "en" - } + }, + "id": 101012269 } }, { @@ -9714,7 +9869,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 101003973 } }, { @@ -9775,7 +9931,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100993948 } }, { @@ -9836,7 +9993,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100993328 } }, { @@ -9897,7 +10055,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100992716 } }, { @@ -9958,7 +10117,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100983734 } }, { @@ -10019,7 +10179,8 @@ "imagery": "AGIV10cm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100975031 } }, { @@ -10080,7 +10241,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100958601 } }, { @@ -10141,7 +10303,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100951681 } }, { @@ -10202,7 +10365,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100920070 } }, { @@ -10263,7 +10427,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100919638 } }, { @@ -10324,7 +10489,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 100896599 } }, { @@ -10385,7 +10551,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100865857 } }, { @@ -10446,7 +10613,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100863722 } }, { @@ -10507,7 +10675,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100842093 } }, { @@ -10568,7 +10737,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 100837457 } }, { @@ -10629,7 +10799,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100836888 } }, { @@ -10690,7 +10861,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100835527 } }, { @@ -10751,7 +10923,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100834775 } }, { @@ -10812,7 +10985,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100834132 } }, { @@ -10872,7 +11046,8 @@ "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", "imagery": "osm", "language": "nl" - } + }, + "id": 100802530 } }, { @@ -10932,7 +11107,8 @@ "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", "imagery": "osm", "language": "nl" - } + }, + "id": 100801897 } }, { @@ -10992,7 +11168,8 @@ "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", "imagery": "osm", "language": "nl" - } + }, + "id": 100797468 } }, { @@ -11052,7 +11229,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 100794576 } }, { @@ -11113,7 +11291,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100789874 } }, { @@ -11173,7 +11352,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 100763657 } }, { @@ -11234,7 +11414,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100748361 } }, { @@ -11294,7 +11475,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 100732356 } }, { @@ -11355,7 +11537,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100724260 } }, { @@ -11416,7 +11599,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100719899 } }, { @@ -11477,7 +11661,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100710537 } }, { @@ -11566,7 +11751,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100688874 } }, { @@ -11627,7 +11813,8 @@ "imagery": "osm", "language": "ca", "theme-creator": "MapComplete" - } + }, + "id": 100687881 } }, { @@ -11687,7 +11874,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 100687422 } }, { @@ -11748,7 +11936,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100654596 } }, { @@ -11809,7 +11998,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100649005 } }, { @@ -11870,7 +12060,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100633150 } }, { @@ -11931,7 +12122,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100621555 } }, { @@ -11992,7 +12184,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100608902 } }, { @@ -12053,7 +12246,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100608285 } }, { @@ -12134,7 +12328,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 100590572 } }, { @@ -12195,7 +12390,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 100590212 } }, { @@ -12256,7 +12452,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100573127 } }, { @@ -12317,7 +12514,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100555952 } }, { @@ -12377,7 +12575,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 100554125 } }, { @@ -12438,7 +12637,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100549103 } }, { @@ -12499,7 +12699,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100541478 } }, { @@ -12559,7 +12760,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 100540347 } }, { @@ -12620,7 +12822,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100516584 } }, { @@ -12681,7 +12884,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100513175 } }, { @@ -12756,7 +12960,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 100509237 } }, { @@ -12816,7 +13021,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 100507908 } }, { @@ -12877,7 +13083,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100503768 } }, { @@ -12938,7 +13145,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100500229 } }, { @@ -12999,7 +13207,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100478531 } }, { @@ -13060,7 +13269,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100440532 } }, { @@ -13120,7 +13330,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 100440346 } }, { @@ -13181,7 +13392,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100440258 } }, { @@ -13242,7 +13454,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100439729 } }, { @@ -13303,7 +13516,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100436673 } }, { @@ -13364,7 +13578,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100435050 } }, { @@ -13425,7 +13640,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100428850 } }, { @@ -13486,7 +13702,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100414702 } }, { @@ -13547,7 +13764,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100378312 } }, { @@ -13607,7 +13825,8 @@ "theme": "wherethesidewalkshavenoname", "imagery": "osm", "language": "es" - } + }, + "id": 100377781 } }, { @@ -13667,7 +13886,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 100375035 } }, { @@ -13728,7 +13948,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100374476 } }, { @@ -13789,7 +14010,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 100372177 } }, { @@ -13849,7 +14071,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 100372173 } }, { @@ -13910,7 +14133,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 100371897 } }, { @@ -13971,7 +14195,8 @@ "imagery": "AGIV", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 100369859 } }, { @@ -14032,7 +14257,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 100368458 } }, { @@ -14072,7 +14298,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100357540 } }, { @@ -14138,7 +14365,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100357539 } }, { @@ -14199,7 +14427,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100351890 } }, { @@ -14260,7 +14489,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100320533 } }, { @@ -14321,7 +14551,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100308444 } }, { @@ -14381,7 +14612,8 @@ "theme": "surveillance", "imagery": "Stadia.AlidadeSmoothDark", "language": "en" - } + }, + "id": 100302384 } }, { @@ -14442,7 +14674,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100297422 } }, { @@ -14503,7 +14736,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100291986 } }, { @@ -14564,7 +14798,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100279509 } }, { @@ -14625,7 +14860,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100234767 } }, { @@ -14686,7 +14922,8 @@ "imagery": "Metropole_Ruhr_RVR-DOP10", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 100228941 } }, { @@ -14747,7 +14984,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100228867 } }, { @@ -14813,7 +15051,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100222646 } }, { @@ -14874,7 +15113,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100221069 } }, { @@ -14935,7 +15175,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100220460 } }, { @@ -14996,7 +15237,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100218886 } }, { @@ -15057,7 +15299,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100217759 } }, { @@ -15118,7 +15361,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 100209616 } }, { @@ -15179,7 +15423,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 100182404 } }, { @@ -15240,7 +15485,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 100178688 } }, { @@ -15301,7 +15547,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100167174 } }, { @@ -15362,7 +15609,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 100163727 } }, { @@ -15423,7 +15671,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 100162468 } } ] diff --git a/Docs/Tools/stats/stats.2021-4.json b/Docs/Tools/stats/stats.2021-4.json index c02845c9bc..33e72adfbf 100644 --- a/Docs/Tools/stats/stats.2021-4.json +++ b/Docs/Tools/stats/stats.2021-4.json @@ -58,7 +58,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 103931344 } }, { @@ -118,7 +119,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103913653 } }, { @@ -179,7 +181,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103911612 } }, { @@ -240,7 +243,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103909231 } }, { @@ -301,7 +305,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103906814 } }, { @@ -362,7 +367,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103905526 } }, { @@ -423,7 +429,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103904671 } }, { @@ -483,7 +490,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 103900585 } }, { @@ -560,7 +568,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 103893667 } }, { @@ -620,7 +629,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103884702 } }, { @@ -696,7 +706,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 103877994 } }, { @@ -757,7 +768,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 103874228 } }, { @@ -818,7 +830,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103867866 } }, { @@ -879,7 +892,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103865139 } }, { @@ -940,7 +954,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103857813 } }, { @@ -1006,7 +1021,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 103825106 } }, { @@ -1067,7 +1083,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103805126 } }, { @@ -1128,7 +1145,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103800844 } }, { @@ -1188,7 +1206,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103799210 } }, { @@ -1248,7 +1267,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 103796502 } }, { @@ -1308,7 +1328,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103792251 } }, { @@ -1369,7 +1390,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103791227 } }, { @@ -1430,7 +1452,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103784297 } }, { @@ -1491,7 +1514,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103763467 } }, { @@ -1552,7 +1576,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103761379 } }, { @@ -1613,7 +1638,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103756614 } }, { @@ -1673,7 +1699,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103747106 } }, { @@ -1734,7 +1761,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103729838 } }, { @@ -1794,7 +1822,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 103728876 } }, { @@ -1870,7 +1899,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 103728361 } }, { @@ -1930,7 +1960,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103726335 } }, { @@ -1991,7 +2022,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 103718964 } }, { @@ -2051,7 +2083,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103718526 } }, { @@ -2111,7 +2144,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103718525 } }, { @@ -2199,7 +2233,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 103717492 } }, { @@ -2260,7 +2295,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103713935 } }, { @@ -2320,7 +2356,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103713018 } }, { @@ -2381,7 +2418,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103710787 } }, { @@ -2441,7 +2479,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103706104 } }, { @@ -2507,7 +2546,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103702168 } }, { @@ -2573,7 +2613,8 @@ "imagery": "fr.ign.bdortho", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103684185 } }, { @@ -2925,7 +2966,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 103678765 } }, { @@ -2986,7 +3028,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 103667810 } }, { @@ -3047,7 +3090,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103667364 } }, { @@ -3108,7 +3152,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 103660877 } }, { @@ -3169,7 +3214,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 103657133 } }, { @@ -3230,7 +3276,8 @@ "imagery": "CartoDB.Voyager", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 103655718 } }, { @@ -3291,7 +3338,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103640045 } }, { @@ -3352,7 +3400,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103637542 } }, { @@ -3413,7 +3462,8 @@ "imagery": "fr.ign.bdortho", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 103627326 } }, { @@ -3492,7 +3542,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103627272 } }, { @@ -3553,7 +3604,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103619733 } }, { @@ -3614,7 +3666,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103619432 } }, { @@ -3675,7 +3728,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103618326 } }, { @@ -3735,7 +3789,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 103615504 } }, { @@ -3796,7 +3851,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103611441 } }, { @@ -3857,7 +3913,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 103611306 } }, { @@ -3918,7 +3975,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 103611007 } }, { @@ -3979,7 +4037,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103607085 } }, { @@ -4039,7 +4098,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 103592787 } }, { @@ -4100,7 +4160,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 103587980 } }, { @@ -4161,7 +4222,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103585340 } }, { @@ -4221,7 +4283,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 103584107 } }, { @@ -4282,7 +4345,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103583598 } }, { @@ -4343,7 +4407,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103582067 } }, { @@ -4404,7 +4469,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103575209 } }, { @@ -4465,7 +4531,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103574380 } }, { @@ -4526,7 +4593,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103572648 } }, { @@ -4586,7 +4654,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 103570626 } }, { @@ -4646,7 +4715,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 103569305 } }, { @@ -4712,7 +4782,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103568967 } }, { @@ -4773,7 +4844,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103567684 } }, { @@ -4834,7 +4906,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103566900 } }, { @@ -4895,7 +4968,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103565210 } }, { @@ -4956,7 +5030,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103561909 } }, { @@ -5016,7 +5091,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 103558695 } }, { @@ -5082,7 +5158,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103549083 } }, { @@ -5148,7 +5225,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103544375 } }, { @@ -5214,7 +5292,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103537961 } }, { @@ -5275,7 +5354,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103534538 } }, { @@ -5335,7 +5415,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 103532232 } }, { @@ -5395,7 +5476,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "nl" - } + }, + "id": 103529906 } }, { @@ -5456,7 +5538,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103525894 } }, { @@ -5517,7 +5600,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103523507 } }, { @@ -5577,7 +5661,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 103512374 } }, { @@ -5655,7 +5740,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103505587 } }, { @@ -5716,7 +5802,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103490224 } }, { @@ -5777,7 +5864,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103485405 } }, { @@ -5837,7 +5925,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 103485381 } }, { @@ -5897,7 +5986,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 103471234 } }, { @@ -5957,7 +6047,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 103470879 } }, { @@ -6017,7 +6108,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 103454072 } }, { @@ -6078,7 +6170,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103450456 } }, { @@ -6139,7 +6232,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103445880 } }, { @@ -6200,7 +6294,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103445557 } }, { @@ -6260,7 +6355,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "nl" - } + }, + "id": 103437168 } }, { @@ -6321,7 +6417,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103433755 } }, { @@ -6382,7 +6479,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103426836 } }, { @@ -6442,7 +6540,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 103423398 } }, { @@ -6503,7 +6602,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103422786 } }, { @@ -6564,7 +6664,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103415960 } }, { @@ -6624,7 +6725,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 103411505 } }, { @@ -6690,7 +6792,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103409605 } }, { @@ -6750,7 +6853,8 @@ "theme": "surveillance", "imagery": "fr.ign.bdortho", "language": "en" - } + }, + "id": 103404533 } }, { @@ -6810,7 +6914,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 103403231 } }, { @@ -6871,7 +6976,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103391474 } }, { @@ -6932,7 +7038,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103390492 } }, { @@ -6993,7 +7100,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103390457 } }, { @@ -7054,7 +7162,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103390249 } }, { @@ -7115,7 +7224,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103380918 } }, { @@ -7175,7 +7285,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 103376804 } }, { @@ -7236,7 +7347,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103368989 } }, { @@ -7297,7 +7409,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103367247 } }, { @@ -7358,7 +7471,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103367189 } }, { @@ -7419,7 +7533,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103359495 } }, { @@ -7479,7 +7594,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 103359206 } }, { @@ -7540,7 +7656,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103354074 } }, { @@ -7601,7 +7718,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103353500 } }, { @@ -7662,7 +7780,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103345352 } }, { @@ -7722,7 +7841,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 103343609 } }, { @@ -7783,7 +7903,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103341339 } }, { @@ -7860,7 +7981,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 103331539 } }, { @@ -7920,7 +8042,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 103324534 } }, { @@ -7981,7 +8104,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103318797 } }, { @@ -8042,7 +8166,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103313082 } }, { @@ -8103,7 +8228,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103312624 } }, { @@ -8163,7 +8289,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 103297645 } }, { @@ -8224,7 +8351,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103296793 } }, { @@ -8285,7 +8413,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103295478 } }, { @@ -8361,7 +8490,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103294317 } }, { @@ -8421,7 +8551,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 103291488 } }, { @@ -8481,7 +8612,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 103291002 } }, { @@ -8542,7 +8674,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103289583 } }, { @@ -8603,7 +8736,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103289112 } }, { @@ -8663,7 +8797,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 103284303 } }, { @@ -8724,7 +8859,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103282552 } }, { @@ -8785,7 +8921,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103281267 } }, { @@ -8846,7 +8983,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103275319 } }, { @@ -8907,7 +9045,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103273460 } }, { @@ -8968,7 +9107,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103273018 } }, { @@ -9029,7 +9169,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103271439 } }, { @@ -9090,7 +9231,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103270749 } }, { @@ -9151,7 +9293,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103269560 } }, { @@ -9212,7 +9355,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103268470 } }, { @@ -9273,7 +9417,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103266935 } }, { @@ -9334,7 +9479,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 103266171 } }, { @@ -9395,7 +9541,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103265243 } }, { @@ -9456,7 +9603,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103263799 } }, { @@ -9517,7 +9665,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103263170 } }, { @@ -9578,7 +9727,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 103261415 } }, { @@ -9639,7 +9789,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103260014 } }, { @@ -9700,7 +9851,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103222342 } }, { @@ -9761,7 +9913,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103222324 } }, { @@ -9821,7 +9974,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 103221632 } }, { @@ -9881,7 +10035,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 103220970 } }, { @@ -9942,7 +10097,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103216363 } }, { @@ -10003,7 +10159,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103205616 } }, { @@ -10064,7 +10221,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103203158 } }, { @@ -10124,7 +10282,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 103198865 } }, { @@ -10185,7 +10344,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103195164 } }, { @@ -10246,7 +10406,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103194538 } }, { @@ -10306,7 +10467,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 103189465 } }, { @@ -10366,7 +10528,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 103189317 } }, { @@ -10427,7 +10590,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103182758 } }, { @@ -10487,7 +10651,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 103180679 } }, { @@ -10548,7 +10713,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103178974 } }, { @@ -10609,7 +10775,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103178811 } }, { @@ -10670,7 +10837,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103175160 } }, { @@ -10731,7 +10899,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103173062 } }, { @@ -10792,7 +10961,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103157057 } }, { @@ -10852,7 +11022,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 103156898 } }, { @@ -10913,7 +11084,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 103153907 } }, { @@ -10973,7 +11145,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 103152905 } }, { @@ -11034,7 +11207,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103152539 } }, { @@ -11100,7 +11274,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103152292 } }, { @@ -11161,7 +11336,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103152262 } }, { @@ -11222,7 +11398,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103146450 } }, { @@ -11282,7 +11459,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 103145897 } }, { @@ -11342,7 +11520,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "nl" - } + }, + "id": 103143869 } }, { @@ -11402,7 +11581,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 103143021 } }, { @@ -11463,7 +11643,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103142359 } }, { @@ -11523,7 +11704,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 103141835 } }, { @@ -11584,7 +11766,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103139801 } }, { @@ -11645,7 +11828,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103139706 } }, { @@ -11706,7 +11890,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103139388 } }, { @@ -11767,7 +11952,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103138821 } }, { @@ -11828,7 +12014,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103136285 } }, { @@ -11888,7 +12075,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 103136249 } }, { @@ -11948,7 +12136,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 103135976 } }, { @@ -12008,7 +12197,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 103135677 } }, { @@ -12069,7 +12259,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 103135600 } }, { @@ -12130,7 +12321,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103135574 } }, { @@ -12191,7 +12383,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103135174 } }, { @@ -12252,7 +12445,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103134334 } }, { @@ -12313,7 +12507,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103134287 } }, { @@ -12374,7 +12569,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103133460 } }, { @@ -12435,7 +12631,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 103133004 } }, { @@ -12495,7 +12692,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 103132818 } }, { @@ -12555,7 +12753,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 103132726 } }, { @@ -12616,7 +12815,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103131542 } }, { @@ -12677,7 +12877,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 103131428 } }, { @@ -12738,7 +12939,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103131310 } }, { @@ -12804,7 +13006,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103131213 } }, { @@ -12865,7 +13068,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103130080 } }, { @@ -12926,7 +13130,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103130019 } }, { @@ -12987,7 +13192,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103129483 } }, { @@ -13047,7 +13253,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 103125915 } }, { @@ -13108,7 +13315,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103111818 } }, { @@ -13169,7 +13377,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103109636 } }, { @@ -13230,7 +13439,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103109566 } }, { @@ -13291,7 +13501,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103105940 } }, { @@ -13351,7 +13562,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 103104998 } }, { @@ -13412,7 +13624,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 103090698 } }, { @@ -13473,7 +13686,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103088015 } }, { @@ -13534,7 +13748,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103085747 } }, { @@ -13595,7 +13810,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 103084174 } }, { @@ -13656,7 +13872,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103069368 } }, { @@ -13717,7 +13934,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103060042 } }, { @@ -13777,7 +13995,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "nl" - } + }, + "id": 103040206 } }, { @@ -13838,7 +14057,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 103031392 } }, { @@ -13899,7 +14119,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103022181 } }, { @@ -13959,7 +14180,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 103022129 } }, { @@ -14020,7 +14242,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 103014625 } }, { @@ -14081,7 +14304,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 103013551 } }, { @@ -14142,7 +14366,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 103012908 } }, { @@ -14203,7 +14428,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 103012164 } }, { @@ -14264,7 +14490,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 103004622 } }, { @@ -14324,7 +14551,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 103000972 } }, { @@ -14385,7 +14613,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102999680 } }, { @@ -14445,7 +14674,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 102995332 } }, { @@ -14506,7 +14736,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 102978786 } }, { @@ -14567,7 +14798,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102978286 } }, { @@ -14628,7 +14860,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102978222 } }, { @@ -14688,7 +14921,8 @@ "theme": "boomgaarden", "imagery": "osm", "language": "nl" - } + }, + "id": 102938986 } }, { @@ -14749,7 +14983,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102938966 } }, { @@ -14810,7 +15045,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102938911 } }, { @@ -14932,7 +15168,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102935084 } }, { @@ -14993,7 +15230,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102935052 } }, { @@ -15054,7 +15292,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102935009 } }, { @@ -15115,7 +15354,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102924646 } }, { @@ -15259,7 +15499,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102924500 } }, { @@ -15320,7 +15561,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102923547 } }, { @@ -15381,7 +15623,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe; stla" - } + }, + "id": 102917633 } }, { @@ -15442,7 +15685,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe; stla" - } + }, + "id": 102917347 } }, { @@ -15503,7 +15747,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102883707 } }, { @@ -15563,7 +15808,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 102882576 } }, { @@ -15624,7 +15870,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102871643 } }, { @@ -15685,7 +15932,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102866363 } }, { @@ -15746,7 +15994,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 102842331 } }, { @@ -15806,7 +16055,8 @@ "theme": "hailhydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 102837072 } }, { @@ -15867,7 +16117,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102816405 } }, { @@ -15928,7 +16179,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 102813868 } }, { @@ -15989,7 +16241,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 102806889 } }, { @@ -16050,7 +16303,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102806691 } }, { @@ -16116,7 +16370,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 102801419 } }, { @@ -16176,7 +16431,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 102799932 } }, { @@ -16237,7 +16493,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102799192 } }, { @@ -16300,7 +16557,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 102783422 } }, { @@ -16360,7 +16618,8 @@ "theme": "HailHydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 102759468 } }, { @@ -16420,7 +16679,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 102757073 } }, { @@ -16486,7 +16746,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 102755841 } }, { @@ -16551,7 +16812,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 102754248 } }, { @@ -16616,7 +16878,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 102751407 } }, { @@ -16677,7 +16940,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 102750676 } }, { @@ -16738,7 +17002,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102750134 } }, { @@ -16799,7 +17064,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102740799 } }, { @@ -16878,7 +17144,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102739472 } }, { @@ -16938,7 +17205,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 102737684 } }, { @@ -17004,7 +17272,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102710972 } }, { @@ -17070,7 +17339,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 102709715 } }, { @@ -17136,7 +17406,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102703590 } }, { @@ -17197,7 +17468,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102700597 } }, { @@ -17258,7 +17530,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 102669411 } }, { @@ -17319,7 +17592,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102669097 } }, { @@ -17380,7 +17654,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102668943 } }, { @@ -17441,7 +17716,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102667263 } }, { @@ -17502,7 +17778,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 102666164 } }, { @@ -17563,7 +17840,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102661524 } }, { @@ -17624,7 +17902,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102660494 } }, { @@ -17685,7 +17964,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102659150 } }, { @@ -17751,7 +18031,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102656676 } }, { @@ -17811,7 +18092,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 102620070 } }, { @@ -17872,7 +18154,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102597132 } }, { @@ -17933,7 +18216,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102595572 } }, { @@ -17994,7 +18278,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102589454 } }, { @@ -18055,7 +18340,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102588517 } }, { @@ -18116,7 +18402,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102587984 } }, { @@ -18181,7 +18468,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 102577817 } }, { @@ -18241,7 +18529,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 102575704 } }, { @@ -18302,7 +18591,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102574932 } }, { @@ -18362,7 +18652,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 102567817 } }, { @@ -18439,7 +18730,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 102567651 } }, { @@ -18500,7 +18792,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102567179 } }, { @@ -18565,7 +18858,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 102558508 } }, { @@ -18625,7 +18919,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 102558206 } }, { @@ -18686,7 +18981,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102555125 } }, { @@ -18747,7 +19043,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102535749 } }, { @@ -18807,7 +19104,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 102530987 } }, { @@ -18868,7 +19166,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102510085 } }, { @@ -18929,7 +19228,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102496039 } }, { @@ -18990,7 +19290,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102493349 } }, { @@ -19050,7 +19351,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 102493261 } }, { @@ -19111,7 +19413,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102492943 } }, { @@ -19172,7 +19475,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102488784 } }, { @@ -19237,7 +19541,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 102485188 } }, { @@ -19302,7 +19607,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 102482959 } }, { @@ -19367,7 +19673,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "en" - } + }, + "id": 102482612 } }, { @@ -19428,7 +19735,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102476144 } }, { @@ -19489,7 +19797,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102474193 } }, { @@ -19550,7 +19859,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102461994 } }, { @@ -19611,7 +19921,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102459404 } }, { @@ -19672,7 +19983,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 102422572 } }, { @@ -19749,7 +20061,8 @@ "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", "imagery": "osm", "language": "en" - } + }, + "id": 102398005 } }, { @@ -19810,7 +20123,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102358828 } }, { @@ -19876,7 +20190,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 102358109 } }, { @@ -19936,7 +20251,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 102356016 } }, { @@ -20013,7 +20329,8 @@ "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", "imagery": "osm", "language": "en" - } + }, + "id": 102355554 } }, { @@ -20074,7 +20391,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102352301 } }, { @@ -20134,7 +20452,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 102351482 } }, { @@ -20195,7 +20514,8 @@ "imagery": "AGIV10cm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102350088 } }, { @@ -20256,7 +20576,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102350006 } }, { @@ -20317,7 +20638,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 102346405 } }, { @@ -20378,7 +20700,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102343955 } }, { @@ -20439,7 +20762,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102343682 } }, { @@ -20500,7 +20824,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102339517 } }, { @@ -20561,7 +20886,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102337939 } }, { @@ -20622,7 +20948,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102333160 } }, { @@ -20682,7 +21009,8 @@ "theme": "playgrounds", "imagery": "AGIV10cm", "language": "en" - } + }, + "id": 102331957 } }, { @@ -20742,7 +21070,8 @@ "theme": "basketswings", "imagery": "osm", "language": "nl" - } + }, + "id": 102331552 } }, { @@ -20802,7 +21131,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 102327643 } }, { @@ -20863,7 +21193,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102327546 } }, { @@ -20924,7 +21255,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 102312791 } }, { @@ -20985,7 +21317,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102305143 } }, { @@ -21046,7 +21379,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 102282803 } }, { @@ -21107,7 +21441,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102282189 } }, { @@ -21168,7 +21503,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102278803 } }, { @@ -21229,7 +21565,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102273824 } }, { @@ -21295,7 +21632,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102273630 } }, { @@ -21356,7 +21694,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102271836 } }, { @@ -21416,7 +21755,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 102271360 } }, { @@ -21477,7 +21817,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 102266136 } }, { @@ -21538,7 +21879,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102265697 } }, { @@ -21599,7 +21941,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 102265111 } }, { @@ -21660,7 +22003,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102257369 } }, { @@ -21720,7 +22064,8 @@ "theme": "HailHydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 102255313 } }, { @@ -21781,7 +22126,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102248624 } }, { @@ -21842,7 +22188,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102242966 } }, { @@ -21957,7 +22304,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 102242557 } }, { @@ -22064,7 +22412,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 102235750 } }, { @@ -22125,7 +22474,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102235445 } }, { @@ -22185,7 +22535,8 @@ "theme": "HailHydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 102235227 } }, { @@ -22246,7 +22597,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102229797 } }, { @@ -22306,7 +22658,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 102227975 } }, { @@ -22367,7 +22720,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102227748 } }, { @@ -22428,7 +22782,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102226307 } }, { @@ -22503,7 +22858,8 @@ "theme": "HailHydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 102225592 } }, { @@ -22582,7 +22938,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 102225336 } }, { @@ -22642,7 +22999,8 @@ "theme": "HailHydrant", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 102225188 } }, { @@ -22702,7 +23060,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 102225012 } }, { @@ -22763,7 +23122,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 102220748 } }, { @@ -22824,7 +23184,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 102220729 } }, { @@ -22885,7 +23246,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 102220671 } }, { @@ -22946,7 +23308,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102211506 } }, { @@ -23007,7 +23370,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102208373 } }, { @@ -23068,7 +23432,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102206649 } }, { @@ -23128,7 +23493,8 @@ "theme": "basketswings", "imagery": "osm", "language": "nl" - } + }, + "id": 102199776 } }, { @@ -23189,7 +23555,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102198663 } }, { @@ -23255,7 +23622,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102198108 } }, { @@ -23316,7 +23684,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 102198052 } }, { @@ -23377,7 +23746,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102197860 } }, { @@ -23437,7 +23807,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 102194677 } }, { @@ -23498,7 +23869,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102193207 } }, { @@ -23559,7 +23931,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102193059 } }, { @@ -23620,7 +23993,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102190068 } }, { @@ -23681,7 +24055,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102189327 } }, { @@ -23741,7 +24116,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 102175932 } }, { @@ -23801,7 +24177,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 102174721 } }, { @@ -23867,7 +24244,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 102172588 } }, { @@ -23928,7 +24306,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102149904 } }, { @@ -23988,7 +24367,8 @@ "theme": "pingpong", "imagery": "osm", "language": "nl" - } + }, + "id": 102146104 } }, { @@ -24054,7 +24434,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102145840 } }, { @@ -24115,7 +24496,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102142262 } }, { @@ -24176,7 +24558,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 102142242 } }, { @@ -24236,7 +24619,8 @@ "theme": "pingpong", "imagery": "osm", "language": "nl" - } + }, + "id": 102137022 } }, { @@ -24302,7 +24686,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102136102 } }, { @@ -24363,7 +24748,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 102123964 } }, { @@ -24424,7 +24810,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102123961 } }, { @@ -24485,7 +24872,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 102108527 } }, { @@ -24546,7 +24934,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 102086552 } }, { @@ -24607,7 +24996,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 102085289 } } ] diff --git a/Docs/Tools/stats/stats.2021-5.json b/Docs/Tools/stats/stats.2021-5.json index a1bc401403..48e364ce53 100644 --- a/Docs/Tools/stats/stats.2021-5.json +++ b/Docs/Tools/stats/stats.2021-5.json @@ -58,7 +58,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105646814 } }, { @@ -118,7 +119,8 @@ "theme": "buildings", "imagery": "osm", "language": "fr" - } + }, + "id": 105646533 } }, { @@ -178,7 +180,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105627749 } }, { @@ -238,7 +241,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105626142 } }, { @@ -304,7 +308,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105612563 } }, { @@ -370,7 +375,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105605501 } }, { @@ -431,7 +437,8 @@ "imagery": "osm", "language": "it", "theme-creator": "joost schouppe" - } + }, + "id": 105597334 } }, { @@ -492,7 +499,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105592095 } }, { @@ -553,7 +561,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 105592093 } }, { @@ -613,7 +622,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105588545 } }, { @@ -674,7 +684,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105579878 } }, { @@ -735,7 +746,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105579726 } }, { @@ -796,7 +808,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105575306 } }, { @@ -856,7 +869,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 105573038 } }, { @@ -916,7 +930,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 105569986 } }, { @@ -977,7 +992,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105569231 } }, { @@ -1038,7 +1054,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105568447 } }, { @@ -1099,7 +1116,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 105564069 } }, { @@ -1160,7 +1178,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105561348 } }, { @@ -1221,7 +1240,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105561178 } }, { @@ -1282,7 +1302,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105560091 } }, { @@ -1342,7 +1363,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 105558256 } }, { @@ -1403,7 +1425,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105551818 } }, { @@ -1463,7 +1486,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 105547366 } }, { @@ -1524,7 +1548,8 @@ "imagery": "osm", "language": "ca", "theme-creator": "MapComplete" - } + }, + "id": 105538502 } }, { @@ -1585,7 +1610,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105533079 } }, { @@ -1646,7 +1672,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105531157 } }, { @@ -1706,7 +1733,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 105529143 } }, { @@ -1767,7 +1795,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105528545 } }, { @@ -1828,7 +1857,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 105528141 } }, { @@ -1889,7 +1919,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 105527976 } }, { @@ -1950,7 +1981,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 105527901 } }, { @@ -2015,7 +2047,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 105526392 } }, { @@ -2076,7 +2109,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105526094 } }, { @@ -2136,7 +2170,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 105525175 } }, { @@ -2197,7 +2232,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105523172 } }, { @@ -2262,7 +2298,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 105522221 } }, { @@ -2327,7 +2364,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 105520167 } }, { @@ -2387,7 +2425,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105515868 } }, { @@ -2448,7 +2487,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105514466 } }, { @@ -2508,7 +2548,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105495953 } }, { @@ -2569,7 +2610,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 105495698 } }, { @@ -2630,7 +2672,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105495425 } }, { @@ -2690,7 +2733,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105494205 } }, { @@ -2751,7 +2795,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105478384 } }, { @@ -2812,7 +2857,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105473570 } }, { @@ -2873,7 +2919,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 105470322 } }, { @@ -2934,7 +2981,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 105448422 } }, { @@ -3000,7 +3048,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105447817 } }, { @@ -3066,7 +3115,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105447053 } }, { @@ -3132,7 +3182,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105438725 } }, { @@ -3192,7 +3243,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105432701 } }, { @@ -3258,7 +3310,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105429893 } }, { @@ -3318,7 +3371,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105429835 } }, { @@ -3378,7 +3432,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105429373 } }, { @@ -3438,7 +3493,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105425711 } }, { @@ -3537,7 +3593,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105423247 } }, { @@ -3647,7 +3704,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105422476 } }, { @@ -3708,7 +3766,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105415408 } }, { @@ -3774,7 +3833,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105410749 } }, { @@ -3835,7 +3895,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105406148 } }, { @@ -3901,7 +3962,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105403334 } }, { @@ -3967,7 +4029,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105402639 } }, { @@ -4028,7 +4091,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105382757 } }, { @@ -4089,7 +4153,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105382527 } }, { @@ -4149,7 +4214,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 105377923 } }, { @@ -4214,7 +4280,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105372878 } }, { @@ -4295,7 +4362,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105372498 } }, { @@ -4360,7 +4428,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105372262 } }, { @@ -4441,7 +4510,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105371990 } }, { @@ -4506,7 +4576,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105371947 } }, { @@ -4571,7 +4642,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105371816 } }, { @@ -4652,7 +4724,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105371789 } }, { @@ -4717,7 +4790,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105370974 } }, { @@ -4778,7 +4852,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 105370497 } }, { @@ -4838,7 +4913,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105360947 } }, { @@ -4904,7 +4980,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105360924 } }, { @@ -4970,7 +5047,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105360560 } }, { @@ -5036,7 +5114,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105360228 } }, { @@ -5097,7 +5176,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 105356597 } }, { @@ -5163,7 +5243,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105356464 } }, { @@ -5224,7 +5305,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105324191 } }, { @@ -5284,7 +5366,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 105317447 } }, { @@ -5345,7 +5428,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Seppe Santens" - } + }, + "id": 105313902 } }, { @@ -5730,7 +5814,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105310901 } }, { @@ -5928,7 +6013,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105310408 } }, { @@ -5994,7 +6080,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105308266 } }, { @@ -6060,7 +6147,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105307197 } }, { @@ -6121,7 +6209,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105306242 } }, { @@ -6181,7 +6270,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 105298752 } }, { @@ -6247,7 +6337,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105292377 } }, { @@ -6308,7 +6399,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105289590 } }, { @@ -6368,7 +6460,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 105288905 } }, { @@ -6434,7 +6527,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105283711 } }, { @@ -6495,7 +6589,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105273964 } }, { @@ -6561,7 +6656,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105270921 } }, { @@ -6621,7 +6717,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 105270712 } }, { @@ -6682,7 +6779,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105254015 } }, { @@ -6743,7 +6841,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105253999 } }, { @@ -6809,7 +6908,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105251257 } }, { @@ -6870,7 +6970,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105246987 } }, { @@ -6931,7 +7032,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105243384 } }, { @@ -6992,7 +7094,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105230130 } }, { @@ -7052,7 +7155,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 105227975 } }, { @@ -7113,7 +7217,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105225506 } }, { @@ -7173,7 +7278,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 105225482 } }, { @@ -7234,7 +7340,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105208199 } }, { @@ -7294,7 +7401,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 105205876 } }, { @@ -7355,7 +7463,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 105195214 } }, { @@ -7415,7 +7524,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 105194536 } }, { @@ -7476,7 +7586,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 105189586 } }, { @@ -7537,7 +7648,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105175759 } }, { @@ -7598,7 +7710,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105175143 } }, { @@ -7664,7 +7777,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105171605 } }, { @@ -7724,7 +7838,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 105166704 } }, { @@ -7785,7 +7900,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 105165897 } }, { @@ -7845,7 +7961,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 105163811 } }, { @@ -7905,7 +8022,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 105162112 } }, { @@ -7966,7 +8084,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105160761 } }, { @@ -8027,7 +8146,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105158908 } }, { @@ -8088,7 +8208,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105158635 } }, { @@ -8148,7 +8269,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 105154337 } }, { @@ -8209,7 +8331,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105153445 } }, { @@ -8270,7 +8393,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105150997 } }, { @@ -8330,7 +8454,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 105141050 } }, { @@ -8391,7 +8516,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105140957 } }, { @@ -8457,7 +8583,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe; stla" - } + }, + "id": 105132121 } }, { @@ -8518,7 +8645,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105127274 } }, { @@ -8579,7 +8707,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105123795 } }, { @@ -8640,7 +8769,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105123659 } }, { @@ -8701,7 +8831,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 105121717 } }, { @@ -8762,7 +8893,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 105117154 } }, { @@ -8823,7 +8955,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105117106 } }, { @@ -8884,7 +9017,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105110251 } }, { @@ -8972,7 +9106,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105110084 } }, { @@ -9082,7 +9217,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105109714 } }, { @@ -9170,7 +9306,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105109333 } }, { @@ -9247,7 +9384,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105109048 } }, { @@ -9313,7 +9451,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105108934 } }, { @@ -9374,7 +9513,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 105107153 } }, { @@ -9440,7 +9580,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105106698 } }, { @@ -9506,7 +9647,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105105662 } }, { @@ -9567,7 +9709,8 @@ "imagery": "UrbISOrtho2019", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105100265 } }, { @@ -9627,7 +9770,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 105093255 } }, { @@ -9693,7 +9837,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105092710 } }, { @@ -9759,7 +9904,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105089211 } }, { @@ -9820,7 +9966,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105083652 } }, { @@ -9881,7 +10028,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105083136 } }, { @@ -9941,7 +10089,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 105081897 } }, { @@ -10002,7 +10151,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105073365 } }, { @@ -10068,7 +10218,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105070958 } }, { @@ -10129,7 +10280,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 105070267 } }, { @@ -10195,7 +10347,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105062544 } }, { @@ -10256,7 +10409,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105061768 } }, { @@ -10316,7 +10470,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 105054854 } }, { @@ -10377,7 +10532,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 105046037 } }, { @@ -10438,7 +10594,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 105045474 } }, { @@ -10504,7 +10661,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105042730 } }, { @@ -10570,7 +10728,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105036795 } }, { @@ -10636,7 +10795,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105036015 } }, { @@ -10696,7 +10856,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 105032317 } }, { @@ -10762,7 +10923,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105025981 } }, { @@ -10828,7 +10990,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105022554 } }, { @@ -10888,7 +11051,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 105020219 } }, { @@ -10954,7 +11118,8 @@ "imagery": "EsriWorldImagery", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105014411 } }, { @@ -11014,7 +11179,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104995459 } }, { @@ -11074,7 +11240,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104988367 } }, { @@ -11135,7 +11302,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104981745 } }, { @@ -11196,7 +11364,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104980984 } }, { @@ -11257,7 +11426,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 104979847 } }, { @@ -11318,7 +11488,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 104978018 } }, { @@ -11395,7 +11566,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104977477 } }, { @@ -11483,7 +11655,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104977097 } }, { @@ -11544,7 +11717,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104972004 } }, { @@ -11604,7 +11778,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104964940 } }, { @@ -11665,7 +11840,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104963609 } }, { @@ -11731,7 +11907,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104963056 } }, { @@ -11795,7 +11972,8 @@ "theme": "vegan", "language": "de", "theme-creator": "Christian Neumann " - } + }, + "id": 104955721 } }, { @@ -11861,7 +12039,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 104940762 } }, { @@ -11922,7 +12101,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 104912323 } }, { @@ -11983,7 +12163,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 104904505 } }, { @@ -12044,7 +12225,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104897806 } }, { @@ -12104,7 +12286,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104894007 } }, { @@ -12170,7 +12353,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104893843 } }, { @@ -12231,7 +12415,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104888917 } }, { @@ -12292,7 +12477,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104888664 } }, { @@ -12353,7 +12539,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104873407 } }, { @@ -12414,7 +12601,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104859305 } }, { @@ -12474,7 +12662,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104852510 } }, { @@ -12535,7 +12724,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104834837 } }, { @@ -12595,7 +12785,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 104834804 } }, { @@ -12656,7 +12847,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104833676 } }, { @@ -12717,7 +12909,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104832489 } }, { @@ -12777,7 +12970,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104828217 } }, { @@ -12843,7 +13037,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104825060 } }, { @@ -12904,7 +13099,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104824521 } }, { @@ -12965,7 +13161,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104817521 } }, { @@ -13031,7 +13228,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104813054 } }, { @@ -13091,7 +13289,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 104808321 } }, { @@ -13157,7 +13356,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe; stla" - } + }, + "id": 104804552 } }, { @@ -13218,7 +13418,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104790533 } }, { @@ -13279,7 +13480,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104789456 } }, { @@ -13339,7 +13541,8 @@ "theme": "charging_stations", "imagery": "AGIV10cm", "language": "en" - } + }, + "id": 104779755 } }, { @@ -13399,7 +13602,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 104771433 } }, { @@ -13465,7 +13669,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104771353 } }, { @@ -13526,7 +13731,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104771328 } }, { @@ -13592,7 +13798,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104770413 } }, { @@ -13653,7 +13860,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104767319 } }, { @@ -13713,7 +13921,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 104765820 } }, { @@ -13774,7 +13983,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104765784 } }, { @@ -13835,7 +14045,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104765698 } }, { @@ -13896,7 +14107,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104765380 } }, { @@ -13957,7 +14169,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104765110 } }, { @@ -14018,7 +14231,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104764684 } }, { @@ -14083,7 +14297,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104761467 } }, { @@ -14149,7 +14364,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104754445 } }, { @@ -14214,7 +14430,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 104752561 } }, { @@ -14275,7 +14492,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104751316 } }, { @@ -14336,7 +14554,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104750812 } }, { @@ -14397,7 +14616,8 @@ "imagery": "AGIV10cm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104750300 } }, { @@ -14458,7 +14678,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104744199 } }, { @@ -14524,7 +14745,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 104733470 } }, { @@ -14584,7 +14806,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104726944 } }, { @@ -14645,7 +14868,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104726636 } }, { @@ -14706,7 +14930,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104726156 } }, { @@ -14766,7 +14991,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104726005 } }, { @@ -14826,7 +15052,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104725636 } }, { @@ -14887,7 +15114,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104723348 } }, { @@ -14952,7 +15180,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104723073 } }, { @@ -15012,7 +15241,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104721756 } }, { @@ -15073,7 +15303,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104714129 } }, { @@ -15134,7 +15365,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104713106 } }, { @@ -15195,7 +15427,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104704762 } }, { @@ -15256,7 +15489,8 @@ "imagery": "osm", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 104704361 } }, { @@ -15317,7 +15551,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104704249 } }, { @@ -15378,7 +15613,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104704200 } }, { @@ -15438,7 +15674,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104702488 } }, { @@ -15499,7 +15736,8 @@ "imagery": "AGIV10cm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104701749 } }, { @@ -15560,7 +15798,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104700044 } }, { @@ -15621,7 +15860,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104695241 } }, { @@ -15682,7 +15922,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104694873 } }, { @@ -15742,7 +15983,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104686398 } }, { @@ -15803,7 +16045,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104684651 } }, { @@ -15864,7 +16107,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104683745 } }, { @@ -15925,7 +16169,8 @@ "imagery": "osm", "language": "ca", "theme-creator": "MapComplete" - } + }, + "id": 104683353 } }, { @@ -15986,7 +16231,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104677661 } }, { @@ -16047,7 +16293,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104676697 } }, { @@ -16107,7 +16354,8 @@ "theme": "railwayarg", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 104664124 } }, { @@ -16168,7 +16416,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104657616 } }, { @@ -16229,7 +16478,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104657063 } }, { @@ -16290,7 +16540,8 @@ "imagery": "LV_ORTOFOTO_C6", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 104654185 } }, { @@ -16350,7 +16601,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 104653601 } }, { @@ -16411,7 +16663,8 @@ "imagery": "osm", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 104652989 } }, { @@ -16477,7 +16730,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104652456 } }, { @@ -16538,7 +16792,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104648605 } }, { @@ -16599,7 +16854,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104648304 } }, { @@ -16660,7 +16916,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Seppe Santens" - } + }, + "id": 104646395 } }, { @@ -16726,7 +16983,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 104645437 } }, { @@ -16786,7 +17044,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104639757 } }, { @@ -16847,7 +17106,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104637130 } }, { @@ -16913,7 +17173,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 104627844 } }, { @@ -16973,7 +17234,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104602765 } }, { @@ -17033,7 +17295,8 @@ "theme": "railwayarg", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 104601380 } }, { @@ -17094,7 +17357,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104600714 } }, { @@ -17155,7 +17419,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104600674 } }, { @@ -17215,7 +17480,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 104596179 } }, { @@ -17276,7 +17542,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 104593203 } }, { @@ -17337,7 +17604,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104592637 } }, { @@ -17397,7 +17665,8 @@ "theme": "infoboard", "imagery": "osm", "language": "de" - } + }, + "id": 104592091 } }, { @@ -17458,7 +17727,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 104586934 } }, { @@ -17524,7 +17794,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104582639 } }, { @@ -17590,7 +17861,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104582393 } }, { @@ -17651,7 +17923,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104581895 } }, { @@ -17712,7 +17985,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104577870 } }, { @@ -17772,7 +18046,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104577362 } }, { @@ -17833,7 +18108,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104576707 } }, { @@ -17894,7 +18170,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104558350 } }, { @@ -17955,7 +18232,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104551517 } }, { @@ -18016,7 +18294,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104550986 } }, { @@ -18076,7 +18355,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 104546473 } }, { @@ -18136,7 +18416,8 @@ "theme": "railwayarg", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 104538496 } }, { @@ -18197,7 +18478,8 @@ "imagery": "CartoDB.Positron", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 104527766 } }, { @@ -18263,7 +18545,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104526734 } }, { @@ -18324,7 +18607,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 104522364 } }, { @@ -18385,7 +18669,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 104518647 } }, { @@ -18446,7 +18731,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104515780 } }, { @@ -18506,7 +18792,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104515024 } }, { @@ -18566,7 +18853,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104508863 } }, { @@ -18627,7 +18915,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 104508109 } }, { @@ -18688,7 +18977,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104507010 } }, { @@ -18749,7 +19039,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 104501788 } }, { @@ -18810,7 +19101,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104497856 } }, { @@ -18871,7 +19163,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 104496134 } }, { @@ -18932,7 +19225,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 104486192 } }, { @@ -18993,7 +19287,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104481256 } }, { @@ -19053,7 +19348,8 @@ "theme": "railwayarg", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 104477735 } }, { @@ -19114,7 +19410,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104476330 } }, { @@ -19175,7 +19472,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104474953 } }, { @@ -19236,7 +19534,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104473387 } }, { @@ -19297,7 +19596,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104473335 } }, { @@ -19358,7 +19658,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104472684 } }, { @@ -19419,7 +19720,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104469520 } }, { @@ -19480,7 +19782,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104468481 } }, { @@ -19540,7 +19843,8 @@ "theme": "grb", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 104466370 } }, { @@ -19606,7 +19910,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 104458078 } }, { @@ -19666,7 +19971,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104454897 } }, { @@ -19727,7 +20033,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104454337 } }, { @@ -19788,7 +20095,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104451926 } }, { @@ -19849,7 +20157,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 104448218 } }, { @@ -19915,7 +20224,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104447014 } }, { @@ -19976,7 +20286,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104434320 } }, { @@ -20037,7 +20348,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104424404 } }, { @@ -20098,7 +20410,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104410838 } }, { @@ -20138,7 +20451,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104410816 } }, { @@ -20199,7 +20513,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 104405796 } }, { @@ -20260,7 +20575,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104404430 } }, { @@ -20321,7 +20637,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104403405 } }, { @@ -20382,7 +20699,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104402711 } }, { @@ -20443,7 +20761,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104402358 } }, { @@ -20503,7 +20822,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 104402223 } }, { @@ -20564,7 +20884,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 104395169 } }, { @@ -20625,7 +20946,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104393563 } }, { @@ -20686,7 +21008,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104393090 } }, { @@ -20747,7 +21070,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104393035 } }, { @@ -20808,7 +21132,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104391660 } }, { @@ -20869,7 +21194,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104390359 } }, { @@ -20904,7 +21230,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104389215 } }, { @@ -20965,7 +21292,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104383378 } }, { @@ -21026,7 +21354,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104382849 } }, { @@ -21065,7 +21394,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104371710 } }, { @@ -21104,7 +21434,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104371384 } }, { @@ -21165,7 +21496,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104369957 } }, { @@ -21226,7 +21558,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104369288 } }, { @@ -21291,7 +21624,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 104368933 } }, { @@ -21356,7 +21690,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 104365650 } }, { @@ -21416,7 +21751,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 104355582 } }, { @@ -21477,7 +21813,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104354080 } }, { @@ -21537,7 +21874,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "en" - } + }, + "id": 104345309 } }, { @@ -21602,7 +21940,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 104329987 } }, { @@ -21662,7 +22001,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "en" - } + }, + "id": 104325174 } }, { @@ -21728,7 +22068,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 104296439 } }, { @@ -21763,7 +22104,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104294870 } }, { @@ -21824,7 +22166,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104285378 } }, { @@ -21884,7 +22227,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104280247 } }, { @@ -21944,7 +22288,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104280055 } }, { @@ -22004,7 +22349,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "en" - } + }, + "id": 104278464 } }, { @@ -22070,7 +22416,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 104274050 } }, { @@ -22130,7 +22477,8 @@ "theme": "pingpong", "imagery": "osm", "language": "nl" - } + }, + "id": 104273585 } }, { @@ -22191,7 +22539,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104272719 } }, { @@ -22257,7 +22606,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 104263517 } }, { @@ -22317,7 +22667,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "en" - } + }, + "id": 104257325 } }, { @@ -22383,7 +22734,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104256048 } }, { @@ -22444,7 +22796,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104253724 } }, { @@ -22505,7 +22858,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104233157 } }, { @@ -22566,7 +22920,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104228418 } }, { @@ -22627,7 +22982,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104216445 } }, { @@ -22687,7 +23043,8 @@ "theme": "railwayarg", "imagery": "EsriWorldImagery", "language": "en" - } + }, + "id": 104212562 } }, { @@ -22747,7 +23104,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 104210379 } }, { @@ -22808,7 +23166,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104206928 } }, { @@ -22869,7 +23228,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 104206891 } }, { @@ -22930,7 +23290,8 @@ "imagery": "osm", "language": "ca", "theme-creator": "MapComplete" - } + }, + "id": 104203072 } }, { @@ -23194,7 +23555,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104191631 } }, { @@ -23254,7 +23616,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104188466 } }, { @@ -23288,7 +23651,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104188465 } }, { @@ -23348,7 +23712,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104187522 } }, { @@ -23409,7 +23774,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 104175591 } }, { @@ -23470,7 +23836,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104156628 } }, { @@ -23531,7 +23898,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104154788 } }, { @@ -23591,7 +23959,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104153784 } }, { @@ -23652,7 +24021,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104153485 } }, { @@ -23713,7 +24083,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104151893 } }, { @@ -23774,7 +24145,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Seppe Santens" - } + }, + "id": 104147363 } }, { @@ -24522,7 +24894,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104139265 } }, { @@ -24582,7 +24955,8 @@ "theme": "railwayarg", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 104126031 } }, { @@ -24643,7 +25017,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104120947 } }, { @@ -24703,7 +25078,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 104112998 } }, { @@ -24764,7 +25140,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104111803 } }, { @@ -24825,7 +25202,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104089998 } }, { @@ -24885,7 +25263,8 @@ "theme": "railwayarg", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 104083460 } }, { @@ -24946,7 +25325,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 104078157 } }, { @@ -25012,7 +25392,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104075504 } }, { @@ -25072,7 +25453,8 @@ "theme": "railwayarg", "imagery": "osm", "language": "es" - } + }, + "id": 104060228 } }, { @@ -25138,7 +25520,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 104053396 } }, { @@ -25199,7 +25582,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 104052303 } }, { @@ -25260,7 +25644,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 104019987 } }, { @@ -25909,7 +26294,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 104007776 } }, { @@ -25970,7 +26356,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 104000793 } }, { @@ -26031,7 +26418,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103995755 } }, { @@ -26141,7 +26529,8 @@ "theme": "arbres_llefia", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 103995633 } }, { @@ -26202,7 +26591,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103992573 } }, { @@ -26263,7 +26653,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 103989669 } }, { @@ -26329,7 +26720,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 103988585 } }, { @@ -26389,7 +26781,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103987605 } }, { @@ -26449,7 +26842,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103987479 } }, { @@ -26510,7 +26904,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 103980048 } }, { @@ -26571,7 +26966,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 103978229 } }, { @@ -26632,7 +27028,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103977483 } }, { @@ -26698,7 +27095,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103976357 } }, { @@ -26759,7 +27157,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103975090 } }, { @@ -26819,7 +27218,8 @@ "theme": "pingpong", "imagery": "osm", "language": "nl" - } + }, + "id": 103973538 } }, { @@ -26880,7 +27280,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 103971314 } }, { @@ -26941,7 +27342,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 103969136 } }, { @@ -27001,7 +27403,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 103967153 } }, { @@ -27066,7 +27469,8 @@ "theme": "charging_stations", "imagery": "AGIV", "language": "en" - } + }, + "id": 103962843 } }, { @@ -27127,7 +27531,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103955246 } }, { @@ -27188,7 +27593,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103954692 } }, { @@ -27248,7 +27654,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103954376 } }, { @@ -27314,7 +27721,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 103954078 } }, { @@ -27375,7 +27783,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 103947055 } }, { @@ -27435,7 +27844,8 @@ "theme": "Afvalkokers", "imagery": "osm", "language": "nl" - } + }, + "id": 103946394 } }, { @@ -27496,7 +27906,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 103945261 } }, { @@ -27556,7 +27967,8 @@ "theme": "railwayarg", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 103942970 } } ] diff --git a/Docs/Tools/stats/stats.2021-6.json b/Docs/Tools/stats/stats.2021-6.json index 690bc20067..1c88d3f248 100644 --- a/Docs/Tools/stats/stats.2021-6.json +++ b/Docs/Tools/stats/stats.2021-6.json @@ -59,7 +59,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107226511 } }, { @@ -125,7 +126,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 107225716 } }, { @@ -187,7 +189,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107224814 } }, { @@ -248,7 +251,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107222570 } }, { @@ -1656,7 +1660,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107222299 } }, { @@ -1723,7 +1728,8 @@ "imagery": "CartoDB.Voyager", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 107221479 } }, { @@ -1789,7 +1795,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107220326 } }, { @@ -1850,7 +1857,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 107212429 } }, { @@ -1911,7 +1919,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "Seppe Santens" - } + }, + "id": 107205684 } }, { @@ -1973,7 +1982,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107175505 } }, { @@ -2034,7 +2044,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "Midgard" - } + }, + "id": 107173275 } }, { @@ -2100,7 +2111,8 @@ "imagery": "PNOA-Spain-TMS", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107167852 } }, { @@ -2160,7 +2172,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107166629 } }, { @@ -2220,7 +2233,8 @@ "theme": "surveillance", "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 107163685 } }, { @@ -2286,7 +2300,8 @@ "imagery": "PNOA-Spain-TMS", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107160947 } }, { @@ -2347,7 +2362,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 107153340 } }, { @@ -2413,7 +2429,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107151395 } }, { @@ -2478,7 +2495,8 @@ "theme": "waterpumps", "imagery": "osm", "language": "en" - } + }, + "id": 107146857 } }, { @@ -2539,7 +2557,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107141636 } }, { @@ -2600,7 +2619,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107115215 } }, { @@ -2661,7 +2681,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107110641 } }, { @@ -2722,7 +2743,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107110151 } }, { @@ -2788,7 +2810,8 @@ "imagery": "PNOA-Spain-TMS", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107102352 } }, { @@ -2846,7 +2869,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 107102022 } }, { @@ -2913,7 +2937,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107096772 } }, { @@ -2974,7 +2999,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107092269 } }, { @@ -3034,7 +3060,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107091444 } }, { @@ -3095,7 +3122,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107088207 } }, { @@ -3156,7 +3184,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107083996 } }, { @@ -3216,7 +3245,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 107078002 } }, { @@ -3277,7 +3307,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107073450 } }, { @@ -3339,7 +3370,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107069393 } }, { @@ -3405,7 +3437,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107057978 } }, { @@ -3463,7 +3496,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 107051089 } }, { @@ -4123,7 +4157,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107048155 } }, { @@ -4184,7 +4219,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107042682 } }, { @@ -4245,7 +4281,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 107038209 } }, { @@ -4306,7 +4343,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107037475 } }, { @@ -4367,7 +4405,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107037393 } }, { @@ -4428,7 +4467,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107035399 } }, { @@ -4488,7 +4528,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107034753 } }, { @@ -4549,7 +4590,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107032250 } }, { @@ -4718,7 +4760,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107027382 } }, { @@ -4779,7 +4822,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107000974 } }, { @@ -4871,7 +4915,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106999343 } }, { @@ -4933,7 +4978,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 106996980 } }, { @@ -4999,7 +5045,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106994817 } }, { @@ -5060,7 +5107,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106994743 } }, { @@ -5121,7 +5169,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106994630 } }, { @@ -5182,7 +5231,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106992939 } }, { @@ -5248,7 +5298,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106992587 } }, { @@ -5309,7 +5360,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106992507 } }, { @@ -5376,7 +5428,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106992154 } }, { @@ -5436,7 +5489,8 @@ "theme": "fritures", "imagery": "osm", "language": "en" - } + }, + "id": 106986341 } }, { @@ -5502,7 +5556,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106977731 } }, { @@ -5563,7 +5618,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106974457 } }, { @@ -5623,7 +5679,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 106971808 } }, { @@ -5685,7 +5742,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 106970741 } }, { @@ -5746,7 +5804,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 106969091 } }, { @@ -5807,7 +5866,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106968916 } }, { @@ -5868,7 +5928,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106968408 } }, { @@ -5929,7 +5990,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106968072 } }, { @@ -5989,7 +6051,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 106956961 } }, { @@ -6051,7 +6114,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 106946936 } }, { @@ -6111,7 +6175,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 106944340 } }, { @@ -6171,7 +6236,8 @@ "theme": "RailwaySignals", "imagery": "osm", "language": "es" - } + }, + "id": 106929887 } }, { @@ -6232,7 +6298,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106922300 } }, { @@ -6293,7 +6360,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 106922165 } }, { @@ -6354,7 +6422,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 106917819 } }, { @@ -6415,7 +6484,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106916939 } }, { @@ -6475,7 +6545,8 @@ "theme": "fritures", "imagery": "osm", "language": "en" - } + }, + "id": 106915283 } }, { @@ -6541,7 +6612,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106914677 } }, { @@ -6601,7 +6673,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 106903098 } }, { @@ -6662,7 +6735,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106902414 } }, { @@ -6724,7 +6798,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106899042 } }, { @@ -6785,7 +6860,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106897288 } }, { @@ -6846,7 +6922,8 @@ "imagery": "VGIN-Imagery_WM", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 106863963 } }, { @@ -6907,7 +6984,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 106861737 } }, { @@ -6967,7 +7045,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 106858650 } }, { @@ -7028,7 +7107,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106858558 } }, { @@ -7089,7 +7169,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106857949 } }, { @@ -7150,7 +7231,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106857350 } }, { @@ -7215,7 +7297,8 @@ "theme": "waterpumps", "imagery": "osm", "language": "en" - } + }, + "id": 106856805 } }, { @@ -7281,7 +7364,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106852236 } }, { @@ -7347,7 +7431,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106847962 } }, { @@ -7408,7 +7493,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106845498 } }, { @@ -7469,7 +7555,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106844386 } }, { @@ -7529,7 +7616,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 106843249 } }, { @@ -7594,7 +7682,8 @@ "theme": "waterpumps", "imagery": "osm", "language": "en" - } + }, + "id": 106830043 } }, { @@ -7655,7 +7744,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106827156 } }, { @@ -7716,7 +7806,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106816614 } }, { @@ -7777,7 +7868,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106812639 } }, { @@ -7837,7 +7929,8 @@ "theme": "RailwaySignals", "imagery": "osm", "language": "es" - } + }, + "id": 106808369 } }, { @@ -7899,7 +7992,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106801712 } }, { @@ -7960,7 +8054,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106800750 } }, { @@ -8026,7 +8121,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106798030 } }, { @@ -8087,7 +8183,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106794873 } }, { @@ -8149,7 +8246,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 106791031 } }, { @@ -8215,7 +8313,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "Christian Neumann " - } + }, + "id": 106788186 } }, { @@ -8281,7 +8380,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106783109 } }, { @@ -8342,7 +8442,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106778953 } }, { @@ -8431,7 +8532,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106771302 } }, { @@ -8493,7 +8595,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 106771234 } }, { @@ -8553,7 +8656,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 106752218 } }, { @@ -8613,7 +8717,8 @@ "theme": "RailwaySignals", "imagery": "osm", "language": "es" - } + }, + "id": 106746369 } }, { @@ -8673,7 +8778,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 106743321 } }, { @@ -8735,7 +8841,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106740533 } }, { @@ -8801,7 +8908,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106736580 } }, { @@ -8862,7 +8970,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Seppe Santens" - } + }, + "id": 106733641 } }, { @@ -8923,7 +9032,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106731786 } }, { @@ -8983,7 +9093,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 106731770 } }, { @@ -9918,7 +10029,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106731136 } }, { @@ -9979,7 +10091,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106729600 } }, { @@ -10039,7 +10152,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 106729452 } }, { @@ -10105,7 +10219,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106727082 } }, { @@ -10166,7 +10281,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106712647 } }, { @@ -10227,7 +10343,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106702422 } }, { @@ -10289,7 +10406,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106699081 } }, { @@ -10350,7 +10468,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 106696782 } }, { @@ -10410,7 +10529,8 @@ "theme": "fritures", "imagery": "osm", "language": "en" - } + }, + "id": 106682441 } }, { @@ -10476,7 +10596,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe; stla" - } + }, + "id": 106678215 } }, { @@ -10537,7 +10658,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106677882 } }, { @@ -10619,7 +10741,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 106672801 } }, { @@ -10679,7 +10802,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 106669409 } }, { @@ -10740,7 +10864,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106666526 } }, { @@ -10876,7 +11001,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106659240 } }, { @@ -10937,7 +11063,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106659065 } }, { @@ -11002,7 +11129,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 106656754 } }, { @@ -11063,7 +11191,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 106645256 } }, { @@ -11123,7 +11252,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 106643640 } }, { @@ -11184,7 +11314,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106641633 } }, { @@ -11245,7 +11376,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106641056 } }, { @@ -11311,7 +11443,8 @@ "imagery": "CartoDB.Voyager", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 106639119 } }, { @@ -11372,7 +11505,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 106633095 } }, { @@ -11541,7 +11675,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106629351 } }, { @@ -11699,7 +11834,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106625656 } }, { @@ -11760,7 +11896,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106622963 } }, { @@ -11821,7 +11958,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106614434 } }, { @@ -11882,7 +12020,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106608684 } }, { @@ -11948,7 +12087,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 106605042 } }, { @@ -12008,7 +12148,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 106604643 } }, { @@ -12069,7 +12210,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 106595402 } }, { @@ -12130,7 +12272,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 106594930 } }, { @@ -12196,7 +12339,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106583466 } }, { @@ -12256,7 +12400,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 106575401 } }, { @@ -12322,7 +12467,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106574955 } }, { @@ -12383,7 +12529,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Seppe Santens" - } + }, + "id": 106571251 } }, { @@ -12444,7 +12591,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106564027 } }, { @@ -12509,7 +12657,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 106554571 } }, { @@ -12570,7 +12719,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106547773 } }, { @@ -12635,7 +12785,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 106542885 } }, { @@ -12701,7 +12852,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106535621 } }, { @@ -12793,7 +12945,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106533915 } }, { @@ -12853,7 +13006,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 106533490 } }, { @@ -12934,7 +13088,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106527618 } }, { @@ -12995,7 +13150,8 @@ "imagery": "SPW_ORTHO_LAST", "language": "en", "theme-creator": "Seppe Santens" - } + }, + "id": 106520703 } }, { @@ -13056,7 +13212,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Seppe Santens" - } + }, + "id": 106516180 } }, { @@ -13122,7 +13279,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 106516051 } }, { @@ -13188,7 +13346,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106514955 } }, { @@ -13254,7 +13413,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106509898 } }, { @@ -13315,7 +13475,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106505668 } }, { @@ -13376,7 +13537,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106496650 } }, { @@ -13437,7 +13599,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106492683 } }, { @@ -13497,7 +13660,8 @@ "theme": "skateparks", "imagery": "osm", "language": "en" - } + }, + "id": 106487346 } }, { @@ -14333,7 +14497,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106484165 } }, { @@ -14399,7 +14564,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 106483648 } }, { @@ -14460,7 +14626,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106482783 } }, { @@ -14521,7 +14688,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106473431 } }, { @@ -14581,7 +14749,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 106472157 } }, { @@ -14647,7 +14816,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106467529 } }, { @@ -14708,7 +14878,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 106467492 } }, { @@ -14773,7 +14944,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 106460720 } }, { @@ -14834,7 +15006,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106428757 } }, { @@ -14895,7 +15068,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106427529 } }, { @@ -14956,7 +15130,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106423177 } }, { @@ -16056,7 +16231,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106419096 } }, { @@ -16117,7 +16293,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106406539 } }, { @@ -16183,7 +16360,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106397570 } }, { @@ -16244,7 +16422,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 106396842 } }, { @@ -16305,7 +16484,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106390470 } }, { @@ -16366,7 +16546,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 106387614 } }, { @@ -16432,7 +16613,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106386975 } }, { @@ -16492,7 +16674,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 106385826 } }, { @@ -16558,7 +16741,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106380928 } }, { @@ -16619,7 +16803,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106360002 } }, { @@ -16680,7 +16865,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106357695 } }, { @@ -16746,7 +16932,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe; stla" - } + }, + "id": 106355182 } }, { @@ -17890,7 +18077,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106352086 } }, { @@ -17951,7 +18139,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106349807 } }, { @@ -18032,7 +18221,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106346957 } }, { @@ -18098,7 +18288,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106343083 } }, { @@ -18159,7 +18350,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106341586 } }, { @@ -18219,7 +18411,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 106340240 } }, { @@ -18280,7 +18473,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 106338046 } }, { @@ -18345,7 +18539,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106334094 } }, { @@ -18437,7 +18632,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106333893 } }, { @@ -18503,7 +18699,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106331264 } }, { @@ -18628,7 +18825,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106325499 } }, { @@ -18694,7 +18892,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe; stla" - } + }, + "id": 106298509 } }, { @@ -18755,7 +18954,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106296949 } }, { @@ -18836,7 +19036,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106289865 } }, { @@ -18897,7 +19098,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106289501 } }, { @@ -18957,7 +19159,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 106269713 } }, { @@ -19018,7 +19221,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106265939 } }, { @@ -19128,7 +19332,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106262532 } }, { @@ -19189,7 +19394,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106259611 } }, { @@ -19250,7 +19456,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106258920 } }, { @@ -19310,7 +19517,8 @@ "theme": "infotafel", "imagery": "osm", "language": "de" - } + }, + "id": 106248402 } }, { @@ -19387,7 +19595,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106247654 } }, { @@ -19448,7 +19657,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106244653 } }, { @@ -19514,7 +19724,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 106229310 } }, { @@ -19575,7 +19786,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106225224 } }, { @@ -19641,7 +19853,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106218338 } }, { @@ -19707,7 +19920,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106218210 } }, { @@ -19773,7 +19987,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106206655 } }, { @@ -19839,7 +20054,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106206319 } }, { @@ -19905,7 +20121,8 @@ "imagery": "Mapbox", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106199557 } }, { @@ -19971,7 +20188,8 @@ "imagery": "Mapbox", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106199356 } }, { @@ -20037,7 +20255,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106174805 } }, { @@ -20097,7 +20316,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 106162717 } }, { @@ -20158,7 +20378,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 106160156 } }, { @@ -20218,7 +20439,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 106159036 } }, { @@ -20279,7 +20501,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 106157565 } }, { @@ -20345,7 +20568,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106155038 } }, { @@ -20406,7 +20630,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106146705 } }, { @@ -20472,7 +20697,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106135263 } }, { @@ -20533,7 +20759,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 106112177 } }, { @@ -20593,7 +20820,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 106101463 } }, { @@ -20654,7 +20882,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 106097152 } }, { @@ -20715,7 +20944,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106093301 } }, { @@ -20776,7 +21006,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 106091074 } }, { @@ -20837,7 +21068,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 106072658 } }, { @@ -20898,7 +21130,8 @@ "imagery": "osm", "language": "zh_Hant", "theme-creator": "Midgard" - } + }, + "id": 106070096 } }, { @@ -20959,7 +21192,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106058676 } }, { @@ -21020,7 +21254,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106058511 } }, { @@ -21081,7 +21316,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 106054883 } }, { @@ -21162,7 +21398,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106054597 } }, { @@ -21223,7 +21460,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 106054181 } }, { @@ -21284,7 +21522,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 106051121 } }, { @@ -21345,7 +21584,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106050573 } }, { @@ -21406,7 +21646,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106047941 } }, { @@ -21467,7 +21708,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106045737 } }, { @@ -21528,7 +21770,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 106043773 } }, { @@ -21589,7 +21832,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106043486 } }, { @@ -21650,7 +21894,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 106041609 } }, { @@ -21711,7 +21956,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 106040090 } }, { @@ -21771,7 +22017,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 106039166 } }, { @@ -21832,7 +22079,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 106039020 } }, { @@ -21893,7 +22141,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 106035974 } }, { @@ -21954,7 +22203,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 106035531 } }, { @@ -22057,7 +22307,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106032433 } }, { @@ -22123,7 +22374,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106031602 } }, { @@ -22184,7 +22436,8 @@ "imagery": "CyclOSM", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 106031262 } }, { @@ -22245,7 +22498,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 106031010 } }, { @@ -22306,7 +22560,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 106029375 } }, { @@ -22442,7 +22697,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 106024174 } }, { @@ -22503,7 +22759,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106023713 } }, { @@ -22564,7 +22821,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 106023369 } }, { @@ -22624,7 +22882,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 106021684 } }, { @@ -22684,7 +22943,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 106020085 } }, { @@ -22750,7 +23010,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 106018086 } }, { @@ -22811,7 +23072,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 106016740 } }, { @@ -22887,7 +23149,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 106013851 } }, { @@ -22948,7 +23211,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 106006559 } }, { @@ -23008,7 +23272,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 106000128 } }, { @@ -23068,7 +23333,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105999548 } }, { @@ -23134,7 +23400,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105998691 } }, { @@ -23215,7 +23482,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105978830 } }, { @@ -23340,7 +23608,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105978238 } }, { @@ -23509,7 +23778,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105977655 } }, { @@ -23612,7 +23882,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105977341 } }, { @@ -23672,7 +23943,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105976109 } }, { @@ -23737,7 +24009,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105975823 } }, { @@ -23873,7 +24146,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105975143 } }, { @@ -24031,7 +24305,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105973903 } }, { @@ -24134,7 +24409,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105973481 } }, { @@ -24195,7 +24471,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105967734 } }, { @@ -24261,7 +24538,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105966634 } }, { @@ -24322,7 +24600,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105961584 } }, { @@ -24382,7 +24661,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 105960694 } }, { @@ -24443,7 +24723,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105958093 } }, { @@ -24508,7 +24789,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105957714 } }, { @@ -24600,7 +24882,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105957149 } }, { @@ -24692,7 +24975,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105956109 } }, { @@ -24806,7 +25090,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105955772 } }, { @@ -24867,7 +25152,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105954534 } }, { @@ -24927,7 +25213,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 105951675 } }, { @@ -24988,7 +25275,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 105951340 } }, { @@ -25054,7 +25342,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105950164 } }, { @@ -25114,7 +25403,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 105943292 } }, { @@ -25175,7 +25465,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 105937496 } }, { @@ -25235,7 +25526,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 105936609 } }, { @@ -25296,7 +25588,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 105931217 } }, { @@ -25357,7 +25650,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105926906 } }, { @@ -25417,7 +25711,8 @@ "theme": "streetlamps", "imagery": "Mapbox", "language": "en" - } + }, + "id": 105919595 } }, { @@ -25477,7 +25772,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 105913606 } }, { @@ -25511,7 +25807,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 105913605 } }, { @@ -25571,7 +25868,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 105913448 } }, { @@ -25631,7 +25929,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 105913334 } }, { @@ -25691,7 +25990,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 105912076 } }, { @@ -25751,7 +26051,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 105911702 } }, { @@ -25811,7 +26112,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 105911320 } }, { @@ -25872,7 +26174,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 105911293 } }, { @@ -25932,7 +26235,8 @@ "theme": "streetlights", "imagery": "osm", "language": "en" - } + }, + "id": 105909453 } }, { @@ -25993,7 +26297,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 105908867 } }, { @@ -26054,7 +26359,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105908527 } }, { @@ -26115,7 +26421,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105901100 } }, { @@ -26176,7 +26483,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 105899520 } }, { @@ -26242,7 +26550,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105892449 } }, { @@ -26303,7 +26612,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105886639 } }, { @@ -26384,7 +26694,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105883927 } }, { @@ -26476,7 +26787,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105878208 } }, { @@ -26537,7 +26849,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105873635 } }, { @@ -26618,7 +26931,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105861949 } }, { @@ -26699,7 +27013,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105861451 } }, { @@ -26875,7 +27190,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105857810 } }, { @@ -27051,7 +27367,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105854608 } }, { @@ -27143,7 +27460,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105853706 } }, { @@ -27268,7 +27586,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105853623 } }, { @@ -27360,7 +27679,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105853585 } }, { @@ -27503,7 +27823,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105853357 } }, { @@ -27672,7 +27993,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105853089 } }, { @@ -27749,7 +28071,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105852959 } }, { @@ -27848,7 +28171,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105852637 } }, { @@ -27951,7 +28275,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105852480 } }, { @@ -28142,7 +28467,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105852380 } }, { @@ -28245,7 +28571,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105852106 } }, { @@ -28480,7 +28807,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105851717 } }, { @@ -28627,7 +28955,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105851287 } }, { @@ -28708,7 +29037,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105850827 } }, { @@ -28822,7 +29152,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105850512 } }, { @@ -28936,7 +29267,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105850423 } }, { @@ -29017,7 +29349,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105850341 } }, { @@ -29120,7 +29453,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105850116 } }, { @@ -29245,7 +29579,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105850081 } }, { @@ -29359,7 +29694,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105850018 } }, { @@ -29440,7 +29776,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105849917 } }, { @@ -29719,7 +30056,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105849844 } }, { @@ -29811,7 +30149,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105849719 } }, { @@ -29877,7 +30216,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 105847791 } }, { @@ -29937,7 +30277,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105842201 } }, { @@ -29998,7 +30339,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 105799996 } }, { @@ -30059,7 +30401,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105789049 } }, { @@ -30119,7 +30462,8 @@ "theme": "fritures", "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 105787489 } }, { @@ -30185,7 +30529,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105784078 } }, { @@ -30251,7 +30596,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105779816 } }, { @@ -30317,7 +30663,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105776011 } }, { @@ -30378,7 +30725,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105770108 } }, { @@ -30439,7 +30787,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105766002 } }, { @@ -30500,7 +30849,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105764692 } }, { @@ -30625,7 +30975,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105763889 } }, { @@ -30690,7 +31041,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105762389 } }, { @@ -30751,7 +31103,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105745344 } }, { @@ -30811,7 +31164,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 105743538 } }, { @@ -30892,7 +31246,8 @@ "theme": "https://llefia.org/arbres/mapcomplete.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 105738229 } }, { @@ -30953,7 +31308,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 105735385 } }, { @@ -31014,7 +31370,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105732069 } }, { @@ -31075,7 +31432,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 105731710 } }, { @@ -31135,7 +31493,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105723896 } }, { @@ -31195,7 +31554,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105723828 } }, { @@ -31261,7 +31621,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105723801 } }, { @@ -31322,7 +31683,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105714421 } }, { @@ -31383,7 +31745,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105711334 } }, { @@ -31444,7 +31807,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105704959 } }, { @@ -31505,7 +31869,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105694177 } }, { @@ -31566,7 +31931,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105693580 } }, { @@ -31626,7 +31992,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 105680393 } }, { @@ -31687,7 +32054,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 105676236 } }, { @@ -31753,7 +32121,8 @@ "imagery": "HDM_HOT", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 105673859 } }, { @@ -31818,7 +32187,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 105669136 } }, { @@ -31878,7 +32248,8 @@ "theme": "buildings", "imagery": "osm", "language": "fr" - } + }, + "id": 105658938 } }, { @@ -31912,7 +32283,8 @@ "theme": "buildings", "imagery": "osm", "language": "fr" - } + }, + "id": 105658468 } }, { @@ -31972,7 +32344,8 @@ "theme": "buildings", "imagery": "osm", "language": "fr" - } + }, + "id": 105658372 } }, { @@ -32032,7 +32405,8 @@ "theme": "buildings", "imagery": "osm", "language": "fr" - } + }, + "id": 105658173 } } ] diff --git a/Docs/Tools/stats/stats.2021-7.json b/Docs/Tools/stats/stats.2021-7.json index b6b9abeb23..b775278136 100644 --- a/Docs/Tools/stats/stats.2021-7.json +++ b/Docs/Tools/stats/stats.2021-7.json @@ -58,7 +58,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 108959257 } }, { @@ -119,7 +120,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 108956863 } }, { @@ -161,7 +163,7 @@ "uid": "10846743", "editor": "MapComplete 0.8.4", "comment": "Adding data with #MapComplete for theme #aed", - "comments_count": 0, + "comments_count": 1, "source": "survey", "imagery_used": "Not reported", "date": "2021-07-31T18:38:58Z", @@ -180,7 +182,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108953733 } }, { @@ -241,7 +244,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108928737 } }, { @@ -301,7 +305,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 108921995 } }, { @@ -362,7 +367,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Peter Elderson" - } + }, + "id": 108917989 } }, { @@ -423,7 +429,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108913793 } }, { @@ -483,7 +490,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 108913244 } }, { @@ -545,7 +553,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108910248 } }, { @@ -606,7 +615,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 108904991 } }, { @@ -667,7 +677,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108903379 } }, { @@ -732,7 +743,8 @@ "theme": "boomgaarden", "imagery": "osm", "language": "nl" - } + }, + "id": 108900714 } }, { @@ -793,7 +805,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108899480 } }, { @@ -853,7 +866,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108899343 } }, { @@ -913,7 +927,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 108893407 } }, { @@ -975,7 +990,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108887082 } }, { @@ -1035,7 +1051,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 108850883 } }, { @@ -1095,7 +1112,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 108847389 } }, { @@ -1155,7 +1173,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 108846702 } }, { @@ -1375,7 +1394,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108846162 } }, { @@ -1496,7 +1516,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108845967 } }, { @@ -1530,7 +1551,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108845962 } }, { @@ -1564,7 +1586,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108845960 } }, { @@ -1598,7 +1621,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108845957 } }, { @@ -1632,7 +1656,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108845953 } }, { @@ -2391,7 +2416,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108843616 } }, { @@ -2457,7 +2483,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108840568 } }, { @@ -2518,7 +2545,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108837580 } }, { @@ -2580,7 +2608,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108834111 } }, { @@ -2646,7 +2675,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 108832023 } }, { @@ -2706,7 +2736,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 108828280 } }, { @@ -2772,7 +2803,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 108827981 } }, { @@ -2833,7 +2865,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 108827539 } }, { @@ -2894,7 +2927,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 108826890 } }, { @@ -2960,7 +2994,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 108826680 } }, { @@ -3026,7 +3061,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 108815732 } }, { @@ -3091,7 +3127,8 @@ "theme": "boomgaarden", "imagery": "AGIV10cm", "language": "nl" - } + }, + "id": 108808636 } }, { @@ -3170,7 +3207,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108778702 } }, { @@ -3236,7 +3274,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 108778207 } }, { @@ -3296,7 +3335,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 108777669 } }, { @@ -3357,7 +3397,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108777466 } }, { @@ -3417,7 +3458,8 @@ "theme": "fritures", "imagery": "osm", "language": "en" - } + }, + "id": 108776638 } }, { @@ -3478,7 +3520,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108769204 } }, { @@ -3539,7 +3582,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108768073 } }, { @@ -3600,7 +3644,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108766854 } }, { @@ -3671,7 +3716,8 @@ "deletion": "yes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108764539 } }, { @@ -3737,7 +3783,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108764519 } }, { @@ -3803,7 +3850,8 @@ "theme": "natuurpunt", "imagery": "CartoDB.Positron", "language": "en" - } + }, + "id": 108764380 } }, { @@ -3874,7 +3922,8 @@ "deletion": "yes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108764179 } }, { @@ -3940,7 +3989,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108764159 } }, { @@ -4006,7 +4056,8 @@ "theme": "natuurpunt", "imagery": "CartoDB.Positron", "language": "en" - } + }, + "id": 108763605 } }, { @@ -4067,7 +4118,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108763331 } }, { @@ -4127,7 +4179,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 108760889 } }, { @@ -4187,7 +4240,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 108760468 } }, { @@ -4258,7 +4312,8 @@ "deletion": "yes", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108760335 } }, { @@ -4324,7 +4379,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108760312 } }, { @@ -4385,7 +4441,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 108756674 } }, { @@ -4445,7 +4502,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 108753434 } }, { @@ -4506,7 +4564,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 108753077 } }, { @@ -4572,7 +4631,8 @@ "theme": "natuurpunt", "imagery": "CartoDB.Positron", "language": "nl" - } + }, + "id": 108752910 } }, { @@ -4634,7 +4694,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108742931 } }, { @@ -4696,7 +4757,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108739795 } }, { @@ -4762,7 +4824,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108736493 } }, { @@ -4822,7 +4885,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108725681 } }, { @@ -4883,7 +4947,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108709342 } }, { @@ -4918,7 +4983,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108709337 } }, { @@ -4953,7 +5019,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108709334 } }, { @@ -4988,7 +5055,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108709323 } }, { @@ -5023,7 +5091,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708914 } }, { @@ -5058,7 +5127,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708912 } }, { @@ -5093,7 +5163,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708909 } }, { @@ -5128,7 +5199,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708907 } }, { @@ -5163,7 +5235,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708906 } }, { @@ -5198,7 +5271,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708905 } }, { @@ -5233,7 +5307,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708900 } }, { @@ -5268,7 +5343,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708899 } }, { @@ -5303,7 +5379,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708898 } }, { @@ -5338,7 +5415,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708896 } }, { @@ -5373,7 +5451,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708885 } }, { @@ -5434,7 +5513,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708871 } }, { @@ -5469,7 +5549,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708867 } }, { @@ -5504,7 +5585,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708866 } }, { @@ -5539,7 +5621,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708863 } }, { @@ -5574,7 +5657,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708854 } }, { @@ -5635,7 +5719,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708826 } }, { @@ -5670,7 +5755,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708820 } }, { @@ -5705,7 +5791,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708818 } }, { @@ -5740,7 +5827,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708816 } }, { @@ -5775,7 +5863,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708815 } }, { @@ -5810,7 +5899,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708814 } }, { @@ -5845,7 +5935,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708808 } }, { @@ -5906,7 +5997,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 108708640 } }, { @@ -5972,7 +6064,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108706282 } }, { @@ -6033,7 +6126,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108703673 } }, { @@ -6094,7 +6188,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108703402 } }, { @@ -6155,7 +6250,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108702879 } }, { @@ -6216,7 +6312,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108702612 } }, { @@ -6276,7 +6373,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 108701765 } }, { @@ -6336,7 +6434,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108691847 } }, { @@ -6396,7 +6495,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 108690606 } }, { @@ -6456,7 +6556,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108680475 } }, { @@ -6517,7 +6618,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108680212 } }, { @@ -6578,7 +6680,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 108678356 } }, { @@ -6644,7 +6747,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108676310 } }, { @@ -6705,7 +6809,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108670320 } }, { @@ -6766,7 +6871,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 108652577 } }, { @@ -6827,7 +6933,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108649257 } }, { @@ -6887,7 +6994,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 108648942 } }, { @@ -6947,7 +7055,8 @@ "theme": "playgrounds", "imagery": "Mapbox", "language": "en" - } + }, + "id": 108642981 } }, { @@ -7008,7 +7117,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108642896 } }, { @@ -7069,7 +7179,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108631066 } }, { @@ -7129,7 +7240,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 108630792 } }, { @@ -7191,7 +7303,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108629843 } }, { @@ -7251,7 +7364,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "Mapbox", "language": "es" - } + }, + "id": 108627710 } }, { @@ -7287,7 +7401,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108627240 } }, { @@ -7349,7 +7464,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108627214 } }, { @@ -7411,7 +7527,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108627066 } }, { @@ -7446,7 +7563,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108610298 } }, { @@ -7507,7 +7625,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108609516 } }, { @@ -7569,7 +7688,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 108580733 } }, { @@ -7631,7 +7751,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108579166 } }, { @@ -7693,7 +7814,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 108577675 } }, { @@ -7729,7 +7851,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108562748 } }, { @@ -7765,7 +7888,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108562747 } }, { @@ -7827,7 +7951,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108562739 } }, { @@ -7889,7 +8014,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108562725 } }, { @@ -7949,7 +8075,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 108558900 } }, { @@ -8009,7 +8136,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 108556779 } }, { @@ -8070,7 +8198,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108550458 } }, { @@ -8130,7 +8259,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108538629 } }, { @@ -8191,7 +8321,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108538300 } }, { @@ -8253,7 +8384,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108532499 } }, { @@ -8315,7 +8447,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108532464 } }, { @@ -8350,7 +8483,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108532098 } }, { @@ -8411,7 +8545,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108532058 } }, { @@ -8472,7 +8607,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108531914 } }, { @@ -8534,7 +8670,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 108522608 } }, { @@ -8594,7 +8731,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108516737 } }, { @@ -8655,7 +8793,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108508414 } }, { @@ -8691,7 +8830,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108505885 } }, { @@ -8727,7 +8867,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108505884 } }, { @@ -8763,7 +8904,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108505883 } }, { @@ -8825,7 +8967,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108505875 } }, { @@ -8861,7 +9004,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108505874 } }, { @@ -8923,7 +9067,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108505869 } }, { @@ -8985,7 +9130,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108505836 } }, { @@ -9020,7 +9166,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108505800 } }, { @@ -9055,7 +9202,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108505799 } }, { @@ -9090,7 +9238,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108505798 } }, { @@ -9151,7 +9300,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108505791 } }, { @@ -9186,7 +9336,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108505790 } }, { @@ -9247,7 +9398,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108505781 } }, { @@ -9308,7 +9460,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108505761 } }, { @@ -9368,7 +9521,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108499953 } }, { @@ -9429,7 +9583,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108499761 } }, { @@ -9495,7 +9650,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108499693 } }, { @@ -9556,7 +9712,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 108498025 } }, { @@ -9616,7 +9773,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 108497725 } }, { @@ -9650,7 +9808,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 108497719 } }, { @@ -9684,7 +9843,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 108497707 } }, { @@ -9744,7 +9904,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 108495359 } }, { @@ -9810,7 +9971,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108493319 } }, { @@ -9869,7 +10031,8 @@ "theme": "climbing", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 108483772 } }, { @@ -9931,7 +10094,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108463738 } }, { @@ -9992,7 +10156,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 108456169 } }, { @@ -10052,7 +10217,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 108454283 } }, { @@ -10113,7 +10279,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 108436582 } }, { @@ -10175,7 +10342,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108435131 } }, { @@ -10241,7 +10409,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Positron", "language": "en" - } + }, + "id": 108433663 } }, { @@ -10301,7 +10470,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 108430716 } }, { @@ -10361,7 +10531,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108428293 } }, { @@ -10422,7 +10593,8 @@ "theme": "cycle_infra", "imagery": "osm", "language": "nl" - } + }, + "id": 108416991 } }, { @@ -10483,7 +10655,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108415854 } }, { @@ -10544,7 +10717,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108397905 } }, { @@ -10578,7 +10752,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108390805 } }, { @@ -10638,7 +10813,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108390804 } }, { @@ -10672,7 +10848,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108390803 } }, { @@ -10732,7 +10909,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108390802 } }, { @@ -10766,7 +10944,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108390801 } }, { @@ -10826,7 +11005,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108390788 } }, { @@ -10886,7 +11066,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108389294 } }, { @@ -10920,7 +11101,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108389293 } }, { @@ -10981,7 +11163,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108388301 } }, { @@ -11041,7 +11224,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108388258 } }, { @@ -11101,7 +11285,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 108381433 } }, { @@ -11162,7 +11347,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 108380604 } }, { @@ -11224,7 +11410,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 108369264 } }, { @@ -11284,7 +11471,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108368191 } }, { @@ -11344,7 +11532,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108367822 } }, { @@ -11404,7 +11593,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108359961 } }, { @@ -11466,7 +11656,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108351111 } }, { @@ -11526,7 +11717,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 108345017 } }, { @@ -11588,7 +11780,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 108345010 } }, { @@ -11648,7 +11841,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108342671 } }, { @@ -11708,7 +11902,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108342662 } }, { @@ -11769,7 +11964,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108337961 } }, { @@ -11830,7 +12026,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108337894 } }, { @@ -11890,7 +12087,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 108337404 } }, { @@ -11951,7 +12149,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 108336700 } }, { @@ -12012,7 +12211,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108336297 } }, { @@ -12072,7 +12272,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108321249 } }, { @@ -12133,7 +12334,8 @@ "theme": "cycle_infra", "imagery": "osm", "language": "nl" - } + }, + "id": 108298931 } }, { @@ -12199,7 +12401,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108293269 } }, { @@ -12259,7 +12462,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108279039 } }, { @@ -12321,7 +12525,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 108269386 } }, { @@ -12386,7 +12591,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108264053 } }, { @@ -12452,7 +12658,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108261778 } }, { @@ -12518,7 +12725,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 108261301 } }, { @@ -12584,7 +12792,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108260504 } }, { @@ -12618,7 +12827,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108257506 } }, { @@ -12678,7 +12888,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108257302 } }, { @@ -12738,7 +12949,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108257280 } }, { @@ -12799,7 +13011,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 108256380 } }, { @@ -12859,7 +13072,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108255793 } }, { @@ -12920,7 +13134,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 108252933 } }, { @@ -12981,7 +13196,8 @@ "theme": "cycle_infra", "imagery": "osm", "language": "nl" - } + }, + "id": 108242726 } }, { @@ -13046,7 +13262,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 108241385 } }, { @@ -13107,7 +13324,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108235828 } }, { @@ -13141,7 +13359,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108234701 } }, { @@ -13201,7 +13420,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108234620 } }, { @@ -13262,7 +13482,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 108232811 } }, { @@ -13322,7 +13543,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108216139 } }, { @@ -13382,7 +13604,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 108210956 } }, { @@ -13443,7 +13666,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108199285 } }, { @@ -13504,7 +13728,8 @@ "imagery": "Stamen.TonerLite", "language": "en", "theme-creator": "Seppe Santens" - } + }, + "id": 108198429 } }, { @@ -13565,7 +13790,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108197990 } }, { @@ -13599,7 +13825,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108188651 } }, { @@ -13659,7 +13886,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108188557 } }, { @@ -13720,7 +13948,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108188508 } }, { @@ -13780,7 +14009,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "nl" - } + }, + "id": 108187047 } }, { @@ -13841,7 +14071,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108186945 } }, { @@ -13902,7 +14133,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108185095 } }, { @@ -13937,7 +14169,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 108184541 } }, { @@ -13998,7 +14231,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 108184506 } }, { @@ -14059,7 +14293,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108184012 } }, { @@ -14120,7 +14355,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 108180260 } }, { @@ -14181,7 +14417,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Peter Elderson" - } + }, + "id": 108175423 } }, { @@ -14241,7 +14478,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108161942 } }, { @@ -14302,7 +14540,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 108160119 } }, { @@ -14369,7 +14608,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108156178 } }, { @@ -14435,7 +14675,8 @@ "imagery": "EsriWorldImagery", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 108153380 } }, { @@ -14496,7 +14737,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108151544 } }, { @@ -14557,7 +14799,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108150893 } }, { @@ -14617,7 +14860,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 108148756 } }, { @@ -14683,7 +14927,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 108136748 } }, { @@ -14743,7 +14988,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "ru" - } + }, + "id": 108122622 } }, { @@ -14777,7 +15023,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108122546 } }, { @@ -14838,7 +15085,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108120813 } }, { @@ -14898,7 +15146,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImagery", "language": "es" - } + }, + "id": 108120510 } }, { @@ -14959,7 +15208,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108114751 } }, { @@ -15020,7 +15270,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108109786 } }, { @@ -15080,7 +15331,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 108109522 } }, { @@ -15141,7 +15393,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108106716 } }, { @@ -15202,7 +15455,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108106660 } }, { @@ -15263,7 +15517,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 108100227 } }, { @@ -15298,7 +15553,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108081603 } }, { @@ -15359,7 +15615,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108081595 } }, { @@ -15419,7 +15676,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108078217 } }, { @@ -15480,7 +15738,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108077506 } }, { @@ -15541,7 +15800,8 @@ "imagery": "CartoDB.Voyager", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 108075710 } }, { @@ -15602,7 +15862,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108074316 } }, { @@ -15662,7 +15923,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 108074108 } }, { @@ -15723,7 +15985,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108073998 } }, { @@ -15758,7 +16021,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108073664 } }, { @@ -15793,7 +16057,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108073663 } }, { @@ -15828,7 +16093,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108073662 } }, { @@ -15863,7 +16129,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108073661 } }, { @@ -15924,7 +16191,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108073645 } }, { @@ -15959,7 +16227,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108073644 } }, { @@ -15994,7 +16263,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108073624 } }, { @@ -16055,7 +16325,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108073623 } }, { @@ -16116,7 +16387,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 108073474 } }, { @@ -16176,7 +16448,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 108070696 } }, { @@ -16237,7 +16510,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108069647 } }, { @@ -16272,7 +16546,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108069646 } }, { @@ -16932,7 +17207,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108069548 } }, { @@ -16993,7 +17269,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108069513 } }, { @@ -17054,7 +17331,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108069477 } }, { @@ -17142,7 +17420,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108069450 } }, { @@ -17219,7 +17498,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "EsriWorldImageryClarity", "language": "ca" - } + }, + "id": 108069436 } }, { @@ -17254,7 +17534,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108069345 } }, { @@ -17315,7 +17596,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108069344 } }, { @@ -17350,7 +17632,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108069343 } }, { @@ -17411,7 +17694,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108069342 } }, { @@ -17510,7 +17794,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108069328 } }, { @@ -17587,7 +17872,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 108069302 } }, { @@ -17647,7 +17933,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108055158 } }, { @@ -17709,7 +17996,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 108044245 } }, { @@ -17769,7 +18057,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 108005513 } }, { @@ -17829,7 +18118,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 108003508 } }, { @@ -17890,7 +18180,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107994642 } }, { @@ -17950,7 +18241,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 107982711 } }, { @@ -18016,7 +18308,8 @@ "imagery": "EsriWorldImagery", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 107982302 } }, { @@ -18077,7 +18370,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 107980055 } }, { @@ -18138,7 +18432,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107976415 } }, { @@ -18199,7 +18494,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107965514 } }, { @@ -18261,7 +18557,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 107955142 } }, { @@ -18321,7 +18618,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 107951099 } }, { @@ -18381,7 +18679,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 107937707 } }, { @@ -18441,7 +18740,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 107937706 } }, { @@ -18501,7 +18801,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 107937683 } }, { @@ -18561,7 +18862,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 107937680 } }, { @@ -18621,7 +18923,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 107937669 } }, { @@ -18682,7 +18985,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107937641 } }, { @@ -18743,7 +19047,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107937565 } }, { @@ -18803,7 +19108,8 @@ "theme": "playgrounds", "imagery": "Mapbox", "language": "en" - } + }, + "id": 107937146 } }, { @@ -18864,7 +19170,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107934811 } }, { @@ -18930,7 +19237,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 107934101 } }, { @@ -18992,7 +19300,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107930960 } }, { @@ -19053,7 +19362,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107930934 } }, { @@ -19113,7 +19423,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 107913936 } }, { @@ -19173,7 +19484,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 107908727 } }, { @@ -19235,7 +19547,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107904564 } }, { @@ -19295,7 +19608,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 107891229 } }, { @@ -19361,7 +19675,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107884831 } }, { @@ -19423,7 +19738,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 107874799 } }, { @@ -19483,7 +19799,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107868386 } }, { @@ -19545,7 +19862,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107867779 } }, { @@ -19605,7 +19923,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 107866381 } }, { @@ -19666,7 +19985,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107864456 } }, { @@ -19732,7 +20052,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107862428 } }, { @@ -19768,7 +20089,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107858355 } }, { @@ -19830,7 +20152,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107858287 } }, { @@ -19892,7 +20215,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107858279 } }, { @@ -19954,7 +20278,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107858278 } }, { @@ -20015,7 +20340,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 107857284 } }, { @@ -20081,7 +20407,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107853376 } }, { @@ -20142,7 +20469,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 107852873 } }, { @@ -20208,7 +20536,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107852821 } }, { @@ -20243,7 +20572,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107852270 } }, { @@ -20304,7 +20634,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852154 } }, { @@ -20339,7 +20670,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852153 } }, { @@ -20374,7 +20706,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852152 } }, { @@ -20409,7 +20742,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852151 } }, { @@ -20444,7 +20778,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852150 } }, { @@ -20479,7 +20814,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852149 } }, { @@ -20514,7 +20850,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852148 } }, { @@ -20549,7 +20886,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852147 } }, { @@ -20584,7 +20922,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852146 } }, { @@ -20645,7 +20984,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852136 } }, { @@ -20680,7 +21020,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852135 } }, { @@ -20715,7 +21056,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852134 } }, { @@ -20750,7 +21092,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852133 } }, { @@ -20785,7 +21128,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852132 } }, { @@ -20846,7 +21190,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852122 } }, { @@ -20881,7 +21226,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852121 } }, { @@ -20916,7 +21262,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852120 } }, { @@ -20977,7 +21324,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852108 } }, { @@ -21038,7 +21386,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852081 } }, { @@ -21073,7 +21422,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852080 } }, { @@ -21108,7 +21458,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852079 } }, { @@ -21143,7 +21494,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852078 } }, { @@ -21178,7 +21530,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852077 } }, { @@ -21213,7 +21566,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852076 } }, { @@ -21248,7 +21602,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852075 } }, { @@ -21283,7 +21638,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852074 } }, { @@ -21318,7 +21674,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852073 } }, { @@ -21379,7 +21736,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852061 } }, { @@ -21414,7 +21772,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852059 } }, { @@ -21449,7 +21808,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852058 } }, { @@ -21484,7 +21844,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852057 } }, { @@ -21519,7 +21880,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852056 } }, { @@ -21554,7 +21916,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852055 } }, { @@ -21589,7 +21952,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852054 } }, { @@ -21650,7 +22014,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852036 } }, { @@ -21685,7 +22050,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852035 } }, { @@ -21720,7 +22086,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852034 } }, { @@ -21755,7 +22122,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852033 } }, { @@ -21790,7 +22158,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852032 } }, { @@ -21851,7 +22220,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852022 } }, { @@ -21886,7 +22256,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852021 } }, { @@ -21921,7 +22292,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852020 } }, { @@ -21982,7 +22354,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107852005 } }, { @@ -22043,7 +22416,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107851987 } }, { @@ -22078,7 +22452,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107851986 } }, { @@ -22113,7 +22488,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107851985 } }, { @@ -22148,7 +22524,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107851983 } }, { @@ -22209,7 +22586,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107851972 } }, { @@ -22270,7 +22648,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107851858 } }, { @@ -22305,7 +22684,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107851857 } }, { @@ -22340,7 +22720,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107851856 } }, { @@ -22401,7 +22782,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107851853 } }, { @@ -22462,7 +22844,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107851839 } }, { @@ -22523,7 +22906,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107851838 } }, { @@ -22583,7 +22967,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 107841738 } }, { @@ -22623,7 +23008,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107840050 } }, { @@ -22668,7 +23054,8 @@ "deletion": "yes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107840049 } }, { @@ -22739,7 +23126,8 @@ "deletion": "yes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107840048 } }, { @@ -22805,7 +23193,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107840002 } }, { @@ -22866,7 +23255,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107826441 } }, { @@ -22927,7 +23317,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107820621 } }, { @@ -22989,7 +23380,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107799153 } }, { @@ -23066,7 +23458,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107798754 } }, { @@ -23132,7 +23525,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107795579 } }, { @@ -23242,7 +23636,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107795005 } }, { @@ -23302,7 +23697,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107788249 } }, { @@ -23363,7 +23759,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107786968 } }, { @@ -23398,7 +23795,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783672 } }, { @@ -23433,7 +23831,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783671 } }, { @@ -23468,7 +23867,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783670 } }, { @@ -23503,7 +23903,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783669 } }, { @@ -23538,7 +23939,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783668 } }, { @@ -23573,7 +23975,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783667 } }, { @@ -23608,7 +24011,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783666 } }, { @@ -23643,7 +24047,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783665 } }, { @@ -23678,7 +24083,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783664 } }, { @@ -23713,7 +24119,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783655 } }, { @@ -23748,7 +24155,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783654 } }, { @@ -23809,7 +24217,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783653 } }, { @@ -23844,7 +24253,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783652 } }, { @@ -23879,7 +24289,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783651 } }, { @@ -23914,7 +24325,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783650 } }, { @@ -23949,7 +24361,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783649 } }, { @@ -23984,7 +24397,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783639 } }, { @@ -24019,7 +24433,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783638 } }, { @@ -24080,7 +24495,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783637 } }, { @@ -24115,7 +24531,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783636 } }, { @@ -24150,7 +24567,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783635 } }, { @@ -24211,7 +24629,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783626 } }, { @@ -24272,7 +24691,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783580 } }, { @@ -24307,7 +24727,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783579 } }, { @@ -24342,7 +24763,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783578 } }, { @@ -24377,7 +24799,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783577 } }, { @@ -24412,7 +24835,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783576 } }, { @@ -24447,7 +24871,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783575 } }, { @@ -24482,7 +24907,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783574 } }, { @@ -24517,7 +24943,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783573 } }, { @@ -24552,7 +24979,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783572 } }, { @@ -24587,7 +25015,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783564 } }, { @@ -24648,7 +25077,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783563 } }, { @@ -24683,7 +25113,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783562 } }, { @@ -24718,7 +25149,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783561 } }, { @@ -24753,7 +25185,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783560 } }, { @@ -24814,7 +25247,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783553 } }, { @@ -24849,7 +25283,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783552 } }, { @@ -24884,7 +25319,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783551 } }, { @@ -24945,7 +25381,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783539 } }, { @@ -24980,7 +25417,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783531 } }, { @@ -25041,7 +25479,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783530 } }, { @@ -25076,7 +25515,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783529 } }, { @@ -25111,7 +25551,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783528 } }, { @@ -25146,7 +25587,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783527 } }, { @@ -25207,7 +25649,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783515 } }, { @@ -25242,7 +25685,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783514 } }, { @@ -25277,7 +25721,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783513 } }, { @@ -25338,7 +25783,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783506 } }, { @@ -25373,7 +25819,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783484 } }, { @@ -25434,7 +25881,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783483 } }, { @@ -25495,7 +25943,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107783476 } }, { @@ -25561,7 +26010,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783380 } }, { @@ -25601,7 +26051,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783379 } }, { @@ -25641,7 +26092,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783378 } }, { @@ -25707,7 +26159,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783374 } }, { @@ -25773,7 +26226,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783359 } }, { @@ -25813,7 +26267,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783358 } }, { @@ -25853,7 +26308,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783357 } }, { @@ -25919,7 +26375,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783283 } }, { @@ -25985,7 +26442,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783269 } }, { @@ -26025,7 +26483,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783048 } }, { @@ -26065,7 +26524,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783047 } }, { @@ -26131,7 +26591,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783046 } }, { @@ -26171,7 +26632,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783045 } }, { @@ -26211,7 +26673,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783044 } }, { @@ -26277,7 +26740,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783036 } }, { @@ -26317,7 +26781,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783035 } }, { @@ -26357,7 +26822,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783034 } }, { @@ -26423,7 +26889,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783030 } }, { @@ -26489,7 +26956,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783007 } }, { @@ -26529,7 +26997,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783006 } }, { @@ -26569,7 +27038,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783005 } }, { @@ -26609,7 +27079,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783004 } }, { @@ -26649,7 +27120,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107783003 } }, { @@ -26715,7 +27187,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782992 } }, { @@ -26755,7 +27228,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782991 } }, { @@ -26795,7 +27269,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782990 } }, { @@ -26861,7 +27336,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782985 } }, { @@ -26901,7 +27377,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782975 } }, { @@ -26967,7 +27444,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782974 } }, { @@ -27007,7 +27485,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782973 } }, { @@ -27047,7 +27526,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782972 } }, { @@ -27087,7 +27567,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782971 } }, { @@ -27153,7 +27634,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782964 } }, { @@ -27193,7 +27675,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782963 } }, { @@ -27233,7 +27716,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782962 } }, { @@ -27299,7 +27783,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782949 } }, { @@ -27365,7 +27850,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782926 } }, { @@ -27431,7 +27917,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782878 } }, { @@ -27497,7 +27984,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 107782877 } }, { @@ -27558,7 +28046,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 107780917 } }, { @@ -27619,7 +28108,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107779257 } }, { @@ -27679,7 +28169,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107779011 } }, { @@ -27740,7 +28231,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107778610 } }, { @@ -27801,7 +28293,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107778187 } }, { @@ -27862,7 +28355,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107768284 } }, { @@ -27923,7 +28417,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107768238 } }, { @@ -27958,7 +28453,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107768237 } }, { @@ -28019,7 +28515,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107768233 } }, { @@ -28080,7 +28577,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107768230 } }, { @@ -28141,7 +28639,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107768226 } }, { @@ -28372,7 +28871,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "EsriWorldImageryClarity", "language": "ca" - } + }, + "id": 107759779 } }, { @@ -28433,7 +28933,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107758733 } }, { @@ -28493,7 +28994,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107757533 } }, { @@ -28553,7 +29055,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 107752830 } }, { @@ -28619,7 +29122,8 @@ "theme": "surveillance", "imagery": "osmfr", "language": "nl" - } + }, + "id": 107749131 } }, { @@ -28680,7 +29184,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107747529 } }, { @@ -28741,7 +29246,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107746904 } }, { @@ -28802,7 +29308,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107746775 } }, { @@ -28863,7 +29370,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107745354 } }, { @@ -28924,7 +29432,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107744755 } }, { @@ -28984,7 +29493,8 @@ "theme": "https://matrix-client.matrix.org/_matrix/media/r0/download/matrix.org/vZjzqHFPkWoLoCNmFloJqZJr", "imagery": "osm", "language": "en" - } + }, + "id": 107744218 } }, { @@ -29045,7 +29555,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107744185 } }, { @@ -29085,7 +29596,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107741841 } }, { @@ -29125,7 +29637,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107741834 } }, { @@ -29165,7 +29678,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107741827 } }, { @@ -29231,7 +29745,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107741782 } }, { @@ -29271,7 +29786,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107741773 } }, { @@ -29337,7 +29853,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107741754 } }, { @@ -29377,7 +29894,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107741752 } }, { @@ -29417,7 +29935,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107741744 } }, { @@ -29483,7 +30002,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 107741717 } }, { @@ -29544,7 +30064,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107740381 } }, { @@ -29579,7 +30100,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107739303 } }, { @@ -29614,7 +30136,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107739286 } }, { @@ -29675,7 +30198,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107739260 } }, { @@ -29709,7 +30233,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107738932 } }, { @@ -29743,7 +30268,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107738924 } }, { @@ -29803,7 +30329,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107738922 } }, { @@ -29863,7 +30390,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107738907 } }, { @@ -29923,7 +30451,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107738867 } }, { @@ -29984,7 +30513,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107735170 } }, { @@ -30019,7 +30549,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107731704 } }, { @@ -30080,7 +30611,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107730202 } }, { @@ -30141,7 +30673,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107730044 } }, { @@ -30176,7 +30709,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107729507 } }, { @@ -30237,7 +30771,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107729338 } }, { @@ -30272,7 +30807,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107729334 } }, { @@ -30307,7 +30843,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107729332 } }, { @@ -30368,7 +30905,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107729292 } }, { @@ -30430,7 +30968,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107727020 } }, { @@ -30509,7 +31048,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107723869 } }, { @@ -30570,7 +31110,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107723834 } }, { @@ -30637,7 +31178,8 @@ "deletion": "yes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107719694 } }, { @@ -30698,7 +31240,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107719691 } }, { @@ -30765,7 +31308,8 @@ "deletion": "yes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107719684 } }, { @@ -30800,7 +31344,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107719490 } }, { @@ -30841,7 +31386,8 @@ "deletion": "yes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107719425 } }, { @@ -30902,7 +31448,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107719413 } }, { @@ -30942,7 +31489,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107719356 } }, { @@ -31008,7 +31556,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107719337 } }, { @@ -31085,7 +31634,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107719251 } }, { @@ -31120,7 +31670,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107719243 } }, { @@ -31181,7 +31732,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107719236 } }, { @@ -31215,7 +31767,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107719140 } }, { @@ -31275,7 +31828,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107719052 } }, { @@ -31309,7 +31863,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107719049 } }, { @@ -31369,7 +31924,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107718957 } }, { @@ -31430,7 +31986,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107717888 } }, { @@ -31491,7 +32048,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 107717289 } }, { @@ -31526,7 +32084,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107717158 } }, { @@ -31587,7 +32146,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107717095 } }, { @@ -31647,7 +32207,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107716873 } }, { @@ -31708,7 +32269,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107716217 } }, { @@ -31743,7 +32305,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107715408 } }, { @@ -31778,7 +32341,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107715397 } }, { @@ -31813,7 +32377,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107715337 } }, { @@ -31848,7 +32413,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107715333 } }, { @@ -31909,7 +32475,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107715285 } }, { @@ -31971,7 +32538,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107707582 } }, { @@ -32007,7 +32575,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107706119 } }, { @@ -32069,7 +32638,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107706110 } }, { @@ -32130,7 +32700,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 107701543 } }, { @@ -32190,7 +32761,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107699458 } }, { @@ -32250,7 +32822,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107699135 } }, { @@ -32310,7 +32883,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107698362 } }, { @@ -32371,7 +32945,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107693811 } }, { @@ -32433,7 +33008,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107693578 } }, { @@ -32468,7 +33044,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107690848 } }, { @@ -32529,7 +33106,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107690820 } }, { @@ -32590,7 +33168,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107678120 } }, { @@ -32650,7 +33229,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImagery", "language": "en" - } + }, + "id": 107665134 } }, { @@ -32710,7 +33290,8 @@ "theme": "RailwaySignalsARG", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 107665005 } }, { @@ -32771,7 +33352,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107659989 } }, { @@ -32805,7 +33387,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107659843 } }, { @@ -32865,7 +33448,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107659818 } }, { @@ -32900,7 +33484,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107657644 } }, { @@ -32935,7 +33520,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107657613 } }, { @@ -32996,7 +33582,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107657581 } }, { @@ -33031,7 +33618,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107657567 } }, { @@ -33092,7 +33680,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107657541 } }, { @@ -33127,7 +33716,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107655746 } }, { @@ -33162,7 +33752,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107655696 } }, { @@ -33197,7 +33788,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107655682 } }, { @@ -33258,7 +33850,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107655620 } }, { @@ -33318,7 +33911,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 107651887 } }, { @@ -33353,7 +33947,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107651886 } }, { @@ -33413,7 +34008,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 107651881 } }, { @@ -33473,7 +34069,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 107651797 } }, { @@ -33533,7 +34130,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 107651789 } }, { @@ -33594,7 +34192,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107651778 } }, { @@ -33654,7 +34253,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 107651703 } }, { @@ -33731,7 +34331,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "EsriWorldImageryClarity", "language": "ca" - } + }, + "id": 107648773 } }, { @@ -33808,7 +34409,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "EsriWorldImageryClarity", "language": "ca" - } + }, + "id": 107648733 } }, { @@ -33885,7 +34487,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "EsriWorldImageryClarity", "language": "ca" - } + }, + "id": 107648540 } }, { @@ -33995,7 +34598,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "EsriWorldImageryClarity", "language": "ca" - } + }, + "id": 107647798 } }, { @@ -34116,7 +34720,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "EsriWorldImageryClarity", "language": "ca" - } + }, + "id": 107647079 } }, { @@ -34248,7 +34853,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107646670 } }, { @@ -34325,7 +34931,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107646653 } }, { @@ -34387,7 +34994,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107639693 } }, { @@ -34448,7 +35056,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107639372 } }, { @@ -34509,7 +35118,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107637544 } }, { @@ -34569,7 +35179,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107637369 } }, { @@ -34605,7 +35216,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107632293 } }, { @@ -34641,7 +35253,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107632277 } }, { @@ -34677,7 +35290,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107632055 } }, { @@ -34739,7 +35353,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107631905 } }, { @@ -34799,7 +35414,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107630898 } }, { @@ -34860,7 +35476,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107630486 } }, { @@ -34895,7 +35512,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107630466 } }, { @@ -34956,7 +35574,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107630455 } }, { @@ -34998,7 +35617,7 @@ "uid": "3574538", "editor": "MapComplete 0.8.3b", "comment": "Adding data with #MapComplete for theme #personal", - "comments_count": 0, + "comments_count": 4, "source": "Not reported", "imagery_used": "Not reported", "date": "2021-07-08T10:54:27Z", @@ -35017,7 +35636,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107628222 } }, { @@ -35078,7 +35698,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107627625 } }, { @@ -35139,7 +35760,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107626737 } }, { @@ -35200,7 +35822,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107624823 } }, { @@ -35261,7 +35884,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107615864 } }, { @@ -35322,7 +35946,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107613706 } }, { @@ -35382,7 +36007,8 @@ "theme": "RailwaySignalsARG", "imagery": "osm", "language": "es" - } + }, + "id": 107591399 } }, { @@ -35443,7 +36069,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107586930 } }, { @@ -35504,7 +36131,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107586116 } }, { @@ -35570,7 +36198,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107581411 } }, { @@ -35635,7 +36264,8 @@ "theme": "waste_basket", "imagery": "osm", "language": "en" - } + }, + "id": 107561417 } }, { @@ -35696,7 +36326,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107554704 } }, { @@ -35756,7 +36387,8 @@ "theme": "RailwaySignalsARG", "imagery": "osm", "language": "en" - } + }, + "id": 107527653 } }, { @@ -35816,7 +36448,8 @@ "theme": "RailwaySignalsARG", "imagery": "osm", "language": "es" - } + }, + "id": 107525315 } }, { @@ -35877,7 +36510,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107517409 } }, { @@ -35938,7 +36572,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107510508 } }, { @@ -35999,7 +36634,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107504627 } }, { @@ -36059,7 +36695,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 107500130 } }, { @@ -36120,7 +36757,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107493601 } }, { @@ -36182,7 +36820,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107456799 } }, { @@ -36243,7 +36882,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107446673 } }, { @@ -36309,7 +36949,8 @@ "imagery": "CartoDB.Positron", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107440134 } }, { @@ -36370,7 +37011,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "RobinLinde" - } + }, + "id": 107439210 } }, { @@ -36436,7 +37078,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107438593 } }, { @@ -36502,7 +37145,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 107438158 } }, { @@ -36568,7 +37212,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107438020 } }, { @@ -36634,7 +37279,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 107437838 } }, { @@ -36700,7 +37346,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 107437805 } }, { @@ -36766,7 +37413,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 107436132 } }, { @@ -36832,7 +37480,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 107436011 } }, { @@ -36898,7 +37547,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107435925 } }, { @@ -36980,7 +37630,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107433268 } }, { @@ -37041,7 +37692,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107430359 } }, { @@ -37102,7 +37754,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107429499 } }, { @@ -37163,7 +37816,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107428602 } }, { @@ -37224,7 +37878,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107428362 } }, { @@ -37525,7 +38180,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107406325 } }, { @@ -37585,7 +38241,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107404092 } }, { @@ -37645,7 +38302,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107399445 } }, { @@ -37759,7 +38417,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107399232 } }, { @@ -37820,7 +38479,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107398394 } }, { @@ -37880,7 +38540,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107393708 } }, { @@ -37941,7 +38602,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107391739 } }, { @@ -38001,7 +38663,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107390271 } }, { @@ -38062,7 +38725,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107384119 } }, { @@ -38128,7 +38792,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107379203 } }, { @@ -38189,7 +38854,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107379066 } }, { @@ -38249,7 +38915,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107378298 } }, { @@ -38310,7 +38977,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107377442 } }, { @@ -38370,7 +39038,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 107377157 } }, { @@ -38432,7 +39101,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 107376632 } }, { @@ -38498,7 +39168,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107376395 } }, { @@ -38564,7 +39235,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107375700 } }, { @@ -38629,7 +39301,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107375646 } }, { @@ -38689,7 +39362,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 107374450 } }, { @@ -38750,7 +39424,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107374210 } }, { @@ -38811,7 +39486,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107374133 } }, { @@ -38877,7 +39553,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107370331 } }, { @@ -38937,7 +39614,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 107367471 } }, { @@ -39267,7 +39945,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107366484 } }, { @@ -39327,7 +40006,8 @@ "theme": "RailwaySignalsARG", "imagery": "osm", "language": "en" - } + }, + "id": 107364400 } }, { @@ -39388,7 +40068,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107358016 } }, { @@ -39448,7 +40129,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 107357608 } }, { @@ -39509,7 +40191,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 107357033 } }, { @@ -39570,7 +40253,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 107357028 } }, { @@ -39632,7 +40316,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107351906 } }, { @@ -39692,7 +40377,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 107349092 } }, { @@ -39755,7 +40441,8 @@ "metadata": { "theme": "buurtnatuur", "theme-creator": "Pieter Vander Vennet" - } + }, + "id": 107348158 } }, { @@ -39816,7 +40503,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107346987 } }, { @@ -39877,7 +40565,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107345763 } }, { @@ -39937,7 +40626,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107342913 } }, { @@ -39997,7 +40687,8 @@ "theme": "RailwaySignalsARG", "imagery": "osm", "language": "en" - } + }, + "id": 107338502 } }, { @@ -40064,7 +40755,8 @@ "deletion": "yes", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107335315 } }, { @@ -40131,7 +40823,8 @@ "deletion": "yes", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107334758 } }, { @@ -40192,7 +40885,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 107334707 } }, { @@ -40253,7 +40947,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 107326187 } }, { @@ -40433,7 +41128,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 107323688 } }, { @@ -40524,7 +41220,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107318880 } }, { @@ -40586,7 +41283,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107312724 } }, { @@ -40647,7 +41345,8 @@ "imagery": "EsriWorldImageryClarity", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 107312030 } }, { @@ -40708,7 +41407,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107283786 } }, { @@ -40770,7 +41470,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 107283257 } }, { @@ -40830,7 +41531,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 107278218 } }, { @@ -40896,7 +41598,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107278133 } }, { @@ -40956,7 +41659,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107276579 } }, { @@ -41016,7 +41720,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 107270901 } }, { @@ -41082,7 +41787,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107269915 } }, { @@ -41143,7 +41849,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107264848 } }, { @@ -41203,7 +41910,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 107262666 } }, { @@ -41264,7 +41972,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 107243866 } }, { @@ -41325,7 +42034,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 107233544 } } ] diff --git a/Docs/Tools/stats/stats.2021-8.json b/Docs/Tools/stats/stats.2021-8.json index 806c4ff9c0..6590f05f4c 100644 --- a/Docs/Tools/stats/stats.2021-8.json +++ b/Docs/Tools/stats/stats.2021-8.json @@ -63,7 +63,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110522977 } }, { @@ -124,7 +125,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 110500377 } }, { @@ -185,7 +187,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110499778 } }, { @@ -251,7 +254,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 110499125 } }, { @@ -312,7 +316,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110483407 } }, { @@ -372,7 +377,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "nl" - } + }, + "id": 110482912 } }, { @@ -433,7 +439,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110479119 } }, { @@ -499,7 +506,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110474449 } }, { @@ -565,7 +573,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110474280 } }, { @@ -626,7 +635,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 110468824 } }, { @@ -692,7 +702,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110466911 } }, { @@ -754,7 +765,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 110465435 } }, { @@ -814,7 +826,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110461689 } }, { @@ -877,7 +890,8 @@ "deletion": "yes", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110461433 } }, { @@ -938,7 +952,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110457054 } }, { @@ -1004,7 +1019,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110451095 } }, { @@ -1070,7 +1086,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110449938 } }, { @@ -1130,7 +1147,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 110448225 } }, { @@ -1191,7 +1209,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "Midgard" - } + }, + "id": 110428059 } }, { @@ -1252,7 +1271,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110420814 } }, { @@ -1313,7 +1333,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110417964 } }, { @@ -1379,7 +1400,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110416754 } }, { @@ -1445,7 +1467,8 @@ "imagery": "CartoDB.Voyager", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 110416126 } }, { @@ -1506,7 +1529,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110413360 } }, { @@ -1572,7 +1596,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110412870 } }, { @@ -1612,7 +1637,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110411836 } }, { @@ -1678,7 +1704,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110411635 } }, { @@ -1744,7 +1771,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110408479 } }, { @@ -1806,7 +1834,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110406920 } }, { @@ -1872,7 +1901,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110406038 } }, { @@ -1934,7 +1964,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110404922 } }, { @@ -1995,7 +2026,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 110404373 } }, { @@ -2056,7 +2088,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 110404088 } }, { @@ -2122,7 +2155,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110402536 } }, { @@ -2183,7 +2217,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110401909 } }, { @@ -2249,7 +2284,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110401090 } }, { @@ -2315,7 +2351,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110396066 } }, { @@ -2376,7 +2413,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110395474 } }, { @@ -2437,7 +2475,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110392599 } }, { @@ -2497,7 +2536,8 @@ "theme": "parkings", "imagery": "osm", "language": "en" - } + }, + "id": 110392546 } }, { @@ -2557,7 +2597,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 110391900 } }, { @@ -2618,7 +2659,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110391628 } }, { @@ -2684,7 +2726,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110388360 } }, { @@ -2744,7 +2787,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 110387566 } }, { @@ -2805,7 +2849,8 @@ "imagery": "AGIV", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 110381615 } }, { @@ -2865,7 +2910,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 110380688 } }, { @@ -2926,7 +2972,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110375071 } }, { @@ -2992,7 +3039,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110374800 } }, { @@ -3053,7 +3101,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110374240 } }, { @@ -3114,7 +3163,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110372483 } }, { @@ -3175,7 +3225,8 @@ "imagery": "AGIV", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 110372196 } }, { @@ -3236,7 +3287,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110371506 } }, { @@ -3315,7 +3367,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110370542 } }, { @@ -3376,7 +3429,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110368630 } }, { @@ -3436,7 +3490,8 @@ "theme": "surveillance", "imagery": "osm", "language": "fr" - } + }, + "id": 110365638 } }, { @@ -3502,7 +3557,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110363347 } }, { @@ -3563,7 +3619,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110361908 } }, { @@ -3625,7 +3682,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110360732 } }, { @@ -3686,7 +3744,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110354638 } }, { @@ -3747,7 +3806,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110351802 } }, { @@ -3828,7 +3888,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 110345728 } }, { @@ -3894,7 +3955,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110341888 } }, { @@ -3956,7 +4018,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110341268 } }, { @@ -3992,7 +4055,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110331166 } }, { @@ -4058,7 +4122,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110328737 } }, { @@ -4119,7 +4184,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110311804 } }, { @@ -4179,7 +4245,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110311324 } }, { @@ -4241,7 +4308,8 @@ "imagery": "osm", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110310132 } }, { @@ -4302,7 +4370,8 @@ "theme": "fritures", "imagery": "osm", "language": "en" - } + }, + "id": 110302017 } }, { @@ -4363,7 +4432,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110295287 } }, { @@ -4423,7 +4493,8 @@ "theme": "parkings", "imagery": "osm", "language": "en" - } + }, + "id": 110291443 } }, { @@ -4483,7 +4554,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110288047 } }, { @@ -4549,7 +4621,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110287012 } }, { @@ -4615,7 +4688,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 110285848 } }, { @@ -4681,7 +4755,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110281843 } }, { @@ -4747,7 +4822,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 110279162 } }, { @@ -4807,7 +4883,8 @@ "theme": "streetlamps", "imagery": "osm", "language": "en" - } + }, + "id": 110278890 } }, { @@ -4873,7 +4950,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110275748 } }, { @@ -4938,7 +5016,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "nl" - } + }, + "id": 110274106 } }, { @@ -5004,7 +5083,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110268266 } }, { @@ -5065,7 +5145,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "Christian Neumann " - } + }, + "id": 110260590 } }, { @@ -5127,7 +5208,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110256028 } }, { @@ -5188,7 +5270,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 110251690 } }, { @@ -5254,7 +5337,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110250614 } }, { @@ -5320,7 +5404,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110249682 } }, { @@ -5381,7 +5466,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110243813 } }, { @@ -5447,7 +5533,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110238612 } }, { @@ -5507,7 +5594,8 @@ "theme": "nature", "imagery": "PNOA-Spain-TMS", "language": "nl" - } + }, + "id": 110236764 } }, { @@ -5573,7 +5661,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110235467 } }, { @@ -5634,7 +5723,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110234434 } }, { @@ -5694,7 +5784,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110232873 } }, { @@ -5760,7 +5851,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110227343 } }, { @@ -5821,7 +5913,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 110224603 } }, { @@ -5883,7 +5976,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110222055 } }, { @@ -5949,7 +6043,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110220790 } }, { @@ -6010,7 +6105,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110219133 } }, { @@ -6076,7 +6172,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 110210088 } }, { @@ -6142,7 +6239,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110205818 } }, { @@ -6203,7 +6301,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110205391 } }, { @@ -6269,7 +6368,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110200544 } }, { @@ -6335,7 +6435,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110197630 } }, { @@ -6395,7 +6496,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 110195980 } }, { @@ -6456,7 +6558,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110195344 } }, { @@ -6517,7 +6620,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110193404 } }, { @@ -6578,7 +6682,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110192320 } }, { @@ -6640,7 +6745,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110192119 } }, { @@ -6701,7 +6807,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110190369 } }, { @@ -6762,7 +6869,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110188312 } }, { @@ -6828,7 +6936,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110185535 } }, { @@ -6894,7 +7003,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110183455 } }, { @@ -6954,7 +7064,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 110178344 } }, { @@ -7015,7 +7126,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110177856 } }, { @@ -7075,7 +7187,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110177596 } }, { @@ -7135,7 +7248,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 110176789 } }, { @@ -7201,7 +7315,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110175590 } }, { @@ -7263,7 +7378,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110168021 } }, { @@ -7324,7 +7440,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110165364 } }, { @@ -7386,7 +7503,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110157524 } }, { @@ -7447,7 +7565,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "Christian Neumann " - } + }, + "id": 110140295 } }, { @@ -7508,7 +7627,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110139566 } }, { @@ -7569,7 +7689,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 110137534 } }, { @@ -7630,7 +7751,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110136424 } }, { @@ -7696,7 +7818,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110130304 } }, { @@ -7757,7 +7880,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110127744 } }, { @@ -7823,7 +7947,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110124100 } }, { @@ -7883,7 +8008,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 110116925 } }, { @@ -7944,7 +8070,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110106301 } }, { @@ -8009,7 +8136,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 110104018 } }, { @@ -8075,7 +8203,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 110103556 } }, { @@ -8136,7 +8265,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110102326 } }, { @@ -8202,7 +8332,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110097992 } }, { @@ -8263,7 +8394,8 @@ "imagery": "Mapbox", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110097643 } }, { @@ -8324,7 +8456,8 @@ "imagery": "Mapbox", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110097482 } }, { @@ -8385,7 +8518,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110096388 } }, { @@ -8446,7 +8580,8 @@ "imagery": "CartoDB.Voyager", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 110095302 } }, { @@ -8525,7 +8660,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110082522 } }, { @@ -8586,7 +8722,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110082444 } }, { @@ -8647,7 +8784,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110079932 } }, { @@ -8709,7 +8847,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 110076005 } }, { @@ -8771,7 +8910,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110075290 } }, { @@ -8832,7 +8972,8 @@ "imagery": "Mapbox", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110071072 } }, { @@ -8893,7 +9034,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110067918 } }, { @@ -8959,7 +9101,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 110067510 } }, { @@ -9025,7 +9168,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110064264 } }, { @@ -9091,7 +9235,8 @@ "imagery": "EsriWorldImagery", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110061565 } }, { @@ -9153,7 +9298,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110061355 } }, { @@ -9220,7 +9366,8 @@ "deletion": "yes", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110057356 } }, { @@ -9287,7 +9434,8 @@ "deletion": "yes", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110057338 } }, { @@ -9348,7 +9496,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110057279 } }, { @@ -9408,7 +9557,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 110056245 } }, { @@ -9469,7 +9619,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "joost schouppe" - } + }, + "id": 110056207 } }, { @@ -9535,7 +9686,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 110051017 } }, { @@ -9597,7 +9749,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110049566 } }, { @@ -9663,7 +9816,8 @@ "imagery": "osm", "language": "es", "theme-creator": "MapComplete" - } + }, + "id": 110047699 } }, { @@ -9745,7 +9899,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110047690 } }, { @@ -9807,7 +9962,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 110046008 } }, { @@ -9868,7 +10024,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 110045351 } }, { @@ -9929,7 +10086,8 @@ "imagery": "UrbISOrtho2020", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110044272 } }, { @@ -9989,7 +10147,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 110043349 } }, { @@ -10050,7 +10209,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110042658 } }, { @@ -10111,7 +10271,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110042555 } }, { @@ -10177,7 +10338,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110039590 } }, { @@ -10243,7 +10405,8 @@ "imagery": "PNOA-Spain-TMS", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110034768 } }, { @@ -10304,7 +10467,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110034454 } }, { @@ -10365,7 +10529,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110028706 } }, { @@ -10431,7 +10596,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 110022345 } }, { @@ -10497,7 +10663,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110022207 } }, { @@ -10563,7 +10730,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110014819 } }, { @@ -10629,7 +10797,8 @@ "imagery": "PNOA-Spain-TMS", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110003826 } }, { @@ -10695,7 +10864,8 @@ "imagery": "PNOA-Spain", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110000187 } }, { @@ -10756,7 +10926,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109999132 } }, { @@ -10822,7 +10993,8 @@ "imagery": "PNOA-Spain-TMS", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109997272 } }, { @@ -10883,7 +11055,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109978806 } }, { @@ -10944,7 +11117,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 109978281 } }, { @@ -11005,7 +11179,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 109972440 } }, { @@ -11066,7 +11241,8 @@ "imagery": "UrbISOrtho2020", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109958309 } }, { @@ -11132,7 +11308,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109948012 } }, { @@ -11193,7 +11370,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 109934175 } }, { @@ -11253,7 +11431,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 109930221 } }, { @@ -11313,7 +11492,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 109929700 } }, { @@ -11373,7 +11553,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 109927240 } }, { @@ -11408,7 +11589,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109918408 } }, { @@ -11469,7 +11651,8 @@ "theme": "surveillance", "imagery": "AGIV", "language": "nl" - } + }, + "id": 109915087 } }, { @@ -11504,7 +11687,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109911262 } }, { @@ -11539,7 +11723,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109911259 } }, { @@ -11605,7 +11790,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109909901 } }, { @@ -11665,7 +11851,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 109901177 } }, { @@ -11700,7 +11887,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109886410 } }, { @@ -11735,7 +11923,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109886276 } }, { @@ -11801,7 +11990,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109883660 } }, { @@ -11861,7 +12051,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 109876629 } }, { @@ -11922,7 +12113,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 109856297 } }, { @@ -11983,7 +12175,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109828109 } }, { @@ -12044,7 +12237,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 109827431 } }, { @@ -12079,7 +12273,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109826364 } }, { @@ -12114,7 +12309,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109826359 } }, { @@ -12149,7 +12345,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109825145 } }, { @@ -12184,7 +12381,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109825101 } }, { @@ -12219,7 +12417,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109824989 } }, { @@ -12254,7 +12453,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109824953 } }, { @@ -12289,7 +12489,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109824387 } }, { @@ -12324,7 +12525,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109824377 } }, { @@ -12359,7 +12561,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109824371 } }, { @@ -12394,7 +12597,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109824152 } }, { @@ -12429,7 +12633,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109824142 } }, { @@ -12464,7 +12669,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109823871 } }, { @@ -12530,7 +12736,8 @@ "imagery": "PNOA-Spain-TMS", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109818176 } }, { @@ -12565,7 +12772,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109815717 } }, { @@ -12600,7 +12808,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109815692 } }, { @@ -12635,7 +12844,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109815615 } }, { @@ -12701,7 +12911,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109811703 } }, { @@ -12736,7 +12947,8 @@ "imagery": "fr.orthohr.2018", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109805079 } }, { @@ -12771,7 +12983,8 @@ "imagery": "fr.orthohr.2018", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109805063 } }, { @@ -12806,7 +13019,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109804844 } }, { @@ -12841,7 +13055,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109804832 } }, { @@ -12876,7 +13091,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109804827 } }, { @@ -12911,7 +13127,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109804745 } }, { @@ -12946,7 +13163,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109804740 } }, { @@ -12981,7 +13199,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109804731 } }, { @@ -13047,7 +13266,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 109802343 } }, { @@ -13113,7 +13333,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109801908 } }, { @@ -13179,7 +13400,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 109794441 } }, { @@ -13214,7 +13436,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109792924 } }, { @@ -13249,7 +13472,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789795 } }, { @@ -13284,7 +13508,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789688 } }, { @@ -13319,7 +13544,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789673 } }, { @@ -13354,7 +13580,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789667 } }, { @@ -13389,7 +13616,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789627 } }, { @@ -13424,7 +13652,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789622 } }, { @@ -13459,7 +13688,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789619 } }, { @@ -13494,7 +13724,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789615 } }, { @@ -13529,7 +13760,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789608 } }, { @@ -13564,7 +13796,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789596 } }, { @@ -13599,7 +13832,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789581 } }, { @@ -13634,7 +13868,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789571 } }, { @@ -13669,7 +13904,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789535 } }, { @@ -13704,7 +13940,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789471 } }, { @@ -13739,7 +13976,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789291 } }, { @@ -13774,7 +14012,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789290 } }, { @@ -13809,7 +14048,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789281 } }, { @@ -13844,7 +14084,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789262 } }, { @@ -13879,7 +14120,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789257 } }, { @@ -13914,7 +14156,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789252 } }, { @@ -13949,7 +14192,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789246 } }, { @@ -13984,7 +14228,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789241 } }, { @@ -14019,7 +14264,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789235 } }, { @@ -14054,7 +14300,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789220 } }, { @@ -14089,7 +14336,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789213 } }, { @@ -14124,7 +14372,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789199 } }, { @@ -14159,7 +14408,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109789089 } }, { @@ -14194,7 +14444,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788897 } }, { @@ -14229,7 +14480,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788836 } }, { @@ -14264,7 +14516,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788792 } }, { @@ -14299,7 +14552,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788625 } }, { @@ -14334,7 +14588,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788616 } }, { @@ -14369,7 +14624,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788610 } }, { @@ -14404,7 +14660,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788587 } }, { @@ -14439,7 +14696,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788559 } }, { @@ -14474,7 +14732,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788554 } }, { @@ -14509,7 +14768,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788546 } }, { @@ -14544,7 +14804,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788543 } }, { @@ -14579,7 +14840,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788533 } }, { @@ -14614,7 +14876,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788515 } }, { @@ -14649,7 +14912,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109788502 } }, { @@ -14710,7 +14974,8 @@ "imagery": "UrbISOrtho2020", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 109775936 } }, { @@ -14771,7 +15036,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109775800 } }, { @@ -14831,7 +15097,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 109775676 } }, { @@ -14892,7 +15159,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109769322 } }, { @@ -14954,7 +15222,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109762842 } }, { @@ -15015,7 +15284,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109760777 } }, { @@ -15077,7 +15347,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109748535 } }, { @@ -15138,7 +15409,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109741000 } }, { @@ -15203,7 +15475,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 109737824 } }, { @@ -15238,7 +15511,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109733552 } }, { @@ -15273,7 +15547,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109733548 } }, { @@ -15308,7 +15583,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109732661 } }, { @@ -15370,7 +15646,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 109731040 } }, { @@ -15432,7 +15709,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109715393 } }, { @@ -15493,7 +15771,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 109715034 } }, { @@ -15555,7 +15834,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 109714688 } }, { @@ -15621,7 +15901,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 109713660 } }, { @@ -15687,7 +15968,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109708815 } }, { @@ -15749,7 +16031,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109707687 } }, { @@ -15810,7 +16093,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109705960 } }, { @@ -15870,7 +16154,8 @@ "theme": "1roadAlllanes", "imagery": "osm", "language": "es" - } + }, + "id": 109698024 } }, { @@ -15936,7 +16221,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109695915 } }, { @@ -16018,7 +16304,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109691592 } }, { @@ -16083,7 +16370,8 @@ "theme": "boomgaarden", "imagery": "osm", "language": "nl" - } + }, + "id": 109689884 } }, { @@ -16149,7 +16437,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109684988 } }, { @@ -16209,7 +16498,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 109684544 } }, { @@ -16275,7 +16565,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109682330 } }, { @@ -16336,7 +16627,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 109681987 } }, { @@ -16397,7 +16689,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete, joost schouppe" - } + }, + "id": 109681368 } }, { @@ -16458,7 +16751,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109681253 } }, { @@ -16519,7 +16813,8 @@ "imagery": "PNOA-Spain-TMS", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109681051 } }, { @@ -16584,7 +16879,8 @@ "theme": "boomgaarden", "imagery": "osm", "language": "nl" - } + }, + "id": 109680715 } }, { @@ -16645,7 +16941,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109679404 } }, { @@ -16711,7 +17008,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109672940 } }, { @@ -16777,7 +17075,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109670676 } }, { @@ -16838,7 +17137,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109670624 } }, { @@ -16904,7 +17204,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109668785 } }, { @@ -16970,7 +17271,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109666645 } }, { @@ -17036,7 +17338,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109666479 } }, { @@ -17097,7 +17400,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109656492 } }, { @@ -17132,7 +17436,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650693 } }, { @@ -17167,7 +17472,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650689 } }, { @@ -17202,7 +17508,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650687 } }, { @@ -17237,7 +17544,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650677 } }, { @@ -17272,7 +17580,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650672 } }, { @@ -17307,7 +17616,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650661 } }, { @@ -17342,7 +17652,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650656 } }, { @@ -17377,7 +17688,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650653 } }, { @@ -17412,7 +17724,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650646 } }, { @@ -17447,7 +17760,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650642 } }, { @@ -17482,7 +17796,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650598 } }, { @@ -17517,7 +17832,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650503 } }, { @@ -17552,7 +17868,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650498 } }, { @@ -17587,7 +17904,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650466 } }, { @@ -17622,7 +17940,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650463 } }, { @@ -17657,7 +17976,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650442 } }, { @@ -17692,7 +18012,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650438 } }, { @@ -17727,7 +18048,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650436 } }, { @@ -17762,7 +18084,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650429 } }, { @@ -17797,7 +18120,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650420 } }, { @@ -17832,7 +18156,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650408 } }, { @@ -17867,7 +18192,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650398 } }, { @@ -17902,7 +18228,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650378 } }, { @@ -17937,7 +18264,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650366 } }, { @@ -17972,7 +18300,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650362 } }, { @@ -18007,7 +18336,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650332 } }, { @@ -18042,7 +18372,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650330 } }, { @@ -18077,7 +18408,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650328 } }, { @@ -18112,7 +18444,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650327 } }, { @@ -18147,7 +18480,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650322 } }, { @@ -18182,7 +18516,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650312 } }, { @@ -18217,7 +18552,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650307 } }, { @@ -18252,7 +18588,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650259 } }, { @@ -18287,7 +18624,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650220 } }, { @@ -18322,7 +18660,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650206 } }, { @@ -18357,7 +18696,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650185 } }, { @@ -18392,7 +18732,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650121 } }, { @@ -18427,7 +18768,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650070 } }, { @@ -18462,7 +18804,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109650018 } }, { @@ -18497,7 +18840,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109649989 } }, { @@ -18532,7 +18876,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109649987 } }, { @@ -18567,7 +18912,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109649955 } }, { @@ -18602,7 +18948,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109649950 } }, { @@ -18637,7 +18984,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109649943 } }, { @@ -18672,7 +19020,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109649913 } }, { @@ -18707,7 +19056,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109649864 } }, { @@ -18742,7 +19092,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109649678 } }, { @@ -18777,7 +19128,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109649675 } }, { @@ -18812,7 +19164,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109647929 } }, { @@ -18847,7 +19200,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109647846 } }, { @@ -18913,7 +19267,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109647022 } }, { @@ -18948,7 +19303,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109644803 } }, { @@ -18983,7 +19339,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109643459 } }, { @@ -19018,7 +19375,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109642972 } }, { @@ -19053,7 +19411,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109642934 } }, { @@ -19088,7 +19447,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109642780 } }, { @@ -19123,7 +19483,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109642775 } }, { @@ -19158,7 +19519,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641788 } }, { @@ -19193,7 +19555,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641773 } }, { @@ -19228,7 +19591,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641733 } }, { @@ -19263,7 +19627,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641628 } }, { @@ -19298,7 +19663,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641622 } }, { @@ -19333,7 +19699,8 @@ "imagery": "fr.ign.bdortho", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641467 } }, { @@ -19368,7 +19735,8 @@ "imagery": "fr.ign.bdortho", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641186 } }, { @@ -19403,7 +19771,8 @@ "imagery": "fr.ign.bdortho", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641165 } }, { @@ -19438,7 +19807,8 @@ "imagery": "fr.ign.bdortho", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641155 } }, { @@ -19473,7 +19843,8 @@ "imagery": "fr.ign.bdortho", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641149 } }, { @@ -19508,7 +19879,8 @@ "imagery": "fr.ign.bdortho", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641143 } }, { @@ -19543,7 +19915,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641075 } }, { @@ -19578,7 +19951,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641006 } }, { @@ -19613,7 +19987,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109641001 } }, { @@ -19648,7 +20023,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640914 } }, { @@ -19683,7 +20059,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640902 } }, { @@ -19718,7 +20095,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640850 } }, { @@ -19753,7 +20131,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640840 } }, { @@ -19788,7 +20167,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640833 } }, { @@ -19823,7 +20203,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640820 } }, { @@ -19858,7 +20239,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640809 } }, { @@ -19893,7 +20275,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640791 } }, { @@ -19928,7 +20311,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640782 } }, { @@ -19963,7 +20347,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640763 } }, { @@ -19998,7 +20383,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640754 } }, { @@ -20033,7 +20419,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640727 } }, { @@ -20068,7 +20455,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640573 } }, { @@ -20103,7 +20491,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109640493 } }, { @@ -20169,7 +20558,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109640119 } }, { @@ -20204,7 +20594,8 @@ "imagery": "CartoDB.PositronNoLabels", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109638329 } }, { @@ -20239,7 +20630,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109638304 } }, { @@ -20274,7 +20666,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109638294 } }, { @@ -20309,7 +20702,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109638293 } }, { @@ -20344,7 +20738,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109638246 } }, { @@ -20379,7 +20774,8 @@ "imagery": "osmfr-occitan", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109638152 } }, { @@ -20414,7 +20810,8 @@ "imagery": "osmfr-occitan", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109638149 } }, { @@ -20449,7 +20846,8 @@ "imagery": "osmfr-occitan", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109638148 } }, { @@ -20484,7 +20882,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109638019 } }, { @@ -20550,7 +20949,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109634600 } }, { @@ -20585,7 +20985,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109631449 } }, { @@ -20646,7 +21047,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 109624444 } }, { @@ -20707,7 +21109,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109621983 } }, { @@ -20742,7 +21145,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109617139 } }, { @@ -20802,7 +21206,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 109616631 } }, { @@ -20868,7 +21273,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109602112 } }, { @@ -20929,7 +21335,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109600592 } }, { @@ -20995,7 +21402,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109587520 } }, { @@ -21061,7 +21469,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109586305 } }, { @@ -21127,7 +21536,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109576148 } }, { @@ -21192,7 +21602,8 @@ "theme": "boomgaarden", "imagery": "osm", "language": "nl" - } + }, + "id": 109574626 } }, { @@ -21227,7 +21638,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109573845 } }, { @@ -21262,7 +21674,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109573780 } }, { @@ -21297,7 +21710,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109573653 } }, { @@ -21357,7 +21771,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 109573146 } }, { @@ -21417,7 +21832,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 109570905 } }, { @@ -21478,7 +21894,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109565139 } }, { @@ -21544,7 +21961,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109555175 } }, { @@ -21605,7 +22023,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 109552872 } }, { @@ -21803,7 +22222,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 109534553 } }, { @@ -21837,7 +22257,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 109534467 } }, { @@ -22079,7 +22500,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 109533772 } }, { @@ -22145,7 +22567,8 @@ "imagery": "EsriWorldImagery", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109532162 } }, { @@ -22180,7 +22603,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109524702 } }, { @@ -22215,7 +22639,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109524517 } }, { @@ -22250,7 +22675,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109524498 } }, { @@ -22285,7 +22711,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109524475 } }, { @@ -22320,7 +22747,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109517519 } }, { @@ -22355,7 +22783,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109510058 } }, { @@ -22415,7 +22844,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "fr" - } + }, + "id": 109505004 } }, { @@ -22476,7 +22906,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109499010 } }, { @@ -22537,7 +22968,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109483365 } }, { @@ -22598,7 +23030,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 109480331 } }, { @@ -22659,7 +23092,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 109469599 } }, { @@ -22720,7 +23154,8 @@ "imagery": "osm", "language": "ru", "theme-creator": "Florian Edelmann" - } + }, + "id": 109468259 } }, { @@ -22781,7 +23216,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109464033 } }, { @@ -22847,7 +23283,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109456292 } }, { @@ -22913,7 +23350,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109455777 } }, { @@ -22979,7 +23417,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109455601 } }, { @@ -23045,7 +23484,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 109453573 } }, { @@ -23106,7 +23546,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109451043 } }, { @@ -23172,7 +23613,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109443038 } }, { @@ -23233,7 +23675,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 109442107 } }, { @@ -23268,7 +23711,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109419770 } }, { @@ -23303,7 +23747,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109419762 } }, { @@ -23369,7 +23814,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 109414938 } }, { @@ -23431,7 +23877,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109413746 } }, { @@ -23497,7 +23944,8 @@ "imagery": "osm", "language": "ru", "theme-creator": "Florian Edelmann" - } + }, + "id": 109408644 } }, { @@ -23557,7 +24005,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109404059 } }, { @@ -23617,7 +24066,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 109402241 } }, { @@ -23678,7 +24128,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109399976 } }, { @@ -23739,7 +24190,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109396091 } }, { @@ -23805,7 +24257,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109393990 } }, { @@ -23871,7 +24324,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109393464 } }, { @@ -23937,7 +24391,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109385823 } }, { @@ -23998,7 +24453,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109379519 } }, { @@ -24060,7 +24516,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109364340 } }, { @@ -24121,7 +24578,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 109360825 } }, { @@ -24155,7 +24613,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109360393 } }, { @@ -24190,7 +24649,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109360380 } }, { @@ -24225,7 +24685,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109360378 } }, { @@ -24260,7 +24721,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109360358 } }, { @@ -24295,7 +24757,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109360353 } }, { @@ -24330,7 +24793,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109359928 } }, { @@ -24365,7 +24829,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109359902 } }, { @@ -24400,7 +24865,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109359900 } }, { @@ -24435,7 +24901,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109359899 } }, { @@ -24470,7 +24937,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109359895 } }, { @@ -24505,7 +24973,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109359809 } }, { @@ -24566,7 +25035,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109357280 } }, { @@ -24627,7 +25097,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109354762 } }, { @@ -24688,7 +25159,8 @@ "imagery": "osm", "language": "ru", "theme-creator": "Florian Edelmann" - } + }, + "id": 109351604 } }, { @@ -24749,7 +25221,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 109348467 } }, { @@ -24809,7 +25282,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109344961 } }, { @@ -24869,7 +25343,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 109343473 } }, { @@ -24929,7 +25404,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 109343368 } }, { @@ -24990,7 +25466,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109340605 } }, { @@ -25051,7 +25528,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 109334273 } }, { @@ -25113,7 +25591,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 109331331 } }, { @@ -25175,7 +25654,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109326660 } }, { @@ -25236,7 +25716,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 109323074 } }, { @@ -25297,7 +25778,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109322899 } }, { @@ -25358,7 +25840,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109322556 } }, { @@ -25419,7 +25902,8 @@ "imagery": "AGIV", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109309764 } }, { @@ -25479,7 +25963,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109309188 } }, { @@ -25513,7 +25998,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109309162 } }, { @@ -25547,7 +26033,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109309156 } }, { @@ -25581,7 +26068,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109309155 } }, { @@ -25615,7 +26103,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109309152 } }, { @@ -25649,7 +26138,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109309146 } }, { @@ -25709,7 +26199,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109309143 } }, { @@ -25743,7 +26234,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109308576 } }, { @@ -25777,7 +26269,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109308541 } }, { @@ -25811,7 +26304,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109308492 } }, { @@ -25845,7 +26339,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109308479 } }, { @@ -25879,7 +26374,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109308239 } }, { @@ -25913,7 +26409,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109308234 } }, { @@ -25947,7 +26444,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109308200 } }, { @@ -25981,7 +26479,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109308101 } }, { @@ -26015,7 +26514,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109308091 } }, { @@ -26050,7 +26550,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109308012 } }, { @@ -26085,7 +26586,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 109307979 } }, { @@ -26145,7 +26647,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "en" - } + }, + "id": 109307647 } }, { @@ -26180,7 +26683,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109294761 } }, { @@ -26215,7 +26719,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109294748 } }, { @@ -26250,7 +26755,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109294741 } }, { @@ -26311,7 +26817,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 109284325 } }, { @@ -26372,7 +26879,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 109283794 } }, { @@ -26438,7 +26946,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 109265918 } }, { @@ -26500,7 +27009,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 109260914 } }, { @@ -26561,7 +27071,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 109248444 } }, { @@ -26621,7 +27132,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "nl" - } + }, + "id": 109245495 } }, { @@ -26682,7 +27194,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 109241800 } }, { @@ -26743,7 +27256,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 109224067 } }, { @@ -26804,7 +27318,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 109220346 } }, { @@ -26839,7 +27354,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109217920 } }, { @@ -26874,7 +27390,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109217705 } }, { @@ -26909,7 +27426,8 @@ "imagery": "osmfr", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109217700 } }, { @@ -26944,7 +27462,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216480 } }, { @@ -26979,7 +27498,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216410 } }, { @@ -27014,7 +27534,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216405 } }, { @@ -27049,7 +27570,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216402 } }, { @@ -27084,7 +27606,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216383 } }, { @@ -27119,7 +27642,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216372 } }, { @@ -27154,7 +27678,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216345 } }, { @@ -27215,7 +27740,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 109216339 } }, { @@ -27250,7 +27776,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216290 } }, { @@ -27285,7 +27812,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216277 } }, { @@ -27320,7 +27848,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216270 } }, { @@ -27355,7 +27884,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216263 } }, { @@ -27390,7 +27920,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216254 } }, { @@ -27451,7 +27982,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109216183 } }, { @@ -27512,7 +28044,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109209899 } }, { @@ -27547,7 +28080,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109209833 } }, { @@ -27608,7 +28142,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109204092 } }, { @@ -27668,7 +28203,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109200627 } }, { @@ -27729,7 +28265,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 109190875 } }, { @@ -27790,7 +28327,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109182555 } }, { @@ -27851,7 +28389,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 109165544 } }, { @@ -27912,7 +28451,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109163865 } }, { @@ -27973,7 +28513,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109162810 } }, { @@ -28035,7 +28576,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109160449 } }, { @@ -28095,7 +28637,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "nl" - } + }, + "id": 109153910 } }, { @@ -28157,7 +28700,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109147562 } }, { @@ -28218,7 +28762,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109147248 } }, { @@ -28279,7 +28824,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109143500 } }, { @@ -28341,7 +28887,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109142066 } }, { @@ -28403,7 +28950,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 109141902 } }, { @@ -28469,7 +29017,8 @@ "imagery": "CartoDB.Voyager", "language": "fr", "theme-creator": "MapComplete" - } + }, + "id": 109136266 } }, { @@ -28590,7 +29139,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 109135509 } }, { @@ -28651,7 +29201,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 109125644 } }, { @@ -28711,7 +29262,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109116613 } }, { @@ -28771,7 +29323,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "en" - } + }, + "id": 109116513 } }, { @@ -28832,7 +29385,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109115418 } }, { @@ -28893,7 +29447,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109110460 } }, { @@ -29663,7 +30218,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 109109528 } }, { @@ -29723,7 +30279,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109109424 } }, { @@ -29783,7 +30340,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109109420 } }, { @@ -29817,7 +30375,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109109418 } }, { @@ -29877,7 +30436,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109109376 } }, { @@ -29937,7 +30497,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 109109209 } }, { @@ -29997,7 +30558,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "en" - } + }, + "id": 109096769 } }, { @@ -30063,7 +30625,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 109092220 } }, { @@ -30130,7 +30693,8 @@ "imagery": "AGIV", "language": "nl", "theme-creator": "Midgard" - } + }, + "id": 109082473 } }, { @@ -30196,7 +30760,8 @@ "theme": "cycle_infra", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 109081577 } }, { @@ -30262,7 +30827,8 @@ "theme": "cycle_infra", "imagery": "AGIV10cm", "language": "nl" - } + }, + "id": 109081330 } }, { @@ -30323,7 +30889,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109067333 } }, { @@ -30385,7 +30952,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109056486 } }, { @@ -30446,7 +31014,8 @@ "imagery": "UrbISOrtho2019", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109054243 } }, { @@ -30507,7 +31076,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109054185 } }, { @@ -30568,7 +31138,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109053407 } }, { @@ -30629,7 +31200,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 109046140 } }, { @@ -30689,7 +31261,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 109044243 } }, { @@ -30750,7 +31323,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109037200 } }, { @@ -30811,7 +31385,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109026047 } }, { @@ -30871,7 +31446,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 109024703 } }, { @@ -30932,7 +31508,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 109018389 } }, { @@ -30993,7 +31570,8 @@ "imagery": "osm", "language": "fr", "theme-creator": "Christian Neumann " - } + }, + "id": 109016197 } }, { @@ -31055,7 +31633,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108990193 } }, { @@ -31116,7 +31695,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108983488 } }, { @@ -31177,7 +31757,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Christian Neumann " - } + }, + "id": 108978595 } }, { @@ -31238,7 +31819,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 108972902 } }, { @@ -31300,7 +31882,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Florian Edelmann" - } + }, + "id": 108970609 } }, { @@ -31366,7 +31949,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 108970381 } }, { @@ -31426,7 +32010,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 108969867 } }, { @@ -31486,7 +32071,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 108969694 } }, { @@ -31546,7 +32132,8 @@ "theme": "crossingtime", "imagery": "osm", "language": "es" - } + }, + "id": 108968481 } }, { @@ -31608,7 +32195,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108964821 } }, { @@ -31668,7 +32256,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 108962112 } }, { @@ -31729,7 +32318,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 108961087 } } ] diff --git a/Docs/Tools/stats/stats.2021-9.json b/Docs/Tools/stats/stats.2021-9.json index 75b309b265..31f8f60f48 100644 --- a/Docs/Tools/stats/stats.2021-9.json +++ b/Docs/Tools/stats/stats.2021-9.json @@ -58,7 +58,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111932288 } }, { @@ -119,7 +120,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111926055 } }, { @@ -180,7 +182,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111923846 } }, { @@ -240,7 +243,8 @@ "theme": "hackerspaces", "imagery": "osm", "language": "en" - } + }, + "id": 111922919 } }, { @@ -306,7 +310,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 111922240 } }, { @@ -367,7 +372,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111915607 } }, { @@ -433,7 +439,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 111915525 } }, { @@ -493,7 +500,8 @@ "theme": "parkings", "imagery": "osm", "language": "nl" - } + }, + "id": 111915367 } }, { @@ -559,7 +567,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111914966 } }, { @@ -620,7 +629,8 @@ "imagery": "osm", "language": "ca", "theme-creator": "MapComplete" - } + }, + "id": 111910449 } }, { @@ -681,7 +691,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111904781 } }, { @@ -747,7 +758,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 111902843 } }, { @@ -813,7 +825,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 111899797 } }, { @@ -873,7 +886,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 111898754 } }, { @@ -939,7 +953,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 111898556 } }, { @@ -1001,7 +1016,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111884103 } }, { @@ -1062,7 +1078,8 @@ "theme": "observation_towers", "imagery": "osm", "language": "nl" - } + }, + "id": 111879822 } }, { @@ -1128,7 +1145,8 @@ "imagery": "CartoDB.Voyager", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 111878737 } }, { @@ -1190,7 +1208,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111877207 } }, { @@ -1251,7 +1270,8 @@ "theme": "food", "imagery": "osm", "language": "nl" - } + }, + "id": 111875924 } }, { @@ -1312,7 +1332,8 @@ "imagery": "Stamen.TonerLite", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 111873523 } }, { @@ -1373,7 +1394,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111871547 } }, { @@ -1439,7 +1461,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111841662 } }, { @@ -1500,7 +1523,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111838187 } }, { @@ -1561,7 +1585,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 111824465 } }, { @@ -1640,7 +1665,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111823129 } }, { @@ -1701,7 +1727,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111820434 } }, { @@ -1762,7 +1789,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111820388 } }, { @@ -1823,7 +1851,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111817437 } }, { @@ -1884,7 +1913,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111806492 } }, { @@ -1945,7 +1975,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111805436 } }, { @@ -2007,7 +2038,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 111802776 } }, { @@ -2068,7 +2100,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 111793926 } }, { @@ -2129,7 +2162,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111783442 } }, { @@ -2190,7 +2224,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 111770813 } }, { @@ -2256,7 +2291,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111765464 } }, { @@ -2316,7 +2352,8 @@ "theme": "pingpong", "imagery": "osm", "language": "nl" - } + }, + "id": 111762075 } }, { @@ -2377,7 +2414,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111760418 } }, { @@ -2437,7 +2475,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 111760411 } }, { @@ -2497,7 +2536,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 111754902 } }, { @@ -2563,7 +2603,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111745566 } }, { @@ -2629,7 +2670,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111745072 } }, { @@ -2695,7 +2737,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111742325 } }, { @@ -2756,7 +2799,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111740952 } }, { @@ -2822,7 +2866,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111740042 } }, { @@ -2883,7 +2928,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111735178 } }, { @@ -2943,7 +2989,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 111731202 } }, { @@ -3004,7 +3051,8 @@ "imagery": "osm", "language": "zh_Hant", "theme-creator": "MapComplete" - } + }, + "id": 111723291 } }, { @@ -3040,7 +3088,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111708503 } }, { @@ -3102,7 +3151,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111708429 } }, { @@ -3163,7 +3213,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111700174 } }, { @@ -3225,7 +3276,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" - } + }, + "id": 111699476 } }, { @@ -3287,7 +3339,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111690076 } }, { @@ -3348,7 +3401,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 111686997 } }, { @@ -3408,7 +3462,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 111686390 } }, { @@ -3469,7 +3524,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111684215 } }, { @@ -3530,7 +3586,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 111683915 } }, { @@ -3591,7 +3648,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 111683232 } }, { @@ -3651,7 +3709,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 111682968 } }, { @@ -3711,7 +3770,8 @@ "theme": "waste_basket", "imagery": "osm", "language": "en" - } + }, + "id": 111682920 } }, { @@ -3771,7 +3831,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 111682191 } }, { @@ -3832,7 +3893,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 111681971 } }, { @@ -3893,7 +3955,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111667829 } }, { @@ -3954,7 +4017,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 111667475 } }, { @@ -4015,7 +4079,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111661888 } }, { @@ -4076,7 +4141,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 111661657 } }, { @@ -4142,7 +4208,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111661403 } }, { @@ -4203,7 +4270,8 @@ "imagery": "Stamen.TonerLite", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 111658787 } }, { @@ -4264,7 +4332,8 @@ "imagery": "osm", "language": "en", "theme-creator": "joost schouppe" - } + }, + "id": 111653531 } }, { @@ -4364,7 +4433,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111649505 } }, { @@ -4424,7 +4494,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 111646756 } }, { @@ -4485,7 +4556,8 @@ "imagery": "Stamen.TonerLite", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 111643984 } }, { @@ -4545,7 +4617,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 111643468 } }, { @@ -4607,7 +4680,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111641876 } }, { @@ -4673,7 +4747,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111637283 } }, { @@ -4734,7 +4809,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111633229 } }, { @@ -4795,7 +4871,8 @@ "imagery": "osm", "language": "zh_Hant", "theme-creator": "MapComplete" - } + }, + "id": 111629953 } }, { @@ -4856,7 +4933,8 @@ "imagery": "Stamen.TonerLite", "language": "nl", "theme-creator": "Seppe Santens" - } + }, + "id": 111616253 } }, { @@ -4918,7 +4996,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" - } + }, + "id": 111616148 } }, { @@ -4953,7 +5032,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111610447 } }, { @@ -4988,7 +5068,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111610440 } }, { @@ -5023,7 +5104,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111610436 } }, { @@ -5084,7 +5166,8 @@ "theme": "food", "imagery": "osm", "language": "en" - } + }, + "id": 111610177 } }, { @@ -5119,7 +5202,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111610109 } }, { @@ -5154,7 +5238,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111610106 } }, { @@ -5216,7 +5301,8 @@ "imagery": "osm", "language": "zh_Hant", "theme-creator": "MapComplete" - } + }, + "id": 111602335 } }, { @@ -5295,7 +5381,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111598470 } }, { @@ -5357,7 +5444,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111593064 } }, { @@ -5417,7 +5505,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 111592346 } }, { @@ -5478,7 +5567,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111590326 } }, { @@ -5540,7 +5630,8 @@ "imagery": "osm", "language": "zh_Hant", "theme-creator": "MapComplete" - } + }, + "id": 111586791 } }, { @@ -5601,7 +5692,8 @@ "theme": "nature", "imagery": "osm", "language": "nl" - } + }, + "id": 111586701 } }, { @@ -5662,7 +5754,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111578266 } }, { @@ -5724,7 +5817,8 @@ "imagery": "osm", "language": "zh_Hant", "theme-creator": "MapComplete" - } + }, + "id": 111567998 } }, { @@ -5785,7 +5879,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111566313 } }, { @@ -5846,7 +5941,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111552463 } }, { @@ -5906,7 +6002,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 111551829 } }, { @@ -5966,7 +6063,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 111544245 } }, { @@ -6027,7 +6125,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111539451 } }, { @@ -6088,7 +6187,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111533589 } }, { @@ -6150,7 +6250,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111520288 } }, { @@ -6211,7 +6312,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 111518050 } }, { @@ -6277,7 +6379,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111513975 } }, { @@ -6338,7 +6441,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111513314 } }, { @@ -6400,7 +6504,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111509175 } }, { @@ -6462,7 +6567,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111505223 } }, { @@ -6523,7 +6629,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111494589 } }, { @@ -6559,7 +6666,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 111493338 } }, { @@ -6594,7 +6702,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111492969 } }, { @@ -6655,7 +6764,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111490211 } }, { @@ -6716,7 +6826,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111488940 } }, { @@ -6776,7 +6887,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 111470131 } }, { @@ -6836,7 +6948,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 111463022 } }, { @@ -6872,7 +6985,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 111462801 } }, { @@ -6933,7 +7047,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111459525 } }, { @@ -6993,7 +7108,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 111453809 } }, { @@ -7054,7 +7170,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111453185 } }, { @@ -7115,7 +7232,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111449737 } }, { @@ -7175,7 +7293,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 111449699 } }, { @@ -7235,7 +7354,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 111448328 } }, { @@ -7296,7 +7416,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111448079 } }, { @@ -7357,7 +7478,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111447671 } }, { @@ -7418,7 +7540,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111447194 } }, { @@ -7479,7 +7602,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111440442 } }, { @@ -7545,7 +7669,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111420509 } }, { @@ -7605,7 +7730,8 @@ "theme": "food", "imagery": "osm", "language": "en" - } + }, + "id": 111416193 } }, { @@ -7666,7 +7792,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 111412568 } }, { @@ -7727,7 +7854,8 @@ "theme": "fritures", "imagery": "osm", "language": "en" - } + }, + "id": 111407284 } }, { @@ -7787,7 +7915,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 111404954 } }, { @@ -7848,7 +7977,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111404648 } }, { @@ -7908,7 +8038,8 @@ "theme": "surveillance", "imagery": "osm", "language": "fr" - } + }, + "id": 111404567 } }, { @@ -7974,7 +8105,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 111402618 } }, { @@ -8034,7 +8166,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 111402136 } }, { @@ -8099,7 +8232,8 @@ "theme": "cafes_and_pubs", "imagery": "osm", "language": "en" - } + }, + "id": 111401625 } }, { @@ -8165,7 +8299,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111400987 } }, { @@ -8231,7 +8366,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111400257 } }, { @@ -8297,7 +8433,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111398954 } }, { @@ -8357,7 +8494,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 111390901 } }, { @@ -8418,7 +8556,8 @@ "imagery": "UrbISOrtho2020", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111390442 } }, { @@ -8484,7 +8623,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111389713 } }, { @@ -8549,7 +8689,8 @@ "theme": "food", "imagery": "osm", "language": "en" - } + }, + "id": 111389141 } }, { @@ -8610,7 +8751,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111387954 } }, { @@ -8670,7 +8812,8 @@ "theme": "food", "imagery": "osm", "language": "en" - } + }, + "id": 111386359 } }, { @@ -8730,7 +8873,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 111385266 } }, { @@ -8790,7 +8934,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 111385238 } }, { @@ -8856,7 +9001,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111383281 } }, { @@ -8916,7 +9062,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 111377814 } }, { @@ -8976,7 +9123,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 111375576 } }, { @@ -9037,7 +9185,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111375481 } }, { @@ -9099,7 +9248,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111373023 } }, { @@ -9160,7 +9310,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111370272 } }, { @@ -9226,7 +9377,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111369675 } }, { @@ -9291,7 +9443,8 @@ "theme": "cafes_and_pubs", "imagery": "osm", "language": "en" - } + }, + "id": 111368378 } }, { @@ -9351,7 +9504,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 111368251 } }, { @@ -9412,7 +9566,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111348820 } }, { @@ -9472,7 +9627,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 111346420 } }, { @@ -9533,7 +9689,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111344234 } }, { @@ -9593,7 +9750,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "nl" - } + }, + "id": 111342876 } }, { @@ -9653,7 +9811,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 111342467 } }, { @@ -9713,7 +9872,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 111339749 } }, { @@ -9774,7 +9934,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111339700 } }, { @@ -9834,7 +9995,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 111338740 } }, { @@ -9895,7 +10057,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111333976 } }, { @@ -9956,7 +10119,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111333922 } }, { @@ -10022,7 +10186,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111333368 } }, { @@ -10087,7 +10252,8 @@ "theme": "boomgaarden", "imagery": "osm", "language": "nl" - } + }, + "id": 111325851 } }, { @@ -10148,7 +10314,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111322697 } }, { @@ -10209,7 +10376,8 @@ "imagery": "Stamen.TonerLite", "language": "en", "theme-creator": "Seppe Santens" - } + }, + "id": 111321516 } }, { @@ -10271,7 +10439,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 111320770 } }, { @@ -10332,7 +10501,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111319839 } }, { @@ -10392,7 +10562,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 111314842 } }, { @@ -10454,7 +10625,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111314701 } }, { @@ -10514,7 +10686,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 111313536 } }, { @@ -10574,7 +10747,8 @@ "theme": "parkings", "imagery": "osm", "language": "nl" - } + }, + "id": 111294697 } }, { @@ -10635,7 +10809,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111294660 } }, { @@ -10695,7 +10870,8 @@ "theme": "cafes_and_pubs", "imagery": "osm", "language": "nl" - } + }, + "id": 111294637 } }, { @@ -10756,7 +10932,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111294545 } }, { @@ -10817,7 +10994,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111294320 } }, { @@ -10877,7 +11055,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 111294300 } }, { @@ -10937,7 +11116,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 111294140 } }, { @@ -10999,7 +11179,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111286975 } }, { @@ -11060,7 +11241,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 111260346 } }, { @@ -11126,7 +11308,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111259977 } }, { @@ -11187,7 +11370,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 111250813 } }, { @@ -11248,7 +11432,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111242072 } }, { @@ -11309,7 +11494,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111235562 } }, { @@ -11371,7 +11557,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 111226938 } }, { @@ -11432,7 +11619,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111218166 } }, { @@ -11492,7 +11680,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 111217068 } }, { @@ -11553,7 +11742,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111212256 } }, { @@ -11615,7 +11805,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111196945 } }, { @@ -11676,7 +11867,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111196543 } }, { @@ -11738,7 +11930,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111193678 } }, { @@ -11800,7 +11993,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111193497 } }, { @@ -11861,7 +12055,8 @@ "theme": "food", "imagery": "osm", "language": "nl" - } + }, + "id": 111191715 } }, { @@ -11922,7 +12117,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111190227 } }, { @@ -11983,7 +12179,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111170420 } }, { @@ -12043,7 +12240,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 111170319 } }, { @@ -12104,7 +12302,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111170254 } }, { @@ -12164,7 +12363,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 111168885 } }, { @@ -12225,7 +12425,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 111163792 } }, { @@ -12286,7 +12487,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "nl" - } + }, + "id": 111160670 } }, { @@ -12348,7 +12550,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111147907 } }, { @@ -12408,7 +12611,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "EsriWorldImageryClarity", "language": "es" - } + }, + "id": 111146318 } }, { @@ -12488,7 +12692,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111142872 } }, { @@ -12554,7 +12759,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111137609 } }, { @@ -12590,7 +12796,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 111136328 } }, { @@ -12652,7 +12859,8 @@ "imagery": "osm", "language": "zh_Hant", "theme-creator": "MapComplete" - } + }, + "id": 111135802 } }, { @@ -12714,7 +12922,8 @@ "imagery": "osm", "language": "zh_Hant", "theme-creator": "MapComplete" - } + }, + "id": 111135600 } }, { @@ -12775,7 +12984,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111134364 } }, { @@ -12835,7 +13045,8 @@ "theme": "sport_pitches", "imagery": "osm", "language": "en" - } + }, + "id": 111117005 } }, { @@ -12896,7 +13107,8 @@ "theme": "parkings", "imagery": "osm", "language": "en" - } + }, + "id": 111111029 } }, { @@ -12958,7 +13170,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 111110599 } }, { @@ -13024,7 +13237,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111103404 } }, { @@ -13086,7 +13300,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111102661 } }, { @@ -13147,7 +13362,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111100315 } }, { @@ -13213,7 +13429,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111098043 } }, { @@ -13293,7 +13510,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111097646 } }, { @@ -13359,7 +13577,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111096899 } }, { @@ -13425,7 +13644,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111096467 } }, { @@ -13491,7 +13711,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111095368 } }, { @@ -13552,7 +13773,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111094818 } }, { @@ -13618,7 +13840,8 @@ "imagery": "EsriWorldImagery", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111094780 } }, { @@ -13684,7 +13907,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111093714 } }, { @@ -13745,7 +13969,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111092379 } }, { @@ -13806,7 +14031,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 111085979 } }, { @@ -13872,7 +14098,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111085753 } }, { @@ -13932,7 +14159,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 111084753 } }, { @@ -13993,7 +14221,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 111084433 } }, { @@ -14058,7 +14287,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 111076012 } }, { @@ -14094,7 +14324,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 111070392 } }, { @@ -14160,7 +14391,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111062799 } }, { @@ -14221,7 +14453,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Florian Edelmann" - } + }, + "id": 111053808 } }, { @@ -14281,7 +14514,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 111052222 } }, { @@ -14317,7 +14551,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 111051777 } }, { @@ -14378,7 +14613,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 111040403 } }, { @@ -14414,7 +14650,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 111039478 } }, { @@ -14476,7 +14713,8 @@ "imagery": "osm", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 111036631 } }, { @@ -14773,7 +15011,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 111033920 } }, { @@ -14833,7 +15072,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 111033762 } }, { @@ -14899,7 +15139,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 111033021 } }, { @@ -14961,7 +15202,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 111032813 } }, { @@ -15021,7 +15263,8 @@ "theme": "fritures", "imagery": "osm", "language": "nl" - } + }, + "id": 111031895 } }, { @@ -15081,7 +15324,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 111023660 } }, { @@ -15141,7 +15385,8 @@ "theme": "surveillance", "imagery": "osm", "language": "fr" - } + }, + "id": 111021565 } }, { @@ -15202,7 +15447,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "Florian Edelmann" - } + }, + "id": 111017331 } }, { @@ -15263,7 +15509,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 111005136 } }, { @@ -15324,7 +15571,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 111000887 } }, { @@ -15384,7 +15632,8 @@ "theme": "observation_towers", "imagery": "osm", "language": "nl" - } + }, + "id": 110995306 } }, { @@ -15444,7 +15693,8 @@ "theme": "observation_towers", "imagery": "osm", "language": "nl" - } + }, + "id": 110988806 } }, { @@ -15862,7 +16112,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 110988456 } }, { @@ -15927,7 +16178,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 110983393 } }, { @@ -15988,7 +16240,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110980752 } }, { @@ -16048,7 +16301,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110976587 } }, { @@ -16084,7 +16338,8 @@ "imagery": "osm", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110968267 } }, { @@ -16145,7 +16400,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110967312 } }, { @@ -16206,7 +16462,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110964829 } }, { @@ -16267,7 +16524,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110959933 } }, { @@ -16329,7 +16587,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110957825 } }, { @@ -16389,7 +16648,8 @@ "theme": "charging_stations", "imagery": "UrbISOrtho", "language": "en" - } + }, + "id": 110956858 } }, { @@ -16489,7 +16749,8 @@ "theme": "binoculars", "imagery": "osm", "language": "nl" - } + }, + "id": 110940675 } }, { @@ -16550,7 +16811,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110939442 } }, { @@ -16610,7 +16872,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 110936930 } }, { @@ -16671,7 +16934,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110926703 } }, { @@ -16731,7 +16995,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110920216 } }, { @@ -16792,7 +17057,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 110919484 } }, { @@ -16854,7 +17120,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110914135 } }, { @@ -16915,7 +17182,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110908896 } }, { @@ -16977,7 +17245,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110906828 } }, { @@ -17039,7 +17308,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110901893 } }, { @@ -17101,7 +17371,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "L'imaginaire" - } + }, + "id": 110901351 } }, { @@ -17163,7 +17434,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110901164 } }, { @@ -17225,7 +17497,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110900957 } }, { @@ -17287,7 +17560,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110900277 } }, { @@ -17349,7 +17623,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "timor" - } + }, + "id": 110899591 } }, { @@ -17410,7 +17685,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110883035 } }, { @@ -17471,7 +17747,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 110880524 } }, { @@ -17532,7 +17809,8 @@ "imagery": "Mapbox", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 110878740 } }, { @@ -17593,7 +17871,8 @@ "theme": "food", "imagery": "osm", "language": "en" - } + }, + "id": 110877207 } }, { @@ -17655,7 +17934,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "timor" - } + }, + "id": 110875916 } }, { @@ -17716,7 +17996,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110875675 } }, { @@ -18211,7 +18492,8 @@ "theme": "https://llefia.org/arbres/mapcomplete1.json", "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 110875109 } }, { @@ -18272,7 +18554,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 110874001 } }, { @@ -18333,7 +18616,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110873102 } }, { @@ -18394,7 +18678,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 110872782 } }, { @@ -18455,7 +18740,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110872737 } }, { @@ -18521,7 +18807,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110870231 } }, { @@ -18581,7 +18868,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "en" - } + }, + "id": 110864432 } }, { @@ -18642,7 +18930,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 110859989 } }, { @@ -18704,7 +18993,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110859395 } }, { @@ -18766,7 +19056,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110858186 } }, { @@ -18828,7 +19119,8 @@ "imagery": "AGIV", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110853884 } }, { @@ -18890,7 +19182,8 @@ "imagery": "GEOSN-DOP-RGB", "language": "en", "theme-creator": "timor" - } + }, + "id": 110853877 } }, { @@ -18951,7 +19244,8 @@ "theme": "charging_stations", "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 110853474 } }, { @@ -19011,7 +19305,8 @@ "theme": "parkings", "imagery": "osm", "language": "en" - } + }, + "id": 110848487 } }, { @@ -19073,7 +19368,8 @@ "imagery": "GEOSN-DOP-RGB", "language": "en", "theme-creator": "timor" - } + }, + "id": 110847424 } }, { @@ -19134,7 +19430,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110847304 } }, { @@ -19196,7 +19493,8 @@ "imagery": "GEOSN-DOP-RGB", "language": "en", "theme-creator": "timor" - } + }, + "id": 110845596 } }, { @@ -19258,7 +19556,8 @@ "imagery": "osm", "language": "en", "theme-creator": "timor" - } + }, + "id": 110844164 } }, { @@ -19320,7 +19619,8 @@ "imagery": "GEOSN-DOP-RGB", "language": "en", "theme-creator": "timor" - } + }, + "id": 110841379 } }, { @@ -19381,7 +19681,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110840665 } }, { @@ -19443,7 +19744,8 @@ "imagery": "GEOSN-DOP-RGB", "language": "en", "theme-creator": "timor" - } + }, + "id": 110836770 } }, { @@ -19504,7 +19806,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110827103 } }, { @@ -19565,7 +19868,8 @@ "theme": "food", "imagery": "osm", "language": "en" - } + }, + "id": 110820210 } }, { @@ -19626,7 +19930,8 @@ "theme": "parkings", "imagery": "osm", "language": "nl" - } + }, + "id": 110818057 } }, { @@ -19686,7 +19991,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 110817161 } }, { @@ -19748,7 +20054,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110812835 } }, { @@ -19810,7 +20117,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110812653 } }, { @@ -19872,7 +20180,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110811749 } }, { @@ -19934,7 +20243,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110811416 } }, { @@ -19996,7 +20306,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110810252 } }, { @@ -20058,7 +20369,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110810008 } }, { @@ -20119,7 +20431,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110809973 } }, { @@ -20181,7 +20494,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110808804 } }, { @@ -20242,7 +20556,8 @@ "theme": "surveillance", "imagery": "osm", "language": "nl" - } + }, + "id": 110804202 } }, { @@ -20302,7 +20617,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110803772 } }, { @@ -20364,7 +20680,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110790669 } }, { @@ -20426,7 +20743,8 @@ "imagery": "osm", "language": "en", "theme-creator": "timor" - } + }, + "id": 110786060 } }, { @@ -20488,7 +20806,8 @@ "imagery": "GEOSN-DOP-RGB", "language": "en", "theme-creator": "timor" - } + }, + "id": 110785141 } }, { @@ -20554,7 +20873,8 @@ "imagery": "osm", "language": "de", "theme-creator": "MapComplete" - } + }, + "id": 110765328 } }, { @@ -20619,7 +20939,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 110764955 } }, { @@ -20685,7 +21006,8 @@ "imagery": "HDM_HOT", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 110764735 } }, { @@ -20747,7 +21069,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110762517 } }, { @@ -20783,7 +21106,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110762394 } }, { @@ -20819,7 +21143,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110762315 } }, { @@ -20855,7 +21180,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110762308 } }, { @@ -20917,7 +21243,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110762005 } }, { @@ -20953,7 +21280,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110761753 } }, { @@ -20989,7 +21317,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110761714 } }, { @@ -21025,7 +21354,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110761625 } }, { @@ -21061,7 +21391,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110761584 } }, { @@ -21097,7 +21428,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110761579 } }, { @@ -21133,7 +21465,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110761577 } }, { @@ -21195,7 +21528,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110761238 } }, { @@ -21256,7 +21590,8 @@ "theme": "food", "imagery": "AGIVFlandersGRB", "language": "en" - } + }, + "id": 110759123 } }, { @@ -21318,7 +21653,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110756723 } }, { @@ -21379,7 +21715,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110755864 } }, { @@ -21440,7 +21777,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110754992 } }, { @@ -21501,7 +21839,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110753945 } }, { @@ -21562,7 +21901,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110752801 } }, { @@ -21624,7 +21964,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110752554 } }, { @@ -21690,7 +22031,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110752287 } }, { @@ -21751,7 +22093,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110751439 } }, { @@ -21812,7 +22155,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110750569 } }, { @@ -21873,7 +22217,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110748089 } }, { @@ -21935,7 +22280,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110743699 } }, { @@ -21996,7 +22342,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110742775 } }, { @@ -22058,7 +22405,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110742143 } }, { @@ -22119,7 +22467,8 @@ "imagery": "CartoDB.VoyagerNoLabels", "language": "ru", "theme-creator": "MapComplete" - } + }, + "id": 110737915 } }, { @@ -22180,7 +22529,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Erwin Olario" - } + }, + "id": 110730420 } }, { @@ -22241,7 +22591,8 @@ "imagery": "AGIV10cm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110729653 } }, { @@ -22307,7 +22658,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110727164 } }, { @@ -22367,7 +22719,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "nl" - } + }, + "id": 110725856 } }, { @@ -22428,7 +22781,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110725782 } }, { @@ -22488,7 +22842,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 110723272 } }, { @@ -22549,7 +22904,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 110722942 } }, { @@ -22610,7 +22966,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110722840 } }, { @@ -22672,7 +23029,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110722032 } }, { @@ -22733,7 +23091,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110722003 } }, { @@ -22769,7 +23128,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721639 } }, { @@ -22805,7 +23165,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721634 } }, { @@ -22841,7 +23202,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721625 } }, { @@ -22877,7 +23239,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721603 } }, { @@ -22913,7 +23276,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721579 } }, { @@ -22949,7 +23313,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721572 } }, { @@ -22985,7 +23350,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721569 } }, { @@ -23021,7 +23387,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721447 } }, { @@ -23057,7 +23424,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721445 } }, { @@ -23093,7 +23461,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721442 } }, { @@ -23129,7 +23498,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721429 } }, { @@ -23165,7 +23535,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721271 } }, { @@ -23201,7 +23572,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721252 } }, { @@ -23237,7 +23609,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721241 } }, { @@ -23273,7 +23646,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721226 } }, { @@ -23309,7 +23683,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721214 } }, { @@ -23345,7 +23720,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721190 } }, { @@ -23381,7 +23757,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721176 } }, { @@ -23417,7 +23794,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721122 } }, { @@ -23453,7 +23831,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721117 } }, { @@ -23489,7 +23868,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721111 } }, { @@ -23525,7 +23905,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721109 } }, { @@ -23561,7 +23942,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110721104 } }, { @@ -23623,7 +24005,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110720968 } }, { @@ -23685,7 +24068,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110720700 } }, { @@ -23746,7 +24130,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110720419 } }, { @@ -23808,7 +24193,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110720183 } }, { @@ -23869,7 +24255,8 @@ "theme": "food", "imagery": "osm", "language": "en" - } + }, + "id": 110717930 } }, { @@ -23929,7 +24316,8 @@ "theme": "charging_stations", "imagery": "osm", "language": "nl" - } + }, + "id": 110714072 } }, { @@ -23991,7 +24379,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110713861 } }, { @@ -24051,7 +24440,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 110712149 } }, { @@ -24112,7 +24502,8 @@ "theme": "hackerspaces", "imagery": "osm", "language": "en" - } + }, + "id": 110710345 } }, { @@ -24173,7 +24564,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110708077 } }, { @@ -24233,7 +24625,8 @@ "theme": "playgrounds", "imagery": "osm", "language": "en" - } + }, + "id": 110704657 } }, { @@ -24294,7 +24687,8 @@ "imagery": "AGIV10cm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110703785 } }, { @@ -24355,7 +24749,8 @@ "theme": "surveillance", "imagery": "osm", "language": "en" - } + }, + "id": 110703458 } }, { @@ -24416,7 +24811,8 @@ "imagery": "CyclOSM", "language": "en", "theme-creator": "Midgard" - } + }, + "id": 110699141 } }, { @@ -24477,7 +24873,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110694757 } }, { @@ -24539,7 +24936,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110691827 } }, { @@ -24575,7 +24973,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110688072 } }, { @@ -24611,7 +25010,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110688050 } }, { @@ -24647,7 +25047,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110688040 } }, { @@ -24683,7 +25084,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110688005 } }, { @@ -24719,7 +25121,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687948 } }, { @@ -24755,7 +25158,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687899 } }, { @@ -24791,7 +25195,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687890 } }, { @@ -24827,7 +25232,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687877 } }, { @@ -24863,7 +25269,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687842 } }, { @@ -24899,7 +25306,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687780 } }, { @@ -24935,7 +25343,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687772 } }, { @@ -24971,7 +25380,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687768 } }, { @@ -25007,7 +25417,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687724 } }, { @@ -25043,7 +25454,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687705 } }, { @@ -25079,7 +25491,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687694 } }, { @@ -25141,7 +25554,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110687671 } }, { @@ -25202,7 +25616,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110684887 } }, { @@ -25262,7 +25677,8 @@ "theme": "food", "imagery": "osm", "language": "nl" - } + }, + "id": 110683238 } }, { @@ -25323,7 +25739,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110680597 } }, { @@ -25383,7 +25800,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110679083 } }, { @@ -25445,7 +25863,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110662737 } }, { @@ -25511,7 +25930,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110654121 } }, { @@ -25571,7 +25991,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", "imagery": "osm", "language": "es" - } + }, + "id": 110644009 } }, { @@ -25632,7 +26053,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110642716 } }, { @@ -25693,7 +26115,8 @@ "imagery": "CartoDB.Positron", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110639949 } }, { @@ -25754,7 +26177,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110637847 } }, { @@ -25815,7 +26239,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110635049 } }, { @@ -25876,7 +26301,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110634587 } }, { @@ -25912,7 +26338,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633674 } }, { @@ -25948,7 +26375,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633654 } }, { @@ -25984,7 +26412,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633634 } }, { @@ -26020,7 +26449,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633557 } }, { @@ -26056,7 +26486,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633548 } }, { @@ -26092,7 +26523,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633538 } }, { @@ -26128,7 +26560,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633517 } }, { @@ -26164,7 +26597,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633503 } }, { @@ -26200,7 +26634,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633495 } }, { @@ -26236,7 +26671,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633492 } }, { @@ -26272,7 +26708,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633483 } }, { @@ -26334,7 +26771,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110633135 } }, { @@ -26396,7 +26834,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632891 } }, { @@ -26432,7 +26871,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632847 } }, { @@ -26468,7 +26908,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632846 } }, { @@ -26504,7 +26945,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632843 } }, { @@ -26540,7 +26982,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632829 } }, { @@ -26576,7 +27019,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632779 } }, { @@ -26612,7 +27056,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632775 } }, { @@ -26648,7 +27093,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632771 } }, { @@ -26710,7 +27156,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632695 } }, { @@ -26772,7 +27219,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632315 } }, { @@ -26834,7 +27282,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110632011 } }, { @@ -26896,7 +27345,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "timor" - } + }, + "id": 110630108 } }, { @@ -26958,7 +27408,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110623120 } }, { @@ -27018,7 +27469,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110619917 } }, { @@ -27079,7 +27531,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110618387 } }, { @@ -27140,7 +27593,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110616881 } }, { @@ -27201,7 +27655,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110613773 } }, { @@ -27262,7 +27717,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110603447 } }, { @@ -27323,7 +27779,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110603256 } }, { @@ -27384,7 +27841,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110600404 } }, { @@ -27446,7 +27904,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110599984 } }, { @@ -27508,7 +27967,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110598754 } }, { @@ -27570,7 +28030,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110598287 } }, { @@ -27632,7 +28093,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110595886 } }, { @@ -27694,7 +28156,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110586134 } }, { @@ -27756,7 +28219,8 @@ "imagery": "osm", "language": "nl", "theme-creator": "MapComplete" - } + }, + "id": 110584529 } }, { @@ -27817,7 +28281,8 @@ "imagery": "osm", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110582888 } }, { @@ -27851,7 +28316,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110569303 } }, { @@ -27885,7 +28351,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110569277 } }, { @@ -27919,7 +28386,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110569275 } }, { @@ -27979,7 +28447,8 @@ "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", "imagery": "osm", "language": "es" - } + }, + "id": 110567319 } }, { @@ -28040,7 +28509,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110556484 } }, { @@ -28106,7 +28576,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 110553288 } }, { @@ -28166,7 +28637,8 @@ "theme": "fritures", "imagery": "osm", "language": "en" - } + }, + "id": 110544427 } }, { @@ -28227,7 +28699,8 @@ "imagery": "osm", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 110544307 } }, { @@ -28288,7 +28761,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "theme-creator": "MapComplete" - } + }, + "id": 110542688 } } ] diff --git a/Docs/Tools/stats/stats.2022-1.json b/Docs/Tools/stats/stats.2022-1.json index c206e60350..cbfb1cf0a8 100644 --- a/Docs/Tools/stats/stats.2022-1.json +++ b/Docs/Tools/stats/stats.2022-1.json @@ -1,5 +1,9841 @@ { "features": [ + { + "id": 116200037, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.8985389, + -33.7564753 + ], + [ + -70.8978925, + -33.7564753 + ], + [ + -70.8978925, + -33.7557795 + ], + [ + -70.8985389, + -33.7557795 + ], + [ + -70.8985389, + -33.7564753 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 116200037 + } + }, + { + "id": 116198979, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.023969, + 50.6169632 + ], + [ + 3.0612858, + 50.6169632 + ], + [ + 3.0612858, + 50.6260645 + ], + [ + 3.023969, + 50.6260645 + ], + [ + 3.023969, + 50.6169632 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 118, + "imagery": "osm", + "language": "en" + }, + "id": 116198979 + } + }, + { + "id": 116198646, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5231209, + 49.2287087 + ], + [ + 13.5231209, + 49.2287087 + ], + [ + 13.5231209, + 49.2287087 + ], + [ + 13.5231209, + 49.2287087 + ], + [ + 13.5231209, + 49.2287087 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "id": 116198646 + } + }, + { + "id": 116198609, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5204287, + 49.2254605 + ], + [ + 13.5204287, + 49.2254605 + ], + [ + 13.5204287, + 49.2254605 + ], + [ + 13.5204287, + 49.2254605 + ], + [ + 13.5204287, + 49.2254605 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116198609 + } + }, + { + "id": 116198577, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5204457, + 49.2254032 + ], + [ + 13.5204457, + 49.2254032 + ], + [ + 13.5204457, + 49.2254032 + ], + [ + 13.5204457, + 49.2254032 + ], + [ + 13.5204457, + 49.2254032 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116198577 + } + }, + { + "id": 116198415, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0540864, + 50.6178163 + ], + [ + 3.0691998, + 50.6178163 + ], + [ + 3.0691998, + 50.6276401 + ], + [ + 3.0540864, + 50.6276401 + ], + [ + 3.0540864, + 50.6178163 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 61, + "imagery": "osm", + "language": "en" + }, + "id": 116198415 + } + }, + { + "id": 116196564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0082082, + 49.2242801 + ], + [ + 13.5212992, + 49.2242801 + ], + [ + 13.5212992, + 51.1274015 + ], + [ + 5.0082082, + 51.1274015 + ], + [ + 5.0082082, + 49.2242801 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "id": 116196564 + } + }, + { + "id": 116190924, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0073367, + 52.3503428 + ], + [ + 5.0073367, + 52.3503428 + ], + [ + 5.0073367, + 52.3503428 + ], + [ + 5.0073367, + 52.3503428 + ], + [ + 5.0073367, + 52.3503428 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_1000m": 12 + }, + "id": 116190924 + } + }, + { + "id": 116190473, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.00559, + 52.3451413 + ], + [ + 5.0060382, + 52.3451413 + ], + [ + 5.0060382, + 52.3454417 + ], + [ + 5.00559, + 52.3454417 + ], + [ + 5.00559, + 52.3451413 + ] + ] + ] + }, + "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": 1, + "modify": 8, + "delete": 0, + "area": 1.34639280000226e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 8, + "create": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 116190473 + } + }, + { + "id": 116189609, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5179265, + 49.2284011 + ], + [ + 13.5184457, + 49.2284011 + ], + [ + 13.5184457, + 49.2288884 + ], + [ + 13.5179265, + 49.2288884 + ], + [ + 13.5179265, + 49.2284011 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116189609 + } + }, + { + "id": 116187640, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6187257, + 49.2812204 + ], + [ + 13.6187257, + 49.2812204 + ], + [ + 13.6187257, + 49.2812204 + ], + [ + 13.6187257, + 49.2812204 + ], + [ + 13.6187257, + 49.2812204 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116187640 + } + }, + { + "id": 116186194, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1909422, + 50.9183511 + ], + [ + 4.1909422, + 50.9183511 + ], + [ + 4.1909422, + 50.9183511 + ], + [ + 4.1909422, + 50.9183511 + ], + [ + 4.1909422, + 50.9183511 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "imagery": "AGIV", + "language": "nl", + "add-image": 1 + }, + "id": 116186194 + } + }, + { + "id": 116185362, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1007143, + 51.4950781 + ], + [ + -0.1004702, + 51.4950781 + ], + [ + -0.1004702, + 51.4951432 + ], + [ + -0.1007143, + 51.4951432 + ], + [ + -0.1007143, + 51.4950781 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 116185362 + } + }, + { + "id": 116183077, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.1984535, + 47.1175041 + ], + [ + 7.1984535, + 47.1175041 + ], + [ + 7.1984535, + 47.1175041 + ], + [ + 7.1984535, + 47.1175041 + ], + [ + 7.1984535, + 47.1175041 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "create": 1, + "imagery": "swisstopo_swissimage", + "language": "en" + }, + "id": 116183077 + } + }, + { + "id": 116179454, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9880919, + 41.3097545 + ], + [ + 0.9880919, + 41.3097545 + ], + [ + 0.9880919, + 41.3097545 + ], + [ + 0.9880919, + 41.3097545 + ], + [ + 0.9880919, + 41.3097545 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 116179454 + } + }, + { + "id": 116175933, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1852589, + 50.9182707 + ], + [ + 4.1955207, + 50.9182707 + ], + [ + 4.1955207, + 50.9401294 + ], + [ + 4.1852589, + 50.9401294 + ], + [ + 4.1852589, + 50.9182707 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 20, + "create": 5, + "imagery": "osm", + "language": "nl", + "move:node/9013372877": "improve_accuracy" + }, + "id": 116175933 + } + }, + { + "id": 116175251, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.117923, + 52.0882038 + ], + [ + 5.117923, + 52.0882038 + ], + [ + 5.117923, + 52.0882038 + ], + [ + 5.117923, + 52.0882038 + ], + [ + 5.117923, + 52.0882038 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 116175251 + } + }, + { + "id": 116171615, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 152.9759409, + -27.5518633 + ], + [ + 153.020094, + -27.5518633 + ], + [ + 153.020094, + -27.4996782 + ], + [ + 152.9759409, + -27.4996782 + ], + [ + 152.9759409, + -27.5518633 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 5, + "create": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 116171615 + } + }, + { + "id": 116169271, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 174.3787947, + -36.5707611 + ], + [ + 174.3787947, + -36.5707611 + ], + [ + 174.3787947, + -36.5707611 + ], + [ + 174.3787947, + -36.5707611 + ], + [ + 174.3787947, + -36.5707611 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116169271 + } + }, + { + "id": 116167939, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6780318, + -33.5189526 + ], + [ + -70.6417373, + -33.5189526 + ], + [ + -70.6417373, + -33.5017604 + ], + [ + -70.6780318, + -33.5017604 + ], + [ + -70.6780318, + -33.5189526 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "create": 2, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 116167939 + } + }, + { + "id": 116163181, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9899268, + 51.1272695 + ], + [ + 5.0096879, + 51.1272695 + ], + [ + 5.0096879, + 51.1622275 + ], + [ + 4.9899268, + 51.1622275 + ], + [ + 4.9899268, + 51.1272695 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 229, + "theme": "grb", + "delete": 1, + "imagery": "osm", + "language": "nl", + "conflation": 8 + }, + "id": 116163181 + } + }, + { + "id": 116162017, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.7449961, + -33.7628136 + ], + [ + -70.7373275, + -33.7628136 + ], + [ + -70.7373275, + -33.731468 + ], + [ + -70.7449961, + -33.731468 + ], + [ + -70.7449961, + -33.7628136 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 116162017 + } + }, + { + "id": 116161544, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 174.3787947, + -36.5707611 + ], + [ + 174.3787947, + -36.5707611 + ], + [ + 174.3787947, + -36.5707611 + ], + [ + 174.3787947, + -36.5707611 + ], + [ + 174.3787947, + -36.5707611 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 116161544 + } + }, + { + "id": 116161018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2492069, + -39.8191966 + ], + [ + -73.2468342, + -39.8191966 + ], + [ + -73.2468342, + -39.8129711 + ], + [ + -73.2492069, + -39.8129711 + ], + [ + -73.2492069, + -39.8191966 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 16 + }, + "id": 116161018 + } + }, + { + "id": 116159385, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -81.4058161, + 41.5201538 + ], + [ + -81.4058161, + 41.5201538 + ], + [ + -81.4058161, + 41.5201538 + ], + [ + -81.4058161, + 41.5201538 + ], + [ + -81.4058161, + 41.5201538 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "create": 1, + "imagery": "USDA-NAIP", + "language": "en" + }, + "id": 116159385 + } + }, + { + "id": 116155764, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.8388805, + -33.4414078 + ], + [ + -70.8383924, + -33.4414078 + ], + [ + -70.8383924, + -33.4408751 + ], + [ + -70.8388805, + -33.4408751 + ], + [ + -70.8388805, + -33.4414078 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 116155764 + } + }, + { + "id": 116155356, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -95.4207793, + 29.5414486 + ], + [ + -95.3762653, + 29.5414486 + ], + [ + -95.3762653, + 29.5820507 + ], + [ + -95.4207793, + 29.5820507 + ], + [ + -95.4207793, + 29.5414486 + ] + ] + ] + }, + "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": 6, + "modify": 0, + "delete": 0, + "area": 0.00180736187940031, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "create": 7, + "imagery": "USDA-NAIP", + "language": "en" + }, + "id": 116155356 + } + }, + { + "id": 116152579, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2314472, + 51.09497 + ], + [ + 3.3758266, + 51.09497 + ], + [ + 3.3758266, + 51.1919618 + ], + [ + 3.2314472, + 51.1919618 + ], + [ + 3.2314472, + 51.09497 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 116152579 + } + }, + { + "id": 116149388, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4275369, + 50.8212624 + ], + [ + 4.4275369, + 50.8212624 + ], + [ + 4.4275369, + 50.8212624 + ], + [ + 4.4275369, + 50.8212624 + ], + [ + 4.4275369, + 50.8212624 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "fr", + "change_within_50m": 1 + }, + "id": 116149388 + } + }, + { + "id": 116149360, + "type": "Feature", + "geometry": null, + "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:16:29Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 116149360 + } + }, + { + "id": 116149359, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4275369, + 50.8212624 + ], + [ + 4.4275369, + 50.8212624 + ], + [ + 4.4275369, + 50.8212624 + ], + [ + 4.4275369, + 50.8212624 + ], + [ + 4.4275369, + 50.8212624 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "fr", + "change_within_50m": 1 + }, + "id": 116149359 + } + }, + { + "id": 116149317, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4275114, + 50.8212624 + ], + [ + 4.4275369, + 50.8212624 + ], + [ + 4.4275369, + 50.8212686 + ], + [ + 4.4275114, + 50.8212686 + ], + [ + 4.4275114, + 50.8212624 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 116149317 + } + }, + { + "id": 116147663, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.9395007, + -33.671368 + ], + [ + -70.5978634, + -33.671368 + ], + [ + -70.5978634, + -33.3692807 + ], + [ + -70.9395007, + -33.3692807 + ], + [ + -70.9395007, + -33.671368 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 31, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "id": 116147663 + } + }, + { + "id": 116147318, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9791331, + 51.1587845 + ], + [ + 4.9798434, + 51.1587845 + ], + [ + 4.9798434, + 51.1600538 + ], + [ + 4.9791331, + 51.1600538 + ], + [ + 4.9791331, + 51.1587845 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 11, + "theme": "grb", + "import": 1, + "imagery": "osm", + "language": "nl", + "conflation": 4, + "change_within_5000m": 1 + }, + "id": 116147318 + } + }, + { + "id": 116146018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2579666, + 50.9085603 + ], + [ + 3.2669547, + 50.9085603 + ], + [ + 3.2669547, + 50.9180441 + ], + [ + 3.2579666, + 50.9180441 + ], + [ + 3.2579666, + 50.9085603 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "create": 5, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "id": 116146018 + } + }, + { + "id": 116145462, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9812648, + 51.1541938 + ], + [ + 4.9874511, + 51.1541938 + ], + [ + 4.9874511, + 51.1606748 + ], + [ + 4.9812648, + 51.1606748 + ], + [ + 4.9812648, + 51.1541938 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 266, + "path": "mc/develop/", + "theme": "grb", + "answer": 2, + "delete": 15, + "import": 6, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 64, + "change_within_5000m": 8 + }, + "id": 116145462 + } + }, + { + "id": 116143314, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.7609141, + -33.5112582 + ], + [ + -70.6742654, + -33.5112582 + ], + [ + -70.6742654, + -33.5035811 + ], + [ + -70.7609141, + -33.5035811 + ], + [ + -70.7609141, + -33.5112582 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 116143314 + } + }, + { + "id": 116142066, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7604043, + 51.1438586 + ], + [ + 11.7604043, + 51.1438586 + ], + [ + 11.7604043, + 51.1438586 + ], + [ + 11.7604043, + 51.1438586 + ], + [ + 11.7604043, + 51.1438586 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 116142066 + } + }, + { + "id": 116141115, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.7980967, + -33.3923855 + ], + [ + -70.7141806, + -33.3923855 + ], + [ + -70.7141806, + -33.3213682 + ], + [ + -70.7980967, + -33.3213682 + ], + [ + -70.7980967, + -33.3923855 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 7, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 116141115 + } + }, + { + "id": 116140895, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.7753349, + 41.1928264 + ], + [ + 0.7753349, + 41.1928264 + ], + [ + 0.7753349, + 41.1928264 + ], + [ + 0.7753349, + 41.1928264 + ], + [ + 0.7753349, + 41.1928264 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 116140895 + } + }, + { + "id": 116140398, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5820313, + 54.9052194 + ], + [ + -1.5820313, + 54.9052194 + ], + [ + -1.5820313, + 54.9052194 + ], + [ + -1.5820313, + 54.9052194 + ], + [ + -1.5820313, + 54.9052194 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "create": 1, + "imagery": "Mapbox", + "language": "en" + }, + "id": 116140398 + } + }, + { + "id": 116138310, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5310098, + 51.2278474 + ], + [ + 4.5310098, + 51.2278474 + ], + [ + 4.5310098, + 51.2278474 + ], + [ + 4.5310098, + 51.2278474 + ], + [ + 4.5310098, + 51.2278474 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 116138310 + } + }, + { + "id": 116137794, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4000083, + 50.8218991 + ], + [ + 4.4017357, + 50.8218991 + ], + [ + 4.4017357, + 50.8230648 + ], + [ + 4.4000083, + 50.8230648 + ], + [ + 4.4000083, + 50.8218991 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 116137794 + } + }, + { + "id": 116133044, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2463005, + -39.815365 + ], + [ + -73.2461657, + -39.815365 + ], + [ + -73.2461657, + -39.8152727 + ], + [ + -73.2463005, + -39.8152727 + ], + [ + -73.2463005, + -39.815365 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 3 + }, + "id": 116133044 + } + }, + { + "id": 116130302, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.1296601, + -39.8149192 + ], + [ + -73.2449862, + -39.8149192 + ], + [ + -73.2449862, + 19.3028658 + ], + [ + -99.1296601, + 19.3028658 + ], + [ + -99.1296601, + -39.8149192 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116130302 + } + }, + { + "id": 116127380, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.8128632, + -33.4625133 + ], + [ + -70.5146315, + -33.4625133 + ], + [ + -70.5146315, + -33.2059937 + ], + [ + -70.8128632, + -33.2059937 + ], + [ + -70.8128632, + -33.4625133 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 9, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 116127380 + } + }, + { + "id": 116126041, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3263467, + 50.8762296 + ], + [ + 4.3278201, + 50.8762296 + ], + [ + 4.3278201, + 50.8766479 + ], + [ + 4.3263467, + 50.8766479 + ], + [ + 4.3263467, + 50.8762296 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 116126041 + } + }, + { + "id": 116125399, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3266514, + 50.8772764 + ], + [ + 4.3269786, + 50.8772764 + ], + [ + 4.3269786, + 50.8773843 + ], + [ + 4.3266514, + 50.8773843 + ], + [ + 4.3266514, + 50.8772764 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "imagery": "UrbisAdmNL", + "language": "en", + "conflation": 2 + }, + "id": 116125399 + } + }, + { + "id": 116124902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2319398, + -39.8433633 + ], + [ + -73.2312106, + -39.8433633 + ], + [ + -73.2312106, + -39.8425751 + ], + [ + -73.2319398, + -39.8425751 + ], + [ + -73.2319398, + -39.8433633 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 6 + }, + "id": 116124902 + } + }, + { + "id": 116122529, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.923727, + 51.3254341 + ], + [ + 4.9243899, + 51.3254341 + ], + [ + 4.9243899, + 51.3263166 + ], + [ + 4.923727, + 51.3263166 + ], + [ + 4.923727, + 51.3254341 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "import": 8, + "imagery": "AGIV", + "language": "nl", + "conflation": 2 + }, + "id": 116122529 + } + }, + { + "id": 116122527, + "type": "Feature", + "geometry": null, + "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:49Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 116122527 + } + }, + { + "id": 116122524, + "type": "Feature", + "geometry": null, + "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:45Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 116122524 + } + }, + { + "id": 116122520, + "type": "Feature", + "geometry": null, + "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:38Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 116122520 + } + }, + { + "id": 116122517, + "type": "Feature", + "geometry": null, + "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:35Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 116122517 + } + }, + { + "id": 116122514, + "type": "Feature", + "geometry": null, + "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:30Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 116122514 + } + }, + { + "id": 116122509, + "type": "Feature", + "geometry": null, + "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:25Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 116122509 + } + }, + { + "id": 116122505, + "type": "Feature", + "geometry": null, + "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:19Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 3, + "imagery": "AGIV", + "language": "nl" + }, + "id": 116122505 + } + }, + { + "id": 116122489, + "type": "Feature", + "geometry": null, + "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:08Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 116122489 + } + }, + { + "id": 116122457, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9236914, + 51.3253786 + ], + [ + 4.9240703, + 51.3253786 + ], + [ + 4.9240703, + 51.3258869 + ], + [ + 4.9236914, + 51.3258869 + ], + [ + 4.9236914, + 51.3253786 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 10, + "imagery": "osm", + "language": "nl" + }, + "id": 116122457 + } + }, + { + "id": 116119941, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3246548, + 50.8726219 + ], + [ + 4.3246548, + 50.8726219 + ], + [ + 4.3246548, + 50.8726219 + ], + [ + 4.3246548, + 50.8726219 + ], + [ + 4.3246548, + 50.8726219 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_50m": 1 + }, + "id": 116119941 + } + }, + { + "id": 116119252, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3245852, + 50.8761468 + ], + [ + 4.3263467, + 50.8761468 + ], + [ + 4.3263467, + 50.8766479 + ], + [ + 4.3245852, + 50.8766479 + ], + [ + 4.3245852, + 50.8761468 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "id": 116119252 + } + }, + { + "id": 116116526, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3268944, + 50.8769397 + ], + [ + 4.3268944, + 50.8769397 + ], + [ + 4.3268944, + 50.8769397 + ], + [ + 4.3268944, + 50.8769397 + ], + [ + 4.3268944, + 50.8769397 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116116526 + } + }, + { + "id": 116115233, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.5221288, + -33.6455985 + ], + [ + -70.3515947, + -33.6455985 + ], + [ + -70.3515947, + -33.6078596 + ], + [ + -70.5221288, + -33.6078596 + ], + [ + -70.5221288, + -33.6455985 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "create": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 116115233 + } + }, + { + "id": 116111841, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1462954, + 49.7021304 + ], + [ + 6.1462954, + 49.7021304 + ], + [ + 6.1462954, + 49.7021304 + ], + [ + 6.1462954, + 49.7021304 + ], + [ + 6.1462954, + 49.7021304 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116111841 + } + }, + { + "id": 116111260, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0625972, + 50.6292697 + ], + [ + 3.0854426, + 50.6292697 + ], + [ + 3.0854426, + 50.6489095 + ], + [ + 3.0625972, + 50.6489095 + ], + [ + 3.0625972, + 50.6292697 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "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-13T15:09:43Z", + "reviewed_features": [], + "create": 0, + "modify": 216, + "delete": 0, + "area": 0.000448679086920005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 417, + "imagery": "osm", + "language": "en" + }, + "id": 116111260 + } + }, + { + "id": 116111010, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2380348, + -39.8144473 + ], + [ + -73.2380348, + -39.8144473 + ], + [ + -73.2380348, + -39.8144473 + ], + [ + -73.2380348, + -39.8144473 + ], + [ + -73.2380348, + -39.8144473 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116111010 + } + }, + { + "id": 116110880, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0289492, + 50.6227271 + ], + [ + 3.0697953, + 50.6227271 + ], + [ + 3.0697953, + 50.6299043 + ], + [ + 3.0289492, + 50.6299043 + ], + [ + 3.0289492, + 50.6227271 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 87, + "imagery": "osm", + "language": "en" + }, + "id": 116110880 + } + }, + { + "id": 116101981, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0916043, + 40.6239596 + ], + [ + -0.091308, + 40.6239596 + ], + [ + -0.091308, + 40.6240163 + ], + [ + -0.0916043, + 40.6240163 + ], + [ + -0.0916043, + 40.6239596 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 12, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 3, + "change_over_5000m": 1, + "change_within_25m": 15 + }, + "id": 116101981 + } + }, + { + "id": 116099620, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3875951, + 50.8515187 + ], + [ + 4.3875951, + 50.8515187 + ], + [ + 4.3875951, + 50.8515187 + ], + [ + 4.3875951, + 50.8515187 + ], + [ + 4.3875951, + 50.8515187 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "create": 1, + "imagery": "AGIV", + "language": "en", + "add-image": 1 + }, + "id": 116099620 + } + }, + { + "id": 116097676, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T09:08:28Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 116097676 + } + }, + { + "id": 116091008, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2463005, + -39.815365 + ], + [ + -73.2461657, + -39.815365 + ], + [ + -73.2461657, + -39.8152727 + ], + [ + -73.2463005, + -39.8152727 + ], + [ + -73.2463005, + -39.815365 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "id": 116091008 + } + }, + { + "id": 116086424, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.7546234, + 49.7825942 + ], + [ + 0.7546234, + 49.7825942 + ], + [ + 0.7546234, + 49.7825942 + ], + [ + 0.7546234, + 49.7825942 + ], + [ + 0.7546234, + 49.7825942 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "create": 1, + "imagery": "fr.ign.bdortho", + "language": "fr" + }, + "id": 116086424 + } + }, + { + "id": 116083766, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2461468, + -39.8153024 + ], + [ + -73.2461468, + -39.8153024 + ], + [ + -73.2461468, + -39.8153024 + ], + [ + -73.2461468, + -39.8153024 + ], + [ + -73.2461468, + -39.8153024 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "id": 116083766 + } + }, + { + "id": 116082061, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2477339, + -39.8181032 + ], + [ + -73.2449862, + -39.8181032 + ], + [ + -73.2449862, + -39.8145307 + ], + [ + -73.2477339, + -39.8145307 + ], + [ + -73.2477339, + -39.8181032 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 2, + "imagery": "cyclosm", + "language": "en", + "add-image": 22, + "change_over_5000m": 2, + "change_within_25m": 16, + "change_within_50m": 5, + "change_within_100m": 1 + }, + "id": 116082061 + } + }, + { + "id": 116081800, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.818157, + 51.0390824 + ], + [ + 4.8868052, + 51.0390824 + ], + [ + 4.8868052, + 51.0546869 + ], + [ + 4.818157, + 51.0546869 + ], + [ + 4.818157, + 51.0390824 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 13, + "theme": "grb", + "import": 14, + "imagery": "osm", + "language": "nl", + "conflation": 4 + }, + "id": 116081800 + } + }, + { + "id": 116080687, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1574946, + 51.5370581 + ], + [ + -0.1574161, + 51.5370581 + ], + [ + -0.1574161, + 51.5371085 + ], + [ + -0.1574946, + 51.5371085 + ], + [ + -0.1574946, + 51.5370581 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "id": 116080687 + } + }, + { + "id": 116079171, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.4594317, + 40.2646883 + ], + [ + -0.4594317, + 40.2646883 + ], + [ + -0.4594317, + 40.2646883 + ], + [ + -0.4594317, + 40.2646883 + ], + [ + -0.4594317, + 40.2646883 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 8 + }, + "id": 116079171 + } + }, + { + "id": 116076574, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6120103, + 52.2864226 + ], + [ + -1.6120103, + 52.2864226 + ], + [ + -1.6120103, + 52.2864226 + ], + [ + -1.6120103, + 52.2864226 + ], + [ + -1.6120103, + 52.2864226 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 116076574 + } + }, + { + "id": 116075392, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5896299, + 52.2815641 + ], + [ + -1.5896299, + 52.2815641 + ], + [ + -1.5896299, + 52.2815641 + ], + [ + -1.5896299, + 52.2815641 + ], + [ + -1.5896299, + 52.2815641 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116075392 + } + }, + { + "id": 116075040, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2374617, + -39.8328285 + ], + [ + -73.2367265, + -39.8328285 + ], + [ + -73.2367265, + -39.8319346 + ], + [ + -73.2374617, + -39.8319346 + ], + [ + -73.2374617, + -39.8328285 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 3 + }, + "id": 116075040 + } + }, + { + "id": 116070825, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0415319, + 50.6244288 + ], + [ + 3.0676825, + 50.6244288 + ], + [ + 3.0676825, + 50.6372786 + ], + [ + 3.0415319, + 50.6372786 + ], + [ + 3.0415319, + 50.6244288 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 108, + "imagery": "osm", + "language": "en" + }, + "id": 116070825 + } + }, + { + "id": 116070232, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.4050848, + -39.8201089 + ], + [ + -73.4050848, + -39.8201089 + ], + [ + -73.4050848, + -39.8201089 + ], + [ + -73.4050848, + -39.8201089 + ], + [ + -73.4050848, + -39.8201089 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116070232 + } + }, + { + "id": 116069496, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0538273, + 50.6177387 + ], + [ + 3.0771453, + 50.6177387 + ], + [ + 3.0771453, + 50.627558 + ], + [ + 3.0538273, + 50.627558 + ], + [ + 3.0538273, + 50.6177387 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 84, + "imagery": "osm", + "language": "en" + }, + "id": 116069496 + } + }, + { + "id": 116068291, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -76.96731, + 44.2606491 + ], + [ + -76.9649255, + 44.2606491 + ], + [ + -76.9649255, + 44.2682267 + ], + [ + -76.96731, + 44.2682267 + ], + [ + -76.96731, + 44.2606491 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 13, + "create": 2, + "imagery": "EsriWorldImagery", + "language": "en" + }, + "id": 116068291 + } + }, + { + "id": 116068167, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6337719, + 51.7456623 + ], + [ + 14.6412764, + 51.7456623 + ], + [ + 14.6412764, + 51.750055 + ], + [ + 14.6337719, + 51.750055 + ], + [ + 14.6337719, + 51.7456623 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116068167 + } + }, + { + "id": 116066900, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.7066219, + -33.6259236 + ], + [ + -70.6132558, + -33.6259236 + ], + [ + -70.6132558, + -33.5097757 + ], + [ + -70.7066219, + -33.5097757 + ], + [ + -70.7066219, + -33.6259236 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 9, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 9 + }, + "id": 116066900 + } + }, + { + "id": 116066841, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.202799, + 51.1973829 + ], + [ + 3.202799, + 51.1973829 + ], + [ + 3.202799, + 51.1973829 + ], + [ + 3.202799, + 51.1973829 + ], + [ + 3.202799, + 51.1973829 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 116066841 + } + }, + { + "id": 116058584, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2442552, + 50.9132179 + ], + [ + 3.2751945, + 50.9132179 + ], + [ + 3.2751945, + 50.9261112 + ], + [ + 3.2442552, + 50.9261112 + ], + [ + 3.2442552, + 50.9132179 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "create": 3, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 116058584 + } + }, + { + "id": 116055657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.028449, + 50.6174098 + ], + [ + 3.0805264, + 50.6174098 + ], + [ + 3.0805264, + 50.6357482 + ], + [ + 3.028449, + 50.6357482 + ], + [ + 3.028449, + 50.6174098 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 311, + "imagery": "osm", + "language": "en" + }, + "id": 116055657 + } + }, + { + "id": 116055007, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9936424, + 52.0040974 + ], + [ + 13.0029577, + 52.0040974 + ], + [ + 13.0029577, + 52.0127636 + ], + [ + 12.9936424, + 52.0127636 + ], + [ + 12.9936424, + 52.0040974 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116055007 + } + }, + { + "id": 116054212, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2370758, + 50.8804893 + ], + [ + 3.2433469, + 50.8804893 + ], + [ + 3.2433469, + 50.8847778 + ], + [ + 3.2370758, + 50.8847778 + ], + [ + 3.2370758, + 50.8804893 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "id": 116054212 + } + }, + { + "id": 116046441, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2394918, + -39.8330898 + ], + [ + -73.236605, + -39.8330898 + ], + [ + -73.236605, + -39.8298039 + ], + [ + -73.2394918, + -39.8298039 + ], + [ + -73.2394918, + -39.8330898 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 17 + }, + "id": 116046441 + } + }, + { + "id": 116044795, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6270996, + -33.4347378 + ], + [ + -70.6270534, + -33.4347378 + ], + [ + -70.6270534, + -33.434651 + ], + [ + -70.6270996, + -33.434651 + ], + [ + -70.6270996, + -33.4347378 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 2 + }, + "id": 116044795 + } + }, + { + "id": 116037495, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2345293, + -39.8355477 + ], + [ + -73.2345223, + -39.8355477 + ], + [ + -73.2345223, + -39.8341275 + ], + [ + -73.2345293, + -39.8341275 + ], + [ + -73.2345293, + -39.8355477 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 2, + "change_within_1000m": 1, + "change_within_5000m": 1 + }, + "id": 116037495 + } + }, + { + "id": 116036589, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.0103707, + -34.4849025 + ], + [ + -72.0103707, + -34.4849025 + ], + [ + -72.0103707, + -34.4849025 + ], + [ + -72.0103707, + -34.4849025 + ], + [ + -72.0103707, + -34.4849025 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "id": 116036589 + } + }, + { + "id": 116033601, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4118342, + 50.8000429 + ], + [ + 4.4238725, + 50.8000429 + ], + [ + 4.4238725, + 50.8154343 + ], + [ + 4.4118342, + 50.8154343 + ], + [ + 4.4118342, + 50.8000429 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 116033601 + } + }, + { + "id": 116031747, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.0029577, + 52.0127636 + ], + [ + 13.0029577, + 52.0127636 + ], + [ + 13.0029577, + 52.0127636 + ], + [ + 13.0029577, + 52.0127636 + ], + [ + 13.0029577, + 52.0127636 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116031747 + } + }, + { + "id": 116030976, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2338774, + -39.8426314 + ], + [ + -73.2313772, + -39.8426314 + ], + [ + -73.2313772, + -39.8372019 + ], + [ + -73.2338774, + -39.8372019 + ], + [ + -73.2338774, + -39.8426314 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "add-image": 4 + }, + "id": 116030976 + } + }, + { + "id": 116029238, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.2718406, + 39.9679971 + ], + [ + -0.2715504, + 39.9679971 + ], + [ + -0.2715504, + 39.9680016 + ], + [ + -0.2718406, + 39.9680016 + ], + [ + -0.2718406, + 39.9679971 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 10, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_over_5000m": 13 + }, + "id": 116029238 + } + }, + { + "id": 116028144, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9936424, + 52.0040974 + ], + [ + 12.9960725, + 52.0040974 + ], + [ + 12.9960725, + 52.010104 + ], + [ + 12.9936424, + 52.010104 + ], + [ + 12.9936424, + 52.0040974 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116028144 + } + }, + { + "id": 116025432, + "type": "Feature", + "geometry": null, + "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-11T13:57:24Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_50m": 4 + }, + "id": 116025432 + } + }, + { + "id": 116023832, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4195831, + 50.7984455 + ], + [ + 4.4428133, + 50.7984455 + ], + [ + 4.4428133, + 50.8175543 + ], + [ + 4.4195831, + 50.8175543 + ], + [ + 4.4195831, + 50.7984455 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "cyclofix", + "answer": 73, + "create": 2, + "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" + }, + "id": 116023832 + } + }, + { + "id": 116022525, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9485398, + 51.143362 + ], + [ + 4.9914526, + 51.143362 + ], + [ + 4.9914526, + 51.1603375 + ], + [ + 4.9485398, + 51.1603375 + ], + [ + 4.9485398, + 51.143362 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "id": 116022525 + } + }, + { + "id": 116017341, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3440829, + 50.8156617 + ], + [ + 4.3445159, + 50.8156617 + ], + [ + 4.3445159, + 50.8189244 + ], + [ + 4.3440829, + 50.8189244 + ], + [ + 4.3440829, + 50.8156617 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 13, + "create": 5, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "move:node/9409830813": "improve_accuracy", + "deletion:node/9409852873": "testing point" + }, + "id": 116017341 + } + }, + { + "id": 116013499, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4921451, + 11.6007942 + ], + [ + 79.5210711, + 11.6007942 + ], + [ + 79.5210711, + 11.6192371 + ], + [ + 79.4921451, + 11.6192371 + ], + [ + 79.4921451, + 11.6007942 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "id": 116013499 + } + }, + { + "id": 116012876, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4739991, + 11.5995363 + ], + [ + 79.4897978, + 11.5995363 + ], + [ + 79.4897978, + 11.6052689 + ], + [ + 79.4739991, + 11.6052689 + ], + [ + 79.4739991, + 11.5995363 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "id": 116012876 + } + }, + { + "id": 116012002, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4080583, + 50.7952135 + ], + [ + 4.4342412, + 50.7952135 + ], + [ + 4.4342412, + 50.8140028 + ], + [ + 4.4080583, + 50.8140028 + ], + [ + 4.4080583, + 50.7952135 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 116012002 + } + }, + { + "id": 116010291, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8017706, + 47.9959187 + ], + [ + 11.8435514, + 47.9959187 + ], + [ + 11.8435514, + 48.0205531 + ], + [ + 11.8017706, + 48.0205531 + ], + [ + 11.8017706, + 47.9959187 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 5, + "create": 13, + "imagery": "Mapbox", + "language": "de", + "change_over_5000m": 13, + "change_within_25m": 4, + "change_within_50m": 1 + }, + "id": 116010291 + } + }, + { + "id": 116005113, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9021919, + 51.1517925 + ], + [ + 4.9021919, + 51.1517925 + ], + [ + 4.9021919, + 51.1517925 + ], + [ + 4.9021919, + 51.1517925 + ], + [ + 4.9021919, + 51.1517925 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 2 + }, + "id": 116005113 + } + }, + { + "id": 116003862, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6272975, + -33.4348693 + ], + [ + -70.6272096, + -33.4348693 + ], + [ + -70.6272096, + -33.4348034 + ], + [ + -70.6272975, + -33.4348034 + ], + [ + -70.6272975, + -33.4348693 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 3 + }, + "id": 116003862 + } + }, + { + "id": 116003662, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4704805, + 50.9594218 + ], + [ + 5.4704805, + 50.9594218 + ], + [ + 5.4704805, + 50.9594218 + ], + [ + 5.4704805, + 50.9594218 + ], + [ + 5.4704805, + 50.9594218 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 116003662 + } + }, + { + "id": 116003660, + "type": "Feature", + "geometry": null, + "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:15:54Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1 + }, + "id": 116003660 + } + }, + { + "id": 115999425, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2314676, + -39.8426803 + ], + [ + -73.2314676, + -39.8426803 + ], + [ + -73.2314676, + -39.8426803 + ], + [ + -73.2314676, + -39.8426803 + ], + [ + -73.2314676, + -39.8426803 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "id": 115999425 + } + }, + { + "id": 115996216, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.089371, + 51.2150063 + ], + [ + 4.089371, + 51.2150063 + ], + [ + 4.089371, + 51.2150063 + ], + [ + 4.089371, + 51.2150063 + ], + [ + 4.089371, + 51.2150063 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "create": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 115996216 + } + }, + { + "id": 115994137, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4704805, + 50.9594218 + ], + [ + 5.4704805, + 50.9594218 + ], + [ + 5.4704805, + 50.9594218 + ], + [ + 5.4704805, + 50.9594218 + ], + [ + 5.4704805, + 50.9594218 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 6 + }, + "id": 115994137 + } + }, + { + "id": 115983034, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.0390272, + -36.8269941 + ], + [ + -73.0390272, + -36.8269941 + ], + [ + -73.0390272, + -36.8269941 + ], + [ + -73.0390272, + -36.8269941 + ], + [ + -73.0390272, + -36.8269941 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "id": 115983034 + } + }, + { + "id": 115980194, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1877062, + 51.1943474 + ], + [ + 3.1995642, + 51.1943474 + ], + [ + 3.1995642, + 51.3137457 + ], + [ + 3.1877062, + 51.3137457 + ], + [ + 3.1877062, + 51.1943474 + ] + ] + ] + }, + "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": 3, + "modify": 12, + "delete": 0, + "area": 0.00141582504140002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 16, + "create": 4, + "imagery": "AGIV", + "language": "nl", + "add-image": 9 + }, + "id": 115980194 + } + }, + { + "id": 115978482, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5348958, + 51.2243178 + ], + [ + 4.5348958, + 51.2243178 + ], + [ + 4.5348958, + 51.2243178 + ], + [ + 4.5348958, + 51.2243178 + ], + [ + 4.5348958, + 51.2243178 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_25m": 1 + }, + "id": 115978482 + } + }, + { + "id": 115973296, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5200989, + 51.2230489 + ], + [ + 4.5351329, + 51.2230489 + ], + [ + 4.5351329, + 51.2296476 + ], + [ + 4.5200989, + 51.2296476 + ], + [ + 4.5200989, + 51.2230489 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 197, + "create": 34, + "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" + }, + "id": 115973296 + } + }, + { + "id": 115972849, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5232782, + 51.2275302 + ], + [ + 4.5233198, + 51.2275302 + ], + [ + 4.5233198, + 51.2275405 + ], + [ + 4.5232782, + 51.2275405 + ], + [ + 4.5232782, + 51.2275302 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 8, + "create": 1, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 10, + "deletion:node/9407051399": "duplicate" + }, + "id": 115972849 + } + }, + { + "id": 115962545, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2317384, + -39.842422 + ], + [ + -73.2317384, + -39.842422 + ], + [ + -73.2317384, + -39.842422 + ], + [ + -73.2317384, + -39.842422 + ], + [ + -73.2317384, + -39.842422 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115962545 + } + }, + { + "id": 115962540, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2324501, + -39.8425259 + ], + [ + -73.2324501, + -39.8425259 + ], + [ + -73.2324501, + -39.8425259 + ], + [ + -73.2324501, + -39.8425259 + ], + [ + -73.2324501, + -39.8425259 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "id": 115962540 + } + }, + { + "id": 115960136, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2324501, + -39.8426063 + ], + [ + -73.2315092, + -39.8426063 + ], + [ + -73.2315092, + -39.842422 + ], + [ + -73.2324501, + -39.842422 + ], + [ + -73.2324501, + -39.8426063 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 4, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 115960136 + } + }, + { + "id": 115955282, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6867004, + 51.1457371 + ], + [ + 4.687165, + 51.1457371 + ], + [ + 4.687165, + 51.1459281 + ], + [ + 4.6867004, + 51.1459281 + ], + [ + 4.6867004, + 51.1457371 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "nl" + }, + "id": 115955282 + } + }, + { + "id": 115954427, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.2934037, + 51.4646394 + ], + [ + 7.3200513, + 51.4646394 + ], + [ + 7.3200513, + 51.470511 + ], + [ + 7.2934037, + 51.470511 + ], + [ + 7.2934037, + 51.4646394 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 7, + "imagery": "Metropole_Ruhr_RVR-DOP10", + "language": "de" + }, + "id": 115954427 + } + }, + { + "id": 115953713, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8697681, + 51.1489791 + ], + [ + 3.8697681, + 51.1489791 + ], + [ + 3.8697681, + 51.1489791 + ], + [ + 3.8697681, + 51.1489791 + ], + [ + 3.8697681, + 51.1489791 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115953713 + } + }, + { + "id": 115952616, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.3189929, + 51.4429005 + ], + [ + 7.320312, + 51.4429005 + ], + [ + 7.320312, + 51.444369 + ], + [ + 7.3189929, + 51.444369 + ], + [ + 7.3189929, + 51.4429005 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "Metropole_Ruhr_RVR-DOP10", + "language": "de" + }, + "id": 115952616 + } + }, + { + "id": 115952474, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.319, + 51.4428482 + ], + [ + 7.3203789, + 51.4428482 + ], + [ + 7.3203789, + 51.4444251 + ], + [ + 7.319, + 51.4444251 + ], + [ + 7.319, + 51.4428482 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 8, + "imagery": "Metropole_Ruhr_RVR-DOP10", + "language": "de" + }, + "id": 115952474 + } + }, + { + "id": 115949555, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6558192, + -33.4643634 + ], + [ + -70.6558192, + -33.4643634 + ], + [ + -70.6558192, + -33.4643634 + ], + [ + -70.6558192, + -33.4643634 + ], + [ + -70.6558192, + -33.4643634 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115949555 + } + }, + { + "id": 115946883, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.3928457, + -39.7804562 + ], + [ + -73.3928457, + -39.7804562 + ], + [ + -73.3928457, + -39.7804562 + ], + [ + -73.3928457, + -39.7804562 + ], + [ + -73.3928457, + -39.7804562 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 7, + "create": 1, + "imagery": "Mapbox", + "language": "en", + "add-image": 1 + }, + "id": 115946883 + } + }, + { + "id": 115945379, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.6892182, + 55.7020891 + ], + [ + 37.6892182, + 55.7020891 + ], + [ + 37.6892182, + 55.7020891 + ], + [ + 37.6892182, + 55.7020891 + ], + [ + 37.6892182, + 55.7020891 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 115945379 + } + }, + { + "id": 115945142, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9844639, + 51.157791 + ], + [ + 4.9865429, + 51.157791 + ], + [ + 4.9865429, + 51.1585648 + ], + [ + 4.9844639, + 51.1585648 + ], + [ + 4.9844639, + 51.157791 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 30, + "theme": "grb", + "delete": 4, + "import": 2, + "imagery": "osm", + "language": "nl", + "conflation": 8 + }, + "id": 115945142 + } + }, + { + "id": 115941891, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.277595, + 51.255429 + ], + [ + 3.277595, + 51.255429 + ], + [ + 3.277595, + 51.255429 + ], + [ + 3.277595, + 51.255429 + ], + [ + 3.277595, + 51.255429 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "answer": 1, + "create": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 115941891 + } + }, + { + "id": 115938240, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.0885701, + 39.4871127 + ], + [ + -1.0884062, + 39.4871127 + ], + [ + -1.0884062, + 39.4871639 + ], + [ + -1.0885701, + 39.4871639 + ], + [ + -1.0885701, + 39.4871127 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 10, + "imagery": "osm", + "language": "en", + "change_within_25m": 10 + }, + "id": 115938240 + } + }, + { + "id": 115938163, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4740174, + 11.6006804 + ], + [ + 79.5484401, + 11.6006804 + ], + [ + 79.5484401, + 11.6258745 + ], + [ + 79.4740174, + 11.6258745 + ], + [ + 79.4740174, + 11.6006804 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "imagery": "osm", + "language": "en" + }, + "id": 115938163 + } + }, + { + "id": 115938118, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4833229, + 11.6005338 + ], + [ + 79.4906016, + 11.6005338 + ], + [ + 79.4906016, + 11.6006804 + ], + [ + 79.4833229, + 11.6006804 + ], + [ + 79.4833229, + 11.6005338 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115938118 + } + }, + { + "id": 115938100, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9848231, + 51.1572213 + ], + [ + 4.9849281, + 51.1572213 + ], + [ + 4.9849281, + 51.1573563 + ], + [ + 4.9848231, + 51.1573563 + ], + [ + 4.9848231, + 51.1572213 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 115938100 + } + }, + { + "id": 115936927, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9638295, + 50.4113983 + ], + [ + 2.9955233, + 50.4113983 + ], + [ + 2.9955233, + 50.4261249 + ], + [ + 2.9638295, + 50.4261249 + ], + [ + 2.9638295, + 50.4113983 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 56, + "imagery": "osm", + "language": "en" + }, + "id": 115936927 + } + }, + { + "id": 115936202, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9847771, + 51.1572213 + ], + [ + 4.9863854, + 51.1572213 + ], + [ + 4.9863854, + 51.1579417 + ], + [ + 4.9847771, + 51.1579417 + ], + [ + 4.9847771, + 51.1572213 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 9, + "theme": "grb", + "answer": 12, + "import": 4, + "imagery": "osm", + "language": "en", + "conflation": 4 + }, + "id": 115936202 + } + }, + { + "id": 115935514, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.062425, + 39.2304467 + ], + [ + -1.062425, + 39.2304467 + ], + [ + -1.062425, + 39.2304467 + ], + [ + -1.062425, + 39.2304467 + ], + [ + -1.062425, + 39.2304467 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 115935514 + } + }, + { + "id": 115933668, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9735057, + 51.1517076 + ], + [ + 4.9738521, + 51.1517076 + ], + [ + 4.9738521, + 51.1519496 + ], + [ + 4.9735057, + 51.1519496 + ], + [ + 4.9735057, + 51.1517076 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 13, + "theme": "grb", + "imagery": "osm", + "language": "en", + "conflation": 2 + }, + "id": 115933668 + } + }, + { + "id": 115932256, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0092833, + 51.127455 + ], + [ + 5.0113532, + 51.127455 + ], + [ + 5.0113532, + 51.1275198 + ], + [ + 5.0092833, + 51.1275198 + ], + [ + 5.0092833, + 51.127455 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_1000m": 1 + }, + "id": 115932256 + } + }, + { + "id": 115913950, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2336021, + 50.7343963 + ], + [ + 4.2336021, + 50.7343963 + ], + [ + 4.2336021, + 50.7343963 + ], + [ + 4.2336021, + 50.7343963 + ], + [ + 4.2336021, + 50.7343963 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 4 + }, + "id": 115913950 + } + }, + { + "id": 115906261, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3345334, + 51.1346418 + ], + [ + 3.3345334, + 51.1346418 + ], + [ + 3.3345334, + 51.1346418 + ], + [ + 3.3345334, + 51.1346418 + ], + [ + 3.3345334, + 51.1346418 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115906261 + } + }, + { + "id": 115901766, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.639019, + 51.7428952 + ], + [ + 14.6397485, + 51.7428952 + ], + [ + 14.6397485, + 51.7450874 + ], + [ + 14.639019, + 51.7450874 + ], + [ + 14.639019, + 51.7428952 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115901766 + } + }, + { + "id": 115901430, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3348884, + 51.1343081 + ], + [ + 3.3348884, + 51.1343081 + ], + [ + 3.3348884, + 51.1343081 + ], + [ + 3.3348884, + 51.1343081 + ], + [ + 3.3348884, + 51.1343081 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115901430 + } + }, + { + "id": 115893804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6322514, + 49.8746459 + ], + [ + 8.6477783, + 49.8746459 + ], + [ + 8.6477783, + 49.8756882 + ], + [ + 8.6322514, + 49.8756882 + ], + [ + 8.6322514, + 49.8746459 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 58, + "imagery": "osm", + "language": "en" + }, + "id": 115893804 + } + }, + { + "id": 115887609, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1072272, + 38.8399887 + ], + [ + 0.1123066, + 38.8399887 + ], + [ + 0.1123066, + 38.8415088 + ], + [ + 0.1072272, + 38.8415088 + ], + [ + 0.1072272, + 38.8399887 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "language": "en", + "add-image": 1 + }, + "id": 115887609 + } + }, + { + "id": 115887543, + "type": "Feature", + "geometry": null, + "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:26:39Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115887543 + } + }, + { + "id": 115887517, + "type": "Feature", + "geometry": null, + "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:25:53Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "language": "en", + "add-image": 1 + }, + "id": 115887517 + } + }, + { + "id": 115886195, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9998437, + 52.0041486 + ], + [ + 13.0022745, + 52.0041486 + ], + [ + 13.0022745, + 52.0161065 + ], + [ + 12.9998437, + 52.0161065 + ], + [ + 12.9998437, + 52.0041486 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115886195 + } + }, + { + "id": 115884163, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.029942, + 51.0562571 + ], + [ + 4.0390112, + 51.0562571 + ], + [ + 4.0390112, + 51.0604808 + ], + [ + 4.029942, + 51.0604808 + ], + [ + 4.029942, + 51.0562571 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "id": 115884163 + } + }, + { + "id": 115878146, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9487598, + 51.9993197 + ], + [ + 13.0021995, + 51.9993197 + ], + [ + 13.0021995, + 52.0260164 + ], + [ + 12.9487598, + 52.0260164 + ], + [ + 12.9487598, + 51.9993197 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115878146 + } + }, + { + "id": 115873248, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.6015105, + 55.6934216 + ], + [ + 37.6911549, + 55.6934216 + ], + [ + 37.6911549, + 55.7140255 + ], + [ + 37.6015105, + 55.7140255 + ], + [ + 37.6015105, + 55.6934216 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "split": 4, + "theme": "street_lighting", + "answer": 28, + "imagery": "osm", + "language": "en", + "change_over_5000m": 16, + "change_within_5000m": 6 + }, + "id": 115873248 + } + }, + { + "id": 115873049, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.6210678, + 55.7119553 + ], + [ + 37.6210678, + 55.7119553 + ], + [ + 37.6210678, + 55.7119553 + ], + [ + 37.6210678, + 55.7119553 + ], + [ + 37.6210678, + 55.7119553 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "id": 115873049 + } + }, + { + "id": 115870453, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9501108, + 50.4053233 + ], + [ + 2.9626946, + 50.4053233 + ], + [ + 2.9626946, + 50.4203332 + ], + [ + 2.9501108, + 50.4203332 + ], + [ + 2.9501108, + 50.4053233 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 64, + "imagery": "osm", + "language": "en" + }, + "id": 115870453 + } + }, + { + "id": 115858404, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9229867, + 40.7063598 + ], + [ + -73.9227185, + 40.7063598 + ], + [ + -73.9227185, + 40.7066288 + ], + [ + -73.9229867, + 40.7066288 + ], + [ + -73.9229867, + 40.7063598 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 12, + "create": 3, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 13 + }, + "id": 115858404 + } + }, + { + "id": 115858321, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1002454, + 38.8377718 + ], + [ + 0.1007822, + 38.8377718 + ], + [ + 0.1007822, + 38.8387142 + ], + [ + 0.1002454, + 38.8387142 + ], + [ + 0.1002454, + 38.8377718 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "id": 115858321 + } + }, + { + "id": 115858222, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8394288, + 50.8307363 + ], + [ + 3.8394288, + 50.8307363 + ], + [ + 3.8394288, + 50.8307363 + ], + [ + 3.8394288, + 50.8307363 + ], + [ + 3.8394288, + 50.8307363 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 115858222 + } + }, { "id": 115852335, "type": "Feature", @@ -8,24 +9844,24 @@ "coordinates": [ [ [ - 4.7380407, - 51.167627 + 4.7196162, + 51.1562979 ], [ - 4.7390456, - 51.167627 + 4.9928162, + 51.1562979 ], [ - 4.7390456, - 51.170221 + 4.9928162, + 51.3701885 ], [ - 4.7380407, - 51.170221 + 4.7196162, + 51.3701885 ], [ - 4.7380407, - 51.167627 + 4.7196162, + 51.1562979 ] ] ] @@ -45,9 +9881,9 @@ "date": "2022-01-06T20:20:12Z", "reviewed_features": [], "create": 0, - "modify": 1, + "modify": 61, "delete": 0, - "area": 0.0000026067105999945, + "area": 0.0584349119199998, "is_suspect": false, "harmful": null, "checked": false, @@ -55,10 +9891,11 @@ "metadata": { "host": "mapcomplete.osm.be", "theme": "etymology", - "answer": 1, + "answer": 90, "imagery": "osm", "language": "nl" - } + }, + "id": 115852335 } }, { @@ -120,7 +9957,8 @@ "imagery": "osm", "language": "it", "change_within_1000m": 1 - } + }, + "id": 115851905 } }, { @@ -132,23 +9970,23 @@ [ [ 12.9934294, - 52.012867 + 52.0045643 + ], + [ + 13.0039313, + 52.0045643 + ], + [ + 13.0039313, + 52.0161692 ], [ 12.9934294, - 52.012867 + 52.0161692 ], [ 12.9934294, - 52.012867 - ], - [ - 12.9934294, - 52.012867 - ], - [ - 12.9934294, - 52.012867 + 52.0045643 ] ] ] @@ -172,10 +10010,10 @@ "imagery_used": "Not reported", "date": "2022-01-06T19:49:33Z", "reviewed_features": [], - "create": 1, - "modify": 1, + "create": 3, + "modify": 5, "delete": 0, - "area": 0, + "area": 0.000121873499310013, "is_suspect": true, "harmful": null, "checked": false, @@ -186,7 +10024,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115851354 } }, { @@ -247,7 +10086,8 @@ "answer": 7, "imagery": "osm", "language": "nl" - } + }, + "id": 115845026 } }, { @@ -308,7 +10148,8 @@ "answer": 31, "imagery": "osm", "language": "en" - } + }, + "id": 115841923 } }, { @@ -369,7 +10210,8 @@ "answer": 3, "imagery": "osm", "language": "en" - } + }, + "id": 115841155 } }, { @@ -434,7 +10276,8 @@ "add-image": 1, "change_over_5000m": 2, "change_within_25m": 13 - } + }, + "id": 115839538 } }, { @@ -503,7 +10346,8 @@ "language": "nl", "change_over_5000m": 4, "change_within_25m": 24 - } + }, + "id": 115839019 } }, { @@ -564,7 +10408,8 @@ "answer": 108, "imagery": "osm", "language": "en" - } + }, + "id": 115833953 } }, { @@ -632,7 +10477,8 @@ "imagery": "CartoDB.Positron", "language": "en", "add-image": 1 - } + }, + "id": 115833945 } }, { @@ -693,7 +10539,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115833798 } }, { @@ -758,7 +10605,8 @@ "language": "en", "conflation": 92, "change_over_5000m": 11 - } + }, + "id": 115833348 } }, { @@ -826,7 +10674,8 @@ "imagery": "CartoDB.Positron", "language": "en", "add-image": 1 - } + }, + "id": 115830485 } }, { @@ -892,7 +10741,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115829566 } }, { @@ -954,7 +10804,8 @@ "import": 30, "imagery": "osm", "language": "nl" - } + }, + "id": 115828252 } }, { @@ -1015,7 +10866,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115826484 } }, { @@ -1076,7 +10928,8 @@ "answer": 8, "imagery": "osm", "language": "en" - } + }, + "id": 115824863 } }, { @@ -1139,7 +10992,8 @@ "imagery": "osm", "language": "nl", "conflation": 108 - } + }, + "id": 115824089 } }, { @@ -1200,7 +11054,8 @@ "answer": 26, "imagery": "osm", "language": "en" - } + }, + "id": 115823852 } }, { @@ -1264,7 +11119,8 @@ "language": "en", "conflation": 2, "change_over_5000m": 1 - } + }, + "id": 115818094 } }, { @@ -1325,7 +11181,8 @@ "answer": 12, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 115817776 } }, { @@ -1387,7 +11244,8 @@ "deletion": 1, "language": "en", "deletion:node/9209701507": "disused" - } + }, + "id": 115817760 } }, { @@ -1448,7 +11306,8 @@ "answer": 113, "imagery": "osm", "language": "en" - } + }, + "id": 115817746 } }, { @@ -1509,7 +11368,8 @@ "answer": 8, "imagery": "osm", "language": "en" - } + }, + "id": 115817699 } }, { @@ -1570,7 +11430,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 115817559 } }, { @@ -1631,7 +11492,8 @@ "answer": 82, "imagery": "osm", "language": "en" - } + }, + "id": 115817524 } }, { @@ -1692,7 +11554,8 @@ "answer": 23, "imagery": "osm", "language": "en" - } + }, + "id": 115817395 } }, { @@ -1753,7 +11616,8 @@ "answer": 40, "imagery": "osm", "language": "en" - } + }, + "id": 115817328 } }, { @@ -1814,7 +11678,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 115811487 } }, { @@ -1849,7 +11714,8 @@ "answer": 21, "imagery": "osm", "language": "en" - } + }, + "id": 115811245 } }, { @@ -1910,7 +11776,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 115806717 } }, { @@ -1971,7 +11838,8 @@ "answer": 74, "imagery": "osm", "language": "en" - } + }, + "id": 115803870 } }, { @@ -2032,7 +11900,8 @@ "answer": 3, "imagery": "osm", "language": "ca" - } + }, + "id": 115802119 } }, { @@ -2093,7 +11962,8 @@ "answer": 3, "imagery": "HDM_HOT", "language": "en" - } + }, + "id": 115802000 } }, { @@ -2156,7 +12026,8 @@ "imagery": "CartoDB.VoyagerNoLabels", "language": "nl", "conflation": 6 - } + }, + "id": 115801007 } }, { @@ -2217,7 +12088,8 @@ "answer": 10, "imagery": "osm", "language": "en" - } + }, + "id": 115799658 } }, { @@ -2278,7 +12150,8 @@ "answer": 23, "imagery": "osm", "language": "en" - } + }, + "id": 115797987 } }, { @@ -2339,7 +12212,8 @@ "answer": 10, "imagery": "osm", "language": "ca" - } + }, + "id": 115797836 } }, { @@ -2400,7 +12274,8 @@ "answer": 54, "imagery": "osm", "language": "en" - } + }, + "id": 115793506 } }, { @@ -2461,7 +12336,8 @@ "answer": 36, "imagery": "osm", "language": "en" - } + }, + "id": 115793065 } }, { @@ -2525,7 +12401,8 @@ "language": "nl", "change_over_5000m": 1, "change_within_25m": 5 - } + }, + "id": 115792041 } }, { @@ -2588,7 +12465,8 @@ "imagery": "osm", "language": "en", "change_within_50m": 1 - } + }, + "id": 115775141 } }, { @@ -2649,7 +12527,8 @@ "answer": 3, "imagery": "osm", "language": "nl" - } + }, + "id": 115771036 } }, { @@ -2710,7 +12589,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 115770767 } }, { @@ -2771,7 +12651,8 @@ "answer": 4, "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 115768749 } }, { @@ -2832,7 +12713,8 @@ "answer": 26, "imagery": "osm", "language": "en" - } + }, + "id": 115765221 } }, { @@ -2895,7 +12777,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 1 - } + }, + "id": 115763689 } }, { @@ -2956,7 +12839,8 @@ "answer": 21, "imagery": "osm", "language": "en" - } + }, + "id": 115762756 } }, { @@ -3021,7 +12905,8 @@ "language": "en", "change_within_25m": 6, "move:node/1641770246": "improve_accuracy" - } + }, + "id": 115754753 } }, { @@ -3082,7 +12967,8 @@ "answer": 21, "imagery": "osm", "language": "en" - } + }, + "id": 115744562 } }, { @@ -3143,7 +13029,8 @@ "answer": 4, "imagery": "CartoDB.Voyager", "language": "nl" - } + }, + "id": 115744161 } }, { @@ -3204,7 +13091,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 115734275 } }, { @@ -3267,7 +13155,8 @@ "imagery": "osm", "language": "en", "change_over_5000m": 1 - } + }, + "id": 115729742 } }, { @@ -3328,7 +13217,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115724617 } }, { @@ -3363,7 +13253,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 115724224 } }, { @@ -3424,7 +13315,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 115724223 } }, { @@ -3488,7 +13380,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 6 - } + }, + "id": 115724187 } }, { @@ -3550,7 +13443,8 @@ "create": 5, "imagery": "osm", "language": "en" - } + }, + "id": 115723173 } }, { @@ -3611,7 +13505,8 @@ "answer": 166, "imagery": "osm", "language": "en" - } + }, + "id": 115718405 } }, { @@ -3676,7 +13571,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 9 - } + }, + "id": 115717988 } }, { @@ -3743,7 +13639,8 @@ "create": 2, "imagery": "osm", "language": "en" - } + }, + "id": 115717311 } }, { @@ -3807,7 +13704,8 @@ "imagery": "osm", "language": "en", "move:node/9388469173": "improve_accuracy" - } + }, + "id": 115715565 } }, { @@ -3869,7 +13767,8 @@ "imagery": "CartoDB.VoyagerNoLabels", "language": "de", "change_over_5000m": 6 - } + }, + "id": 115714829 } }, { @@ -3934,7 +13833,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 7 - } + }, + "id": 115708435 } }, { @@ -3998,7 +13898,8 @@ "imagery": "osm", "language": "en", "change_over_5000m": 6 - } + }, + "id": 115701407 } }, { @@ -4060,7 +13961,8 @@ "answer": 1, "imagery": "AGIV", "language": "nl" - } + }, + "id": 115686930 } }, { @@ -4122,7 +14024,8 @@ "imagery": "osm", "language": "en", "conflation": 4 - } + }, + "id": 115685951 } }, { @@ -4183,7 +14086,8 @@ "answer": 8, "imagery": "osm", "language": "en" - } + }, + "id": 115681205 } }, { @@ -4244,7 +14148,8 @@ "answer": 120, "imagery": "osm", "language": "en" - } + }, + "id": 115680001 } }, { @@ -4309,7 +14214,8 @@ "language": "en", "change_over_5000m": 1, "change_within_25m": 4 - } + }, + "id": 115676863 } }, { @@ -4371,7 +14277,8 @@ "imagery": "AGIV", "language": "nl", "conflation": 8 - } + }, + "id": 115674924 } }, { @@ -4436,7 +14343,8 @@ "language": "nl", "change_over_5000m": 1, "change_within_50m": 3 - } + }, + "id": 115673330 } }, { @@ -4497,7 +14405,8 @@ "imagery": "osm", "language": "de", "theme-creator": "Sebastian Kürten" - } + }, + "id": 115672066 } }, { @@ -4560,7 +14469,8 @@ "language": "en", "add-image": 2, "change_within_25m": 2 - } + }, + "id": 115665991 } }, { @@ -4639,7 +14549,8 @@ "imagery": "osm", "language": "en", "change_within_5000m": 2 - } + }, + "id": 115658538 } }, { @@ -4701,7 +14612,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "change_within_5000m": 2 - } + }, + "id": 115656452 } }, { @@ -4762,7 +14674,8 @@ "answer": 26, "imagery": "osm", "language": "en" - } + }, + "id": 115649888 } }, { @@ -4825,7 +14738,8 @@ "imagery": "osm", "language": "en", "change_within_25m": 2 - } + }, + "id": 115648184 } }, { @@ -4890,7 +14804,8 @@ "language": "en", "change_within_25m": 2, "move:node/3328029031": "improve_accuracy" - } + }, + "id": 115648155 } }, { @@ -4953,7 +14868,8 @@ "imagery": "osm", "language": "en", "change_within_500m": 4 - } + }, + "id": 115642342 } }, { @@ -5016,7 +14932,8 @@ "create": 1, "imagery": "Actueel_orthoHR_WMTS", "language": "nl" - } + }, + "id": 115640953 } }, { @@ -5079,7 +14996,8 @@ "language": "en", "add-image": 1, "change_within_25m": 1 - } + }, + "id": 115639107 } }, { @@ -5145,7 +15063,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 8 - } + }, + "id": 115636703 } }, { @@ -5211,7 +15130,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_25m": 8 - } + }, + "id": 115636600 } }, { @@ -5276,7 +15196,8 @@ "add-image": 1, "change_over_5000m": 1, "change_within_500m": 1 - } + }, + "id": 115635874 } }, { @@ -5342,7 +15263,8 @@ "change_over_5000m": 2, "change_within_50m": 13, "change_within_500m": 8 - } + }, + "id": 115634750 } }, { @@ -5404,7 +15326,8 @@ "answer": 1, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 115634157 } }, { @@ -5471,7 +15394,8 @@ "add-image": 3, "move:node/9383390008": "improve_accuracy", "move:node/9383440696": "improve_accuracy" - } + }, + "id": 115633100 } }, { @@ -5534,7 +15458,8 @@ "imagery": "osm", "language": "nl", "conflation": 2 - } + }, + "id": 115632852 } }, { @@ -5597,7 +15522,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "change_over_5000m": 1 - } + }, + "id": 115626287 } }, { @@ -5660,7 +15586,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "change_over_5000m": 3 - } + }, + "id": 115626265 } }, { @@ -5724,7 +15651,8 @@ "language": "nl", "conflation": 6, "change_over_5000m": 3 - } + }, + "id": 115625603 } } ] diff --git a/Docs/URL_Parameters.md b/Docs/URL_Parameters.md index 7a6109c006..feff2b83db 100644 --- a/Docs/URL_Parameters.md +++ b/Docs/URL_Parameters.md @@ -3,7 +3,9 @@ URL-parameters and URL-hash ============================= - ## Table of contents + + +## Table of contents 1. [URL-parameters and URL-hash](#url-parameters-and-url-hash) - [What is a URL parameter?](#what-is-a-url-parameter) @@ -31,128 +33,186 @@ - [background](#background) - [layer-<layer-id>](#layer-<layer-id>) - This document gives an overview of which URL-parameters can be used to influence MapComplete. + + +This document gives an overview of which URL-parameters can be used to influence MapComplete. + + What is a URL parameter? -------------------------- - "URL-parameters are extra parts of the URL used to set the state. For example, if the url is `https://mapcomplete.osm.be/cyclofix?lat=51.0&lon=4.3&z=5&test=true#node/1234`, the URL-parameters are stated in the part between the `?` and the `#`. There are multiple, all separated by `&`, namely: + + +"URL-parameters are extra parts of the URL used to set the state. + +For example, if the url is `https://mapcomplete.osm.be/cyclofix?lat=51.0&lon=4.3&z=5&test=true#node/1234`, the URL-parameters are stated in the part between the `?` and the `#`. There are multiple, all separated by `&`, namely: + + - The url-parameter `lat` is `51.0` in this instance - The url-parameter `lon` is `4.3` in this instance - The url-parameter `z` is `5` in this instance - The url-parameter `test` is `true` in this instance - Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case. + + +Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case. + + fs-userbadge -------------- - Disables/Enables the user information pill (userbadge) at the top left. Disabling this disables logging in and thus disables editing all together, effectively putting MapComplete into read-only mode. The default value is _true_ + Disables/Enables the user information pill (userbadge) at the top left. Disabling this disables logging in and thus disables editing all together, effectively putting MapComplete into read-only mode. The default value is _true_ + + fs-search ----------- - Disables/Enables the search bar The default value is _true_ + Disables/Enables the search bar The default value is _true_ + + fs-background --------------- - Disables/Enables the background layer control The default value is _true_ + Disables/Enables the background layer control The default value is _true_ + + fs-filter ----------- - Disables/Enables the filter The default value is _true_ + Disables/Enables the filter The default value is _true_ + + fs-add-new ------------ - Disables/Enables the 'add new feature'-popup. (A theme without presets might not have it in the first place) The default value is _true_ + Disables/Enables the 'add new feature'-popup. (A theme without presets might not have it in the first place) The default value is _true_ + + fs-welcome-message -------------------- - Disables/enables the help menu or welcome message The default value is _true_ + Disables/enables the help menu or welcome message The default value is _true_ + + fs-iframe-popout ------------------ - Disables/Enables the iframe-popout button. If in iframe mode and the welcome message is hidden, a popout button to the full mapcomplete instance is shown instead (unless disabled with this switch) The default value is _true_ + Disables/Enables the iframe-popout button. If in iframe mode and the welcome message is hidden, a popout button to the full mapcomplete instance is shown instead (unless disabled with this switch) The default value is _true_ + + fs-more-quests ---------------- - Disables/Enables the 'More Quests'-tab in the welcome message The default value is _true_ + Disables/Enables the 'More Quests'-tab in the welcome message The default value is _true_ + + fs-share-screen ----------------- - Disables/Enables the 'Share-screen'-tab in the welcome message The default value is _true_ + Disables/Enables the 'Share-screen'-tab in the welcome message The default value is _true_ + + fs-geolocation ---------------- - Disables/Enables the geolocation button The default value is _true_ + Disables/Enables the geolocation button The default value is _true_ + + fs-all-questions ------------------ - Always show all questions The default value is _false_ + Always show all questions The default value is _false_ + + fs-export ----------- - Enable the export as GeoJSON and CSV button The default value is _false_ + Enable the export as GeoJSON and CSV button The default value is _false_ + + fs-pdf -------- - Enable the PDF download button The default value is _false_ + Enable the PDF download button The default value is _false_ + + backend --------- - The OSM backend to use - can be used to redirect mapcomplete to the testing backend when using 'osm-test' The default value is _osm_ + The OSM backend to use - can be used to redirect mapcomplete to the testing backend when using 'osm-test' The default value is _osm_ + + test ------ - If true, 'dryrun' mode is activated. The app will behave as normal, except that changes to OSM will be printed onto the console instead of actually uploaded to osm.org The default value is _false_ + If true, 'dryrun' mode is activated. The app will behave as normal, except that changes to OSM will be printed onto the console instead of actually uploaded to osm.org The default value is _false_ + + debug ------- - If true, shows some extra debugging help such as all the available tags on every object The default value is _false_ + If true, shows some extra debugging help such as all the available tags on every object The default value is _false_ + + fake-user ----------- - If true, 'dryrun' mode is activated and a fake user account is loaded The default value is _false_ + If true, 'dryrun' mode is activated and a fake user account is loaded The default value is _false_ + + overpassUrl ------------- - Point mapcomplete to a different overpass-instance. Example: https://overpass-api.de/api/interpreter The default value is _https://overpass-api.de/api/interpreter,https://overpass.kumi.systems/api/interpreter,https://overpass.openstreetmap.ru/cgi/interpreter_ + Point mapcomplete to a different overpass-instance. Example: https://overpass-api.de/api/interpreter The default value is _https://overpass-api.de/api/interpreter,https://overpass.kumi.systems/api/interpreter,https://overpass.openstreetmap.ru/cgi/interpreter_ + + overpassTimeout ----------------- - Set a different timeout (in seconds) for queries in overpass The default value is _30_ + Set a different timeout (in seconds) for queries in overpass The default value is _30_ + + overpassMaxZoom ----------------- - point to switch between OSM-api and overpass The default value is _17_ + point to switch between OSM-api and overpass The default value is _16_ + + osmApiTileSize ---------------- - Tilesize when the OSM-API is used to fetch data within a BBOX The default value is _18_ + Tilesize when the OSM-API is used to fetch data within a BBOX The default value is _17_ + + background ------------ - The id of the background layer to start with The default value is _osm_ + The id of the background layer to start with The default value is _osm_ + + layer-<layer-id> ------------------------ diff --git a/Docs/warning.svg b/Docs/warning.svg new file mode 100644 index 0000000000..82f1f8acd2 --- /dev/null +++ b/Docs/warning.svg @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Logic/Actors/AvailableBaseLayersImplementation.ts b/Logic/Actors/AvailableBaseLayersImplementation.ts index 13bc06898d..39dcdc4b17 100644 --- a/Logic/Actors/AvailableBaseLayersImplementation.ts +++ b/Logic/Actors/AvailableBaseLayersImplementation.ts @@ -156,11 +156,12 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL const isUpper = urlObj.searchParams["LAYERS"] !== null; const options = { - maxZoom: maxZoom ?? 19, + maxZoom: Math.max(maxZoom ?? 19, 21), + maxNativeZoom: maxZoom ?? 19, attribution: attribution + " | ", subdomains: domains, uppercase: isUpper, - transparent: false + transparent: false, }; for (const paramater of paramaters) { @@ -186,8 +187,9 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL return L.tileLayer(url, { attribution: attribution, - maxZoom: maxZoom, - minZoom: 1, + maxZoom: Math.max(21, maxZoom ?? 19), + maxNativeZoom: maxZoom ?? 19, + minZoom: 1, // @ts-ignore wmts: isWMTS ?? false, subdomains: domains diff --git a/Logic/Actors/InstalledThemes.ts b/Logic/Actors/InstalledThemes.ts deleted file mode 100644 index b57468524d..0000000000 --- a/Logic/Actors/InstalledThemes.ts +++ /dev/null @@ -1,61 +0,0 @@ -import {UIEventSource} from "../UIEventSource"; -import {OsmConnection} from "../Osm/OsmConnection"; -import {Utils} from "../../Utils"; -import LZString from "lz-string"; -import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; - -export default class InstalledThemes { - public installedThemes: UIEventSource<{ layout: LayoutConfig; definition: string }[]>; - - constructor(osmConnection: OsmConnection) { - this.installedThemes = osmConnection.preferencesHandler.preferences.map<{ layout: LayoutConfig, definition: string }[]>(allPreferences => { - const installedThemes: { layout: LayoutConfig, definition: string }[] = []; - if (allPreferences === undefined) { - console.log("All prefs is undefined"); - return installedThemes; - } - const invalidThemes = [] - for (const allPreferencesKey in allPreferences) { - const themename = allPreferencesKey.match(/^mapcomplete-installed-theme-(.*)-combined-length$/); - if (themename && themename[1] !== "") { - const customLayout = osmConnection.GetLongPreference("installed-theme-" + themename[1]); - if (customLayout.data === undefined) { - console.log("No data defined for ", themename[1]); - continue; - } - try { - let layoutJson; - try { - layoutJson = JSON.parse(atob(customLayout.data)) - } catch (e) { - layoutJson = JSON.parse(Utils.UnMinify(LZString.decompressFromBase64(customLayout.data))) - } - const layout = new LayoutConfig(layoutJson, false); - installedThemes.push({ - layout: layout, - definition: customLayout.data - }); - } catch (e) { - console.warn("Could not parse custom layout from preferences - deleting: ", allPreferencesKey, e, customLayout.data); - invalidThemes.push(themename[1]) - } - } - } - - InstalledThemes.DeleteInvalid(osmConnection, invalidThemes); - - return installedThemes; - - }); - } - - private static DeleteInvalid(osmConnection: OsmConnection, invalidThemes: any[]) { - for (const invalid of invalidThemes) { - console.error("Attempting to remove ", invalid) - osmConnection.GetLongPreference( - "installed-theme-" + invalid - ).setData(null); - } - } - -} \ No newline at end of file diff --git a/Logic/Actors/OverpassFeatureSource.ts b/Logic/Actors/OverpassFeatureSource.ts index a630d98808..fbd4bd911b 100644 --- a/Logic/Actors/OverpassFeatureSource.ts +++ b/Logic/Actors/OverpassFeatureSource.ts @@ -10,7 +10,9 @@ import RelationsTracker from "../Osm/RelationsTracker"; import {BBox} from "../BBox"; import Loc from "../../Models/Loc"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; -import AllKnownLayers from "../../Customizations/AllKnownLayers"; +import Constants from "../../Models/Constants"; +import TileFreshnessCalculator from "../FeatureSource/TileFreshnessCalculator"; +import {Tiles} from "../../Models/TileRange"; export default class OverpassFeatureSource implements FeatureSource { @@ -38,9 +40,18 @@ export default class OverpassFeatureSource implements FeatureSource { readonly overpassTimeout: UIEventSource; readonly currentBounds: UIEventSource } - private readonly _isActive: UIEventSource; + private readonly _isActive: UIEventSource + /** + * Callback to handle all the data + */ private readonly onBboxLoaded: (bbox: BBox, date: Date, layers: LayerConfig[], zoomlevel: number) => void; + /** + * Keeps track of how fresh the data is + * @private + */ + private readonly freshnesses: Map; + constructor( state: { readonly locationControl: UIEventSource, @@ -54,13 +65,15 @@ export default class OverpassFeatureSource implements FeatureSource { padToTiles: UIEventSource, isActive?: UIEventSource, relationTracker: RelationsTracker, - onBboxLoaded?: (bbox: BBox, date: Date, layers: LayerConfig[], zoomlevel: number) => void + onBboxLoaded?: (bbox: BBox, date: Date, layers: LayerConfig[], zoomlevel: number) => void, + freshnesses?: Map }) { this.state = state this._isActive = options.isActive; this.onBboxLoaded = options.onBboxLoaded this.relationsTracker = options.relationTracker + this.freshnesses = options.freshnesses const self = this; state.currentBounds.addCallback(_ => { self.update(options.padToTiles.data) @@ -117,12 +130,13 @@ export default class OverpassFeatureSource implements FeatureSource { const layersToDownload = [] + const neededTiles = this.state.currentBounds.data.expandToTileBounds(padToZoomLevel).containingTileRange(padToZoomLevel) for (const layer of this.state.layoutToUse.layers) { if (typeof (layer) === "string") { throw "A layer was not expanded!" } - if(AllKnownLayers.priviliged_layers.indexOf(layer.id) >= 0){ + if (Constants.priviliged_layers.indexOf(layer.id) >= 0) { continue } if (this.state.locationControl.data.zoom < layer.minzoom) { @@ -135,9 +149,32 @@ export default class OverpassFeatureSource implements FeatureSource { // Not our responsibility to download this layer! continue; } + const freshness = this.freshnesses?.get(layer.id) + if (freshness !== undefined) { + const oldestDataDate = Math.min(...Tiles.MapRange(neededTiles, (x, y) => { + const date = freshness.freshnessFor(padToZoomLevel, x, y); + if (date === undefined) { + return 0 + } + return date.getTime() + })) / 1000; + const now = new Date().getTime() + const minRequiredAge = (now / 1000) - layer.maxAgeOfCache + if (oldestDataDate >= minRequiredAge) { + // still fresh enough - not updating + continue + } + + } + layersToDownload.push(layer) } + if (layersToDownload.length == 0) { + console.debug("Not updating - no layers needed") + return; + } + const self = this; const overpassUrls = self.state.overpassUrl.data let bounds: BBox diff --git a/Logic/Actors/StrayClickHandler.ts b/Logic/Actors/StrayClickHandler.ts index 1cde818717..7c9a51fa03 100644 --- a/Logic/Actors/StrayClickHandler.ts +++ b/Logic/Actors/StrayClickHandler.ts @@ -1,9 +1,9 @@ import * as L from "leaflet"; import {UIEventSource} from "../UIEventSource"; import ScrollableFullScreen from "../../UI/Base/ScrollableFullScreen"; -import AddNewMarker from "../../UI/BigComponents/AddNewMarker"; import FilteredLayer from "../../Models/FilteredLayer"; import Constants from "../../Models/Constants"; +import BaseUIElement from "../../UI/BaseUIElement"; /** * The stray-click-hanlders adds a marker to the map if no feature was clicked. @@ -13,37 +13,41 @@ export default class StrayClickHandler { private _lastMarker; constructor( - lastClickLocation: UIEventSource<{ lat: number, lon: number }>, - selectedElement: UIEventSource, - filteredLayers: UIEventSource, - leafletMap: UIEventSource, - uiToShow: ScrollableFullScreen) { + state: { + LastClickLocation: UIEventSource<{ lat: number, lon: number }>, + selectedElement: UIEventSource, + filteredLayers: UIEventSource, + leafletMap: UIEventSource + }, + uiToShow: ScrollableFullScreen, + iconToShow: BaseUIElement) { const self = this; - filteredLayers.data.forEach((filteredLayer) => { + const leafletMap = state.leafletMap + state.filteredLayers.data.forEach((filteredLayer) => { filteredLayer.isDisplayed.addCallback(isEnabled => { if (isEnabled && self._lastMarker && leafletMap.data !== undefined) { // When a layer is activated, we remove the 'last click location' in order to force the user to reclick // This reclick might be at a location where a feature now appeared... - leafletMap.data.removeLayer(self._lastMarker); + state.leafletMap.data.removeLayer(self._lastMarker); } }) }) - lastClickLocation.addCallback(function (lastClick) { + state.LastClickLocation.addCallback(function (lastClick) { if (self._lastMarker !== undefined) { - leafletMap.data?.removeLayer(self._lastMarker); + state.leafletMap.data?.removeLayer(self._lastMarker); } if (lastClick === undefined) { return; } - selectedElement.setData(undefined); + state.selectedElement.setData(undefined); const clickCoor: [number, number] = [lastClick.lat, lastClick.lon] self._lastMarker = L.marker(clickCoor, { icon: L.divIcon({ - html: new AddNewMarker(filteredLayers).ConstructElement(), + html: iconToShow.ConstructElement(), iconSize: [50, 50], iconAnchor: [25, 50], popupAnchor: [0, -45] @@ -71,7 +75,7 @@ export default class StrayClickHandler { }); }); - selectedElement.addCallback(() => { + state.selectedElement.addCallback(() => { if (self._lastMarker !== undefined) { leafletMap.data.removeLayer(self._lastMarker); this._lastMarker = undefined; diff --git a/Logic/Actors/TitleHandler.ts b/Logic/Actors/TitleHandler.ts index a3c4b50813..d20bea7b9e 100644 --- a/Logic/Actors/TitleHandler.ts +++ b/Logic/Actors/TitleHandler.ts @@ -29,7 +29,7 @@ export default class TitleHandler { } if (layer.source.osmTags.matchesProperties(tags)) { const tagsSource = state.allElements.getEventSourceById(tags.id) ?? new UIEventSource(tags) - const title = new TagRenderingAnswer(tagsSource, layer.title) + const title = new TagRenderingAnswer(tagsSource, layer.title, {}) return new Combine([defaultTitle, " | ", title]).ConstructElement()?.innerText ?? defaultTitle; } } diff --git a/Logic/DetermineLayout.ts b/Logic/DetermineLayout.ts index b077c50427..8c3907f72f 100644 --- a/Logic/DetermineLayout.ts +++ b/Logic/DetermineLayout.ts @@ -10,30 +10,29 @@ import {UIEventSource} from "./UIEventSource"; import {LocalStorageSource} from "./Web/LocalStorageSource"; import LZString from "lz-string"; import * as personal from "../assets/themes/personal/personal.json"; -import LegacyJsonConvert from "../Models/ThemeConfig/LegacyJsonConvert"; +import {FixLegacyTheme, PrepareTheme} from "../Models/ThemeConfig/Conversion/LegacyJsonConvert"; +import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; +import SharedTagRenderings from "../Customizations/SharedTagRenderings"; +import * as known_layers from "../assets/generated/known_layers.json" +import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson"; export default class DetermineLayout { /** * Gets the correct layout for this website */ - public static async GetLayout(): Promise<[LayoutConfig, string]> { + public static async GetLayout(): Promise { const loadCustomThemeParam = QueryParameters.GetQueryParameter("userlayout", "false", "If not 'false', a custom (non-official) theme is loaded. This custom layout can be done in multiple ways: \n\n- The hash of the URL contains a base64-encoded .json-file containing the theme definition\n- The hash of the URL contains a lz-compressed .json-file, as generated by the custom theme generator\n- The parameter itself is an URL, in which case that URL will be downloaded. It should point to a .json of a theme") const layoutFromBase64 = decodeURIComponent(loadCustomThemeParam.data); if (layoutFromBase64.startsWith("http")) { - const layout = await DetermineLayout.LoadRemoteTheme(layoutFromBase64) - return [layout, undefined] + return await DetermineLayout.LoadRemoteTheme(layoutFromBase64) } if (layoutFromBase64 !== "false") { // We have to load something from the hash (or from disk) - let loaded = DetermineLayout.LoadLayoutFromHash(loadCustomThemeParam); - if (loaded === null) { - return [null, undefined] - } - return loaded + return DetermineLayout.LoadLayoutFromHash(loadCustomThemeParam) } let layoutId: string = undefined @@ -43,7 +42,7 @@ export default class DetermineLayout { const path = window.location.pathname.split("/").slice(-1)[0]; - if (path !== "index.html" && path !== "") { + if (path !== "theme.html" && path !== "") { layoutId = path; if (path.endsWith(".html")) { layoutId = path.substr(0, path.length - 5); @@ -61,12 +60,28 @@ export default class DetermineLayout { } } - return [layoutToUse, undefined] + return layoutToUse } + private static prepCustomTheme(json: any): LayoutConfigJson{ + const knownLayersDict = new Map() + for (const key in known_layers["default"]) { + const layer = known_layers["default"][key] + knownLayersDict.set(layer.id, layer) + } + const converState = { + tagRenderings: SharedTagRenderings.SharedTagRenderingJson, + sharedLayers: knownLayersDict + } + json = new FixLegacyTheme().convertStrict(converState, json, "While loading a dynamic theme") + json = new PrepareTheme().convertStrict(converState, json, "While preparing a dynamic theme") + console.log("The layoutconfig is ", json) + return json + } + public static LoadLayoutFromHash( userLayoutParam: UIEventSource - ): [LayoutConfig, string] | null { + ): LayoutConfig | null { let hash = location.hash.substr(1); try { // layoutFromBase64 contains the name of the theme. This is partly to do tracking with goat counter @@ -104,10 +119,9 @@ export default class DetermineLayout { } } - LegacyJsonConvert.fixThemeConfig(json) - const layoutToUse = new LayoutConfig(json, false); + const layoutToUse = DetermineLayout.prepCustomTheme(json) userLayoutParam.setData(layoutToUse.id); - return [layoutToUse, btoa(Utils.MinifyJSON(JSON.stringify(json)))]; + return new LayoutConfig(layoutToUse, false); } catch (e) { console.error(e) if (hash === undefined || hash.length < 10) { @@ -141,12 +155,20 @@ export default class DetermineLayout { try { - const parsed = await Utils.downloadJson(link) + let parsed = await Utils.downloadJson(link) console.log("Got ", parsed) - LegacyJsonConvert.fixThemeConfig(parsed) - try { + parsed = new FixLegacyTheme().convertStrict({ + tagRenderings: SharedTagRenderings.SharedTagRenderingJson, + sharedLayers: new Map() // FIXME: actually add the layers + }, parsed, "While loading a dynamic theme") + + parsed.id = link; - return new LayoutConfig(parsed, false).patchImages(link, JSON.stringify(parsed)); + + + try { + const layoutToUse = DetermineLayout.prepCustomTheme(parsed) + return new LayoutConfig(layoutToUse,false).patchImages(link, JSON.stringify(layoutToUse)); } catch (e) { console.error(e) DetermineLayout.ShowErrorOnCustomTheme( diff --git a/Logic/ExtraFunctions.ts b/Logic/ExtraFunctions.ts index ce571546a2..f8da9a1d1d 100644 --- a/Logic/ExtraFunctions.ts +++ b/Logic/ExtraFunctions.ts @@ -44,9 +44,7 @@ class OverlapFunc implements ExtraFunction { _f(params, feat) { return (...layerIds: string[]) => { const result: { feat: any, overlap: number }[] = [] - const bbox = BBox.get(feat) - for (const layerId of layerIds) { const otherLayers = params.getFeaturesWithin(layerId, bbox) if (otherLayers === undefined) { @@ -403,6 +401,10 @@ export class ExtraFunctions { ]; public static FullPatchFeature(params: ExtraFuncParams, feature) { + if(feature._is_patched){ + return + } + feature._is_patched = true for (const func of ExtraFunctions.allFuncs) { feature[func._name] = func._f(params, feature) } diff --git a/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts b/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts index 41c2e4bbb9..7ee072d403 100644 --- a/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts +++ b/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts @@ -1,9 +1,10 @@ import FeatureSource from "../FeatureSource"; import {UIEventSource} from "../../UIEventSource"; -import State from "../../../State"; -import ElementsState from "../../State/ElementsState"; import {ElementStorage} from "../../ElementStorage"; +/** + * Makes sure that every feature is added to the ElementsStorage, so that the tags-eventsource can be retrieved + */ export default class RegisteringAllFromFeatureSourceActor { public readonly features: UIEventSource<{ feature: any; freshness: Date }[]>; public readonly name; diff --git a/Logic/FeatureSource/FeaturePipeline.ts b/Logic/FeatureSource/FeaturePipeline.ts index d0f03b03bf..fd17de4e6f 100644 --- a/Logic/FeatureSource/FeaturePipeline.ts +++ b/Logic/FeatureSource/FeaturePipeline.ts @@ -40,18 +40,23 @@ import {ElementStorage} from "../ElementStorage"; export default class FeaturePipeline { public readonly sufficientlyZoomed: UIEventSource; - public readonly runningQuery: UIEventSource; public readonly timeout: UIEventSource; - public readonly somethingLoaded: UIEventSource = new UIEventSource(false) public readonly newDataLoadedSignal: UIEventSource = new UIEventSource(undefined) + + private readonly overpassUpdater: OverpassFeatureSource private state: MapState; private readonly relationTracker: RelationsTracker private readonly perLayerHierarchy: Map; + /** + * Keeps track of the age of the loaded data. + * Has one freshness-Calculator for every layer + * @private + */ private readonly freshnesses = new Map(); private readonly oldestAllowedDate: Date; @@ -59,7 +64,8 @@ export default class FeaturePipeline { private readonly localStorageSavers = new Map() private readonly metataggingRecalculated = new UIEventSource(undefined) - + private readonly requestMetataggingRecalculation = new UIEventSource(undefined) + /** * Keeps track of all raw OSM-nodes. * Only initialized if 'type_node' is defined as layer @@ -97,6 +103,10 @@ export default class FeaturePipeline { } ); + this.requestMetataggingRecalculation.stabilized(500).addCallbackAndRunD(_ => { + self.updateAllMetaTagging("Request stabilized") + }) + const neededTilesFromOsm = this.getNeededTilesFromOsm(this.sufficientlyZoomed) const perLayerHierarchy = new Map() @@ -141,7 +151,7 @@ export default class FeaturePipeline { tile => { new RegisteringAllFromFeatureSourceActor(tile, state.allElements) perLayerHierarchy.get(tile.layer.layerDef.id).registerTile(tile) - tile.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(tile)) + tile.features.addCallbackAndRunD(_ => self.onNewDataLoaded(tile)) }); continue; } @@ -169,7 +179,10 @@ export default class FeaturePipeline { if (id === "current_view") { handlePriviligedFeatureSource(state.currentView) state.currentView.features.map(ffs => ffs[0]?.feature?.properties?.id).withEqualityStabilized((x,y) => x === y) - .addCallbackAndRunD(_ => self.applyMetaTags(state.currentView, state)) + .addCallbackAndRunD(_ => { + self.applyMetaTags(state.currentView, this.state, `currentview changed`) + } + ) continue } @@ -187,7 +200,7 @@ export default class FeaturePipeline { console.debug("Loaded tile ", id, tile.tileIndex, "from local cache") new RegisteringAllFromFeatureSourceActor(tile, state.allElements) hierarchy.registerTile(tile); - tile.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(tile)) + tile.features.addCallbackAndRunD(_ => self.onNewDataLoaded(tile)) } ) @@ -207,13 +220,13 @@ export default class FeaturePipeline { registerTile: (tile) => { new RegisteringAllFromFeatureSourceActor(tile, state.allElements) perLayerHierarchy.get(id).registerTile(tile) - tile.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(tile)) + tile.features.addCallbackAndRunD(_ => self.onNewDataLoaded(tile)) } }) } else { new RegisteringAllFromFeatureSourceActor(src, state.allElements) perLayerHierarchy.get(id).registerTile(src) - src.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(src)) + src.features.addCallbackAndRunD(_ => self.onNewDataLoaded(src)) } } else { new DynamicGeoJsonTileSource( @@ -221,7 +234,7 @@ export default class FeaturePipeline { tile => { new RegisteringAllFromFeatureSourceActor(tile, state.allElements) perLayerHierarchy.get(id).registerTile(tile) - tile.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(tile)) + tile.features.addCallbackAndRunD(_ => self.onNewDataLoaded(tile)) }, state ) @@ -242,7 +255,7 @@ export default class FeaturePipeline { saver?.addTile(tile) } perLayerHierarchy.get(tile.layer.layerDef.id).registerTile(tile) - tile.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(tile)) + tile.features.addCallbackAndRunD(_ => self.onNewDataLoaded(tile)) }, state: state, @@ -282,11 +295,19 @@ export default class FeaturePipeline { // We save the tile data for the given layer to local storage - data sourced from overpass self.localStorageSavers.get(tile.layer.layerDef.id)?.addTile(tile) perLayerHierarchy.get(source.layer.layerDef.id).registerTile(new RememberingSource(tile)) - tile.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(tile)) + tile.features.addCallbackAndRunD(f => { + if(f.length === 0){ + return + } + self.onNewDataLoaded(tile) + }) } }), - updater) + updater, + {handleLeftovers: (leftOvers) => { + console.warn("Overpass returned a few non-matched features:", leftOvers) + }}) // Also load points/lines that are newly added. @@ -302,18 +323,19 @@ export default class FeaturePipeline { // We don't bother to split them over tiles as it'll contain little features by default, so we simply add them like this perLayerHierarchy.get(perLayer.layer.layerDef.id).registerTile(perLayer) // AT last, we always apply the metatags whenever possible - // @ts-ignore - perLayer.features.addCallbackAndRunD(_ => self.applyMetaTags(perLayer, state)) - perLayer.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(perLayer)) + perLayer.features.addCallbackAndRunD(_ => self.onNewDataLoaded(perLayer)) }, - newGeometry + newGeometry, + {handleLeftovers: (leftOvers) => { + console.warn("Got some leftovers from the filteredLayers: ", leftOvers) + }} ) // Whenever fresh data comes in, we need to update the metatagging - self.newDataLoadedSignal.stabilized(250).addCallback(_ => { - self.updateAllMetaTagging() + self.newDataLoadedSignal.stabilized(250).addCallback(src => { + self.updateAllMetaTagging(`New data loaded by ${src.name} (and stabilized)`) }) @@ -325,9 +347,13 @@ export default class FeaturePipeline { }, [osmFeatureSource.isRunning] ) - } + private onNewDataLoaded(src: FeatureSource){ + this.newDataLoadedSignal.setData(src) + this.requestMetataggingRecalculation.setData(new Date()) + } + public GetAllFeaturesWithin(bbox: BBox): any[][] { const self = this const tiles = [] @@ -453,6 +479,7 @@ export default class FeaturePipeline { padToTiles: state.locationControl.map(l => Math.min(15, l.zoom + 1)), relationTracker: this.relationTracker, isActive: useOsmApi.map(b => !b && overpassIsActive.data, [overpassIsActive]), + freshnesses: this.freshnesses, onBboxLoaded: (bbox, date, downloadedLayers, paddedToZoomLevel) => { Tiles.MapRange(bbox.containingTileRange(paddedToZoomLevel), (x, y) => { const tileIndex = Tiles.tile_index(paddedToZoomLevel, x, y) @@ -471,12 +498,16 @@ export default class FeaturePipeline { return updater; } - private applyMetaTags(src: FeatureSourceForLayer, state: any) { + private applyMetaTags(src: FeatureSourceForLayer, state: any, reason: string) { const self = this if(src === undefined){ throw "Src is undefined" } const layerDef = src.layer.layerDef; + console.debug(`Applying metatags onto ${src.name} due to ${reason} which has ${src.features.data?.length} features`) + if(src.features.data.length == 0){ + return + } MetaTagging.addMetatags( src.features.data, { @@ -494,18 +525,15 @@ export default class FeaturePipeline { ) } + - public updateAllMetaTagging() { + public updateAllMetaTagging(reason: string) { const self = this; - console.debug("Updating the meta tagging of all tiles as new data got loaded") this.perLayerHierarchy.forEach(hierarchy => { hierarchy.loadedTiles.forEach(tile => { - self.applyMetaTags(tile, this.state) + self.applyMetaTags(tile, this.state, `${reason} (tile ${tile.tileIndex})`) }) }) - if(this.state.currentView !== undefined){ - this.applyMetaTags(this.state.currentView, this.state) - } self.metataggingRecalculated.ping() } diff --git a/Logic/FeatureSource/PerLayerFeatureSourceSplitter.ts b/Logic/FeatureSource/PerLayerFeatureSourceSplitter.ts index 078db5fb44..3b18e21447 100644 --- a/Logic/FeatureSource/PerLayerFeatureSourceSplitter.ts +++ b/Logic/FeatureSource/PerLayerFeatureSourceSplitter.ts @@ -26,7 +26,7 @@ export default class PerLayerFeatureSourceSplitter { if (features === undefined) { return; } - if (layers.data === undefined) { + if (layers.data === undefined || layers.data.length === 0) { return; } diff --git a/Logic/FeatureSource/Sources/FilteringFeatureSource.ts b/Logic/FeatureSource/Sources/FilteringFeatureSource.ts index 6f9717c2d4..1250184063 100644 --- a/Logic/FeatureSource/Sources/FilteringFeatureSource.ts +++ b/Logic/FeatureSource/Sources/FilteringFeatureSource.ts @@ -1,10 +1,9 @@ import {UIEventSource} from "../../UIEventSource"; import FilteredLayer from "../../../Models/FilteredLayer"; import {FeatureSourceForLayer, Tiled} from "../FeatureSource"; -import Hash from "../../Web/Hash"; import {BBox} from "../../BBox"; import {ElementStorage} from "../../ElementStorage"; -import LayerConfig from "../../../Models/ThemeConfig/LayerConfig"; +import {TagsFilter} from "../../Tags/TagsFilter"; export default class FilteringFeatureSource implements FeatureSourceForLayer, Tiled { public features: UIEventSource<{ feature: any; freshness: Date }[]> = @@ -20,7 +19,8 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti }; private readonly _alreadyRegistered = new Set>(); private readonly _is_dirty = new UIEventSource(false) - + private previousFeatureSet : Set = undefined; + constructor( state: { locationControl: UIEventSource<{ zoom: number }>, @@ -65,18 +65,12 @@ 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 newFeatures = features.filter((f) => { + const features: { feature: any; freshness: Date }[] = (this.upstream.features.data ?? []); + const includedFeatureIds = new Set(); + const newFeatures = (features ?? []).filter((f) => { self.registerCallback(f.feature) - if ( - this.state.selectedElement.data?.id === f.feature.id || - f.feature.id === Hash.hash.data) { - // This is the selected object - it gets a free pass even if zoom is not sufficient or it is filtered away - return true; - } - const isShown = layer.layerDef.isShown; const tags = f.feature.properties; if (isShown.IsKnown(tags)) { @@ -88,21 +82,39 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti } } - const tagsFilter = layer.appliedFilters.data; + const tagsFilter = Array.from(layer.appliedFilters.data.values()); for (const filter of tagsFilter ?? []) { - const neededTags = filter.filter.options[filter.selected].osmTags - if (!neededTags.matchesProperties(f.feature.properties)) { + const neededTags : TagsFilter = filter?.currentFilter + if (neededTags !== undefined && !neededTags.matchesProperties(f.feature.properties)) { // Hidden by the filter on the layer itself - we want to hide it no matter wat return false; } } - + includedFeatureIds.add(f.feature.properties.id) return true; }); - this.features.setData(newFeatures); + const previousSet = this.previousFeatureSet; this._is_dirty.setData(false) + + // Is there any difference between the two sets? + if(previousSet !== undefined && previousSet.size === includedFeatureIds.size){ + // The size of the sets is the same - they _might_ be identical + const newItemFound = Array.from(includedFeatureIds).some(id => !previousSet.has(id)) + if(!newItemFound){ + // We know that: + // - The sets have the same size + // - Every item from the new set has been found in the old set + // which means they are identical! + return; + } + + } + + // Something new has been found! + this.features.setData(newFeatures); + } private registerCallback(feature: any) { @@ -115,10 +127,11 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti } this._alreadyRegistered.add(src) - const self = this; - src.addCallbackAndRunD(_ => { - self._is_dirty.setData(true) - }) + const self = this; + // Add a callback as a changed tag migh change the filter + src.addCallbackAndRunD(_ => { + self._is_dirty.setData(true) + }) } } diff --git a/Logic/FeatureSource/Sources/GeoJsonSource.ts b/Logic/FeatureSource/Sources/GeoJsonSource.ts index a229bb4932..8de41dd33c 100644 --- a/Logic/FeatureSource/Sources/GeoJsonSource.ts +++ b/Logic/FeatureSource/Sources/GeoJsonSource.ts @@ -83,7 +83,7 @@ export default class GeoJsonSource implements FeatureSourceForLayer, Tiled { if (self.layer.layerDef.source.mercatorCrs) { json = GeoOperations.GeoJsonToWGS84(json) } - + const time = new Date(); const newFeatures: { feature: any, freshness: Date } [] = [] let i = 0; @@ -93,7 +93,7 @@ export default class GeoJsonSource implements FeatureSourceForLayer, Tiled { for (const key in props) { if (typeof props[key] !== "string") { // Make sure all the values are string, it crashes stuff otherwise - props[key] = "" + props[key] + props[key] = JSON.stringify(props[key]) } } diff --git a/Logic/FeatureSource/TiledFeatureSource/DynamicTileSource.ts b/Logic/FeatureSource/TiledFeatureSource/DynamicTileSource.ts index bcc7b71865..7019364aa5 100644 --- a/Logic/FeatureSource/TiledFeatureSource/DynamicTileSource.ts +++ b/Logic/FeatureSource/TiledFeatureSource/DynamicTileSource.ts @@ -44,7 +44,11 @@ export default class DynamicTileSource implements TileHierarchy 10000){ + console.error("Got a really big tilerange, bounds and location might be out of sync") + return undefined + } + const needed = Tiles.MapRange(tileRange, (x, y) => Tiles.tile_index(zoomlevel, x, y)).filter(i => !self._loadedTiles.has(i)) if (needed.length === 0) { return undefined diff --git a/Logic/FeatureSource/TiledFeatureSource/OsmFeatureSource.ts b/Logic/FeatureSource/TiledFeatureSource/OsmFeatureSource.ts index 3c31ff63e7..9c3f1fd2da 100644 --- a/Logic/FeatureSource/TiledFeatureSource/OsmFeatureSource.ts +++ b/Logic/FeatureSource/TiledFeatureSource/OsmFeatureSource.ts @@ -12,6 +12,9 @@ import LayoutConfig from "../../../Models/ThemeConfig/LayoutConfig"; import {Or} from "../../Tags/Or"; import {TagsFilter} from "../../Tags/TagsFilter"; +/** + * If a tile is needed (requested via the UIEventSource in the constructor), will download the appropriate tile and pass it via 'handleTile' + */ export default class OsmFeatureSource { public readonly isRunning: UIEventSource = new UIEventSource(false) public readonly downloadedTiles = new Set() @@ -86,6 +89,10 @@ export default class OsmFeatureSource { if (z > 20) { throw "This is an absurd high zoom level" } + + if( z < 14){ + throw `Zoom ${z} is too much for OSM to handle! Use a higher zoom level!` + } const bbox = BBox.fromTile(z, x, y) const url = `${this._backend}/api/0.6/map?bbox=${bbox.minLon},${bbox.minLat},${bbox.maxLon},${bbox.maxLat}` diff --git a/Logic/MetaTagging.ts b/Logic/MetaTagging.ts index 302762110c..a48dae3d90 100644 --- a/Logic/MetaTagging.ts +++ b/Logic/MetaTagging.ts @@ -28,7 +28,6 @@ export default class MetaTagging { includeDates?: true | boolean, includeNonDates?: true | boolean }): boolean { - if (features === undefined || features.length === 0) { return; } @@ -104,9 +103,8 @@ export default class MetaTagging { } return atLeastOneFeatureChanged } - public static createFunctionsForFeature(layerId: string, calculatedTags: [string, string, boolean][]): ((feature: any) => boolean)[] { - const functions: ((feature: any) => boolean)[] = []; - + public static createFunctionsForFeature(layerId: string, calculatedTags: [string, string, boolean][]): ((feature: any) => void)[] { + const functions: ((feature: any) => any)[] = []; for (const entry of calculatedTags) { const key = entry[0] const code = entry[1]; @@ -115,9 +113,8 @@ export default class MetaTagging { continue; } - const calculateAndAssign: ((feat: any) => boolean) = (feat) => { + const calculateAndAssign: ((feat: any) => any) = (feat) => { try { - let oldValue = isStrict ? feat.properties[key] : undefined let result = new Function("feat", "return " + code + ";")(feat); if (result === "") { result === undefined @@ -128,7 +125,7 @@ export default class MetaTagging { } delete feat.properties[key] feat.properties[key] = result; - return result === oldValue; + return result }catch(e){ if (MetaTagging.errorPrintCount < MetaTagging.stopErrorOutputAt) { console.warn("Could not calculate a " + (isStrict ? "strict " : "") + " calculated tag for key " + key + " defined by " + code + " (in layer" + layerId + ") due to \n" + e + "\n. Are you the theme creator? Doublecheck your code. Note that the metatags might not be stable on new features", e, e.stack) @@ -137,7 +134,7 @@ export default class MetaTagging { console.error("Got ", MetaTagging.stopErrorOutputAt, " errors calculating this metatagging - stopping output now") } } - return false; + return undefined; } } @@ -149,16 +146,16 @@ export default class MetaTagging { // Lazy function const f = (feature: any) => { + const oldValue = feature.properties[key] delete feature.properties[key] Object.defineProperty(feature.properties, key, { configurable: true, enumerable: false, // By setting this as not enumerable, the localTileSaver will _not_ calculate this get: function () { - calculateAndAssign(feature) - return feature.properties[key] + return calculateAndAssign(feature) } }) - return true + return undefined } @@ -167,7 +164,7 @@ export default class MetaTagging { return functions; } - private static retaggingFuncCache = new Map boolean)[]>() + private static retaggingFuncCache = new Map void)[]>() /** * Creates the function which adds all the calculated tags to a feature. Called once per layer @@ -183,7 +180,7 @@ export default class MetaTagging { return undefined; } - let functions :((feature: any) => boolean)[] = MetaTagging.retaggingFuncCache.get(layer.id); + let functions :((feature: any) => void)[] = MetaTagging.retaggingFuncCache.get(layer.id); if (functions === undefined) { functions = MetaTagging.createFunctionsForFeature(layer.id, calculatedTags) MetaTagging.retaggingFuncCache.set(layer.id, functions) diff --git a/Logic/Osm/Actions/CreateNewNodeAction.ts b/Logic/Osm/Actions/CreateNewNodeAction.ts index 569ffa761d..d3f7e1f192 100644 --- a/Logic/Osm/Actions/CreateNewNodeAction.ts +++ b/Logic/Osm/Actions/CreateNewNodeAction.ts @@ -1,5 +1,5 @@ import {Tag} from "../../Tags/Tag"; -import OsmChangeAction, {OsmCreateAction} from "./OsmChangeAction"; +import {OsmCreateAction} from "./OsmChangeAction"; import {Changes} from "../Changes"; import {ChangeDescription} from "./ChangeDescription"; import {And} from "../../Tags/And"; diff --git a/Logic/Osm/OsmConnection.ts b/Logic/Osm/OsmConnection.ts index cbf6051272..7f2067c7c2 100644 --- a/Logic/Osm/OsmConnection.ts +++ b/Logic/Osm/OsmConnection.ts @@ -218,6 +218,119 @@ export class OsmConnection { }); } + public closeNote(id: number | string, text?: string): Promise { + let textSuffix = "" + if ((text ?? "") !== "") { + textSuffix = "?text=" + encodeURIComponent(text) + } + if (this._dryRun) { + console.warn("Dryrun enabled - not actually closing note ", id, " with text ", text) + return new Promise((ok, error) => { + ok() + }); + } + return new Promise((ok, error) => { + this.auth.xhr({ + method: 'POST', + path: `/api/0.6/notes/${id}/close${textSuffix}`, + }, function (err, response) { + if (err !== null) { + error(err) + } else { + ok() + } + }) + + }) + + } + + public reopenNote(id: number | string, text?: string): Promise { + if (this._dryRun) { + console.warn("Dryrun enabled - not actually reopening note ", id, " with text ", text) + return new Promise((ok, error) => { + ok() + }); + } + let textSuffix = "" + if ((text ?? "") !== "") { + textSuffix = "?text=" + encodeURIComponent(text) + } + return new Promise((ok, error) => { + this.auth.xhr({ + method: 'POST', + path: `/api/0.6/notes/${id}/reopen${textSuffix}` + }, function (err, response) { + if (err !== null) { + error(err) + } else { + ok() + } + }) + + }) + + } + + public openNote(lat: number, lon: number, text: string): Promise<{ id: number }> { + if (this._dryRun) { + console.warn("Dryrun enabled - not actually opening note with text ", text) + return new Promise((ok, error) => { + ok() + }); + } + const auth = this.auth; + const content = {lat, lon, text} + return new Promise((ok, error) => { + auth.xhr({ + method: 'POST', + path: `/api/0.6/notes.json`, + options: {header: + {'Content-Type': 'application/json'}}, + content: JSON.stringify(content) + + }, function (err, response) { + if (err !== null) { + error(err) + } else { + const id = Number(response.children[0].children[0].children.item("id").innerHTML) + console.log("OPENED NOTE", id) + ok({id}) + } + }) + + }) + + } + + public addCommentToNode(id: number | string, text: string): Promise { + if (this._dryRun) { + console.warn("Dryrun enabled - not actually adding comment ", text, "to note ", id) + return new Promise((ok, error) => { + ok() + }); + } + if ((text ?? "") === "") { + throw "Invalid text!" + } + + return new Promise((ok, error) => { + this.auth.xhr({ + method: 'POST', + + path: `/api/0.6/notes.json/${id}/comment?text=${encodeURIComponent(text)}` + }, function (err, response) { + if (err !== null) { + error(err) + } else { + ok() + } + }) + + }) + + } + private updateAuthObject() { let pwaStandAloneMode = false; try { @@ -260,6 +373,4 @@ export class OsmConnection { }); } - - } \ No newline at end of file diff --git a/Logic/Osm/Overpass.ts b/Logic/Osm/Overpass.ts index f13f7a29b4..df7fe5619c 100644 --- a/Logic/Osm/Overpass.ts +++ b/Logic/Osm/Overpass.ts @@ -1,9 +1,9 @@ -import * as OsmToGeoJson from "osmtogeojson"; import {TagsFilter} from "../Tags/TagsFilter"; import RelationsTracker from "./RelationsTracker"; import {Utils} from "../../Utils"; import {UIEventSource} from "../UIEventSource"; import {BBox} from "../BBox"; +import * as osmtogeojson from "osmtogeojson"; /** * Interfaces overpass to get all the latest data @@ -52,8 +52,7 @@ export class Overpass { } self._relationTracker.RegisterRelations(json) - // @ts-ignore - const geojson = OsmToGeoJson.default(json); + const geojson = osmtogeojson.default(json); const osmTime = new Date(json.osm3s.timestamp_osm_base); return [geojson, osmTime]; } diff --git a/Logic/State/ElementsState.ts b/Logic/State/ElementsState.ts index 90abe4d037..8167f7cb2b 100644 --- a/Logic/State/ElementsState.ts +++ b/Logic/State/ElementsState.ts @@ -10,7 +10,6 @@ import {LocalStorageSource} from "../Web/LocalStorageSource"; import {Utils} from "../../Utils"; import ChangeToElementsActor from "../Actors/ChangeToElementsActor"; import PendingChangesUploader from "../Actors/PendingChangesUploader"; -import TitleHandler from "../Actors/TitleHandler"; /** * The part of the state keeping track of where the elements, loading them, configuring the feature pipeline etc @@ -90,7 +89,6 @@ export default class ElementsState extends FeatureSwitchState { new ChangeToElementsActor(this.changes, this.allElements) new PendingChangesUploader(this.changes, this.selectedElement); - new TitleHandler(this); } } \ No newline at end of file diff --git a/Logic/State/FeaturePipelineState.ts b/Logic/State/FeaturePipelineState.ts index 5f1e6d426f..90f0539e1f 100644 --- a/Logic/State/FeaturePipelineState.ts +++ b/Logic/State/FeaturePipelineState.ts @@ -9,7 +9,6 @@ import MapState from "./MapState"; import SelectedFeatureHandler from "../Actors/SelectedFeatureHandler"; import Hash from "../Web/Hash"; import {BBox} from "../BBox"; -import {FeatureSourceForLayer} from "../FeatureSource/FeatureSource"; export default class FeaturePipelineState extends MapState { @@ -33,7 +32,7 @@ export default class FeaturePipelineState extends MapState { const sourceBBox = source.features.map(allFeatures => BBox.bboxAroundAll(allFeatures.map(f => BBox.get(f.feature)))) - // Do show features indicates if the 'showDataLayer' should be shown + // Do show features indicates if the respective 'showDataLayer' should be shown. It can be hidden by e.g. clustering const doShowFeatures = source.features.map( f => { const z = self.locationControl.data.zoom diff --git a/Logic/State/MapState.ts b/Logic/State/MapState.ts index a5b13e0987..b5e7bb1782 100644 --- a/Logic/State/MapState.ts +++ b/Logic/State/MapState.ts @@ -7,16 +7,16 @@ import Attribution from "../../UI/BigComponents/Attribution"; import Minimap, {MinimapObj} from "../../UI/Base/Minimap"; import {Tiles} from "../../Models/TileRange"; import BaseUIElement from "../../UI/BaseUIElement"; -import FilteredLayer from "../../Models/FilteredLayer"; +import FilteredLayer, {FilterState} from "../../Models/FilteredLayer"; import TilesourceConfig from "../../Models/ThemeConfig/TilesourceConfig"; import {QueryParameters} from "../Web/QueryParameters"; import * as personal from "../../assets/themes/personal/personal.json"; -import FilterConfig from "../../Models/ThemeConfig/FilterConfig"; import ShowOverlayLayer from "../../UI/ShowDataLayer/ShowOverlayLayer"; import {FeatureSourceForLayer, Tiled} from "../FeatureSource/FeatureSource"; import SimpleFeatureSource from "../FeatureSource/Sources/SimpleFeatureSource"; import {LocalStorageSource} from "../Web/LocalStorageSource"; import {GeoOperations} from "../GeoOperations"; +import TitleHandler from "../Actors/TitleHandler"; /** * Contains all the leaflet-map related state @@ -52,7 +52,7 @@ export default class MapState extends UserRelatedState { * The location as delivered by the GPS */ public currentUserLocation: FeatureSourceForLayer & Tiled; - + /** * All previously visited points */ @@ -82,7 +82,7 @@ export default class MapState extends UserRelatedState { public overlayToggles: { config: TilesourceConfig, isDisplayed: UIEventSource }[] - constructor(layoutToUse: LayoutConfig, options?: {attemptLogin: true | boolean}) { + constructor(layoutToUse: LayoutConfig, options?: { attemptLogin: true | boolean }) { super(layoutToUse, options); this.availableBackgroundLayers = AvailableBaseLayers.AvailableLayersAt(this.locationControl); @@ -97,7 +97,7 @@ export default class MapState extends UserRelatedState { const self = this this.backgroundLayer = new UIEventSource(defaultLayer) this.backgroundLayer.addCallbackAndRunD(layer => self.backgroundLayerId.setData(layer.id)) - + const attr = new Attribution( this.locationControl, this.osmConnection.userDetails, @@ -130,6 +130,8 @@ export default class MapState extends UserRelatedState { this.initGpsLocation() this.initUserLocationTrail() this.initCurrentView() + + new TitleHandler(this); } public AddAllOverlaysToMap(leafletMap: UIEventSource) { @@ -174,11 +176,11 @@ export default class MapState extends UserRelatedState { }) } } - - private initCurrentView(){ + + private initCurrentView() { let currentViewLayer: FilteredLayer = this.filteredLayers.data.filter(l => l.layerDef.id === "current_view")[0] - if(currentViewLayer === undefined){ + if (currentViewLayer === undefined) { // This layer is not needed by the theme and thus unloaded return; } @@ -186,8 +188,8 @@ export default class MapState extends UserRelatedState { let i = 0 const self = this; - const features : UIEventSource<{ feature: any, freshness: Date }[]>= this.currentBounds.map(bounds => { - if(bounds === undefined){ + const features: UIEventSource<{ feature: any, freshness: Date }[]> = this.currentBounds.map(bounds => { + if (bounds === undefined) { return [] } i++ @@ -195,14 +197,14 @@ export default class MapState extends UserRelatedState { freshness: new Date(), feature: { type: "Feature", - properties:{ - id:"current_view-"+i, - "current_view":"yes", - "zoom": ""+self.locationControl.data.zoom + properties: { + id: "current_view-" + i, + "current_view": "yes", + "zoom": "" + self.locationControl.data.zoom }, - geometry:{ - type:"Polygon", - coordinates:[[ + geometry: { + type: "Polygon", + coordinates: [[ [bounds.maxLon, bounds.maxLat], [bounds.minLon, bounds.maxLat], [bounds.minLon, bounds.minLat], @@ -214,13 +216,16 @@ export default class MapState extends UserRelatedState { } return [feature] }) - - this.currentView = new SimpleFeatureSource(currentViewLayer,0,features) + + this.currentView = new SimpleFeatureSource(currentViewLayer, 0, features) } private initGpsLocation() { // Initialize the gps layer data. This is emtpy for now, the actual writing happens in the Geolocationhandler let gpsLayerDef: FilteredLayer = this.filteredLayers.data.filter(l => l.layerDef.id === "gps_location")[0] + if(gpsLayerDef === undefined){ + return + } this.currentUserLocation = new SimpleFeatureSource(gpsLayerDef, Tiles.tile_index(0, 0, 0)); } @@ -233,7 +238,7 @@ export default class MapState extends UserRelatedState { features.ping() const self = this; let i = 0 - this.currentUserLocation.features.addCallbackAndRunD(([location]) => { + this.currentUserLocation?.features?.addCallbackAndRunD(([location]) => { if (location === undefined) { return; } @@ -264,7 +269,9 @@ export default class MapState extends UserRelatedState { let gpsLayerDef: FilteredLayer = this.filteredLayers.data.filter(l => l.layerDef.id === "gps_location_history")[0] - this.historicalUserLocations = new SimpleFeatureSource(gpsLayerDef, Tiles.tile_index(0, 0, 0), features); + if(gpsLayerDef !== undefined){ + this.historicalUserLocations = new SimpleFeatureSource(gpsLayerDef, Tiles.tile_index(0, 0, 0), features); + } const asLine = features.map(allPoints => { @@ -292,7 +299,9 @@ export default class MapState extends UserRelatedState { }] }) let gpsLineLayerDef: FilteredLayer = this.filteredLayers.data.filter(l => l.layerDef.id === "gps_track")[0] - this.historicalUserLocationsTrack = new SimpleFeatureSource(gpsLineLayerDef, Tiles.tile_index(0, 0, 0), asLine); + if(gpsLineLayerDef !== undefined){ + this.historicalUserLocationsTrack = new SimpleFeatureSource(gpsLineLayerDef, Tiles.tile_index(0, 0, 0), asLine); + } } private initHomeLocation() { @@ -329,14 +338,15 @@ export default class MapState extends UserRelatedState { }) const flayer = this.filteredLayers.data.filter(l => l.layerDef.id === "home_location")[0] - this.homeLocation = new SimpleFeatureSource(flayer, Tiles.tile_index(0, 0, 0), feature) + if (flayer !== undefined) { + this.homeLocation = new SimpleFeatureSource(flayer, Tiles.tile_index(0, 0, 0), feature) + } } private InitializeFilteredLayers() { const layoutToUse = this.layoutToUse; - const empty = [] const flayers: FilteredLayer[] = []; for (const layer of layoutToUse.layers) { let isDisplayed: UIEventSource @@ -348,30 +358,22 @@ export default class MapState extends UserRelatedState { } else { isDisplayed = QueryParameters.GetBooleanQueryParameter( "layer-" + layer.id, - ""+layer.shownByDefault, + "" + layer.shownByDefault, "Wether or not layer " + layer.id + " is shown" ) } - const flayer = { + const flayer: FilteredLayer = { isDisplayed: isDisplayed, layerDef: layer, - appliedFilters: new UIEventSource<{ filter: FilterConfig, selected: number }[]>([]), + appliedFilters: new UIEventSource>(new Map()) }; + layer.filters.forEach(filterConfig => { + const stateSrc = filterConfig.initState() - if (layer.filters.length > 0) { - const filtersPerName = new Map() - layer.filters.forEach(f => filtersPerName.set(f.id, f)) - const qp = QueryParameters.GetQueryParameter("filter-" + layer.id, "", "Filtering state for a layer") - flayer.appliedFilters.map(filters => (filters ?? []).map(f => f.filter.id + "." + f.selected).join(","), [], textual => { - if (textual.length === 0) { - return empty - } - return textual.split(",").map(part => { - const [filterId, selected] = part.split("."); - return {filter: filtersPerName.get(filterId), selected: Number(selected)} - }).filter(f => f.filter !== undefined && !isNaN(f.selected)) - }).syncWith(qp, true) - } + stateSrc.addCallbackAndRun(state => flayer.appliedFilters.data.set(filterConfig.id, state)) + flayer.appliedFilters.map(dict => dict.get(filterConfig.id)) + .addCallback(state => stateSrc.setData(state)) + }) flayers.push(flayer); } diff --git a/Logic/State/UserRelatedState.ts b/Logic/State/UserRelatedState.ts index ca69006ac4..d770268453 100644 --- a/Logic/State/UserRelatedState.ts +++ b/Logic/State/UserRelatedState.ts @@ -3,7 +3,6 @@ import {OsmConnection} from "../Osm/OsmConnection"; import {MangroveIdentity} from "../Web/MangroveReviews"; import {UIEventSource} from "../UIEventSource"; import {QueryParameters} from "../Web/QueryParameters"; -import InstalledThemes from "../Actors/InstalledThemes"; import {LocalStorageSource} from "../Web/LocalStorageSource"; import {Utils} from "../../Utils"; import Locale from "../../UI/i18n/Locale"; @@ -33,7 +32,10 @@ export default class UserRelatedState extends ElementsState { /** * WHich other themes the user previously visited */ - public installedThemes: UIEventSource<{ layout: LayoutConfig; definition: string }[]>; + public installedThemes: UIEventSource<{ id: string, // The id doubles as the URL + icon: string, + title: any, + shortDescription: any}[]>; constructor(layoutToUse: LayoutConfig, options?:{attemptLogin : true | boolean}) { @@ -69,9 +71,47 @@ export default class UserRelatedState extends ElementsState { }) } - this.installedThemes = new InstalledThemes( - this.osmConnection - ).installedThemes; + this.installedThemes = this.osmConnection.GetLongPreference("installed-themes").map( + str => { + if(str === undefined || str === ""){ + return [] + } + try{ + return JSON.parse(str) + }catch(e){ + console.warn("Could not parse preference with installed themes due to ", e,"\nThe offending string is",str) + return [] + } + }, [],(installed => JSON.stringify(installed)) + ) + + + const self = this; + this.osmConnection.isLoggedIn.addCallbackAndRunD(loggedIn => { + if(!loggedIn){ + return + } + + if(this.layoutToUse?.id?.startsWith("http")){ + if(!this.installedThemes.data.some(installed => installed.id === this.layoutToUse.id)){ + + this.installedThemes.data.push({ + id: this.layoutToUse.id, + icon: this.layoutToUse.icon, + title: this.layoutToUse.title.translations, + shortDescription: this.layoutToUse.shortDescription.translations + }) + } + this.installedThemes.ping() + console.log("Registered "+this.layoutToUse.id+" as installed themes") + } + + + + + return true; + }) + // Important: the favourite layers are initialized _after_ the installed themes, as these might contain an installedTheme this.favouriteLayers = LocalStorageSource.Get("favouriteLayers") @@ -81,8 +121,7 @@ export default class UserRelatedState extends ElementsState { [], (layers) => Utils.Dedup(layers)?.join(";") ); - - + this.InitializeLanguage(); new SelectedElementTagsUpdater(this) diff --git a/Logic/Tags/And.ts b/Logic/Tags/And.ts index 78b6d47106..d3a1cbac64 100644 --- a/Logic/Tags/And.ts +++ b/Logic/Tags/And.ts @@ -117,4 +117,10 @@ export class And extends TagsFilter { } return result; } + + AsJson() { + return { + and: this.and.map(a => a.AsJson()) + } + } } \ No newline at end of file diff --git a/Logic/Tags/ComparingTag.ts b/Logic/Tags/ComparingTag.ts index d49dd8bb1d..c09b19fcce 100644 --- a/Logic/Tags/ComparingTag.ts +++ b/Logic/Tags/ComparingTag.ts @@ -38,5 +38,9 @@ export default class ComparingTag implements TagsFilter { usedKeys(): string[] { return [this._key]; } + + AsJson() { + return this.asHumanString(false, false, {}) + } } \ No newline at end of file diff --git a/Logic/Tags/Or.ts b/Logic/Tags/Or.ts index 254e193e9b..d7d0788b40 100644 --- a/Logic/Tags/Or.ts +++ b/Logic/Tags/Or.ts @@ -65,6 +65,12 @@ export class Or extends TagsFilter { } return result; } + + AsJson() { + return { + or: this.or.map(o => o.AsJson()) + } + } } diff --git a/Logic/Tags/RegexTag.ts b/Logic/Tags/RegexTag.ts index 8e120cb718..f747156b61 100644 --- a/Logic/Tags/RegexTag.ts +++ b/Logic/Tags/RegexTag.ts @@ -109,4 +109,8 @@ export class RegexTag extends TagsFilter { console.error("Cannot export regex tag to asChange; ", this.key, this.value) return [] } + + AsJson() { + return this.asHumanString() + } } \ No newline at end of file diff --git a/Logic/Tags/SubstitutingTag.ts b/Logic/Tags/SubstitutingTag.ts index f776d0a407..9e7fb2effa 100644 --- a/Logic/Tags/SubstitutingTag.ts +++ b/Logic/Tags/SubstitutingTag.ts @@ -12,7 +12,8 @@ import {TagsFilter} from "./TagsFilter"; export default class SubstitutingTag implements TagsFilter { private readonly _key: string; private readonly _value: string; -private readonly _invert: boolean + private readonly _invert: boolean + constructor(key: string, value: string, invert = false) { this._key = key; this._value = value; @@ -59,11 +60,17 @@ private readonly _invert: boolean } asChange(properties: any): { k: string; v: string }[] { - if(this._invert){throw "An inverted substituting tag can not be used to create a change"} + if (this._invert) { + throw "An inverted substituting tag can not be used to create a change" + } const v = SubstitutingTag.substituteString(this._value, properties); if (v.match(/{.*}/) !== null) { throw "Could not calculate all the substitutions: still have " + v } return [{k: this._key, v: v}]; } + + AsJson() { + return this._key + (this._invert ? '!' : '') + "=" + this._value + } } \ No newline at end of file diff --git a/Logic/Tags/Tag.ts b/Logic/Tags/Tag.ts index 90b2c8841a..bdf3235adf 100644 --- a/Logic/Tags/Tag.ts +++ b/Logic/Tags/Tag.ts @@ -83,4 +83,8 @@ export class Tag extends TagsFilter { asChange(properties: any): { k: string; v: string }[] { return [{k: this.key, v: this.value}]; } + + AsJson() { + return this.asHumanString(false, false) + } } \ No newline at end of file diff --git a/Logic/Tags/TagUtils.ts b/Logic/Tags/TagUtils.ts index e662beca66..42da0dd471 100644 --- a/Logic/Tags/TagUtils.ts +++ b/Logic/Tags/TagUtils.ts @@ -56,9 +56,6 @@ export class TagUtils { /*** * Creates a hash {key --> [values : string | Regex ]}, with all the values present in the tagsfilter - * - * @param tagsFilters - * @constructor */ static SplitKeys(tagsFilters: TagsFilter[], allowRegex = false) { const keyValues = {} // Map string -> string[] @@ -189,16 +186,25 @@ export class TagUtils { if (tag.indexOf(operator) >= 0) { const split = Utils.SplitFirst(tag, operator); - const val = Number(split[1].trim()) + let val = Number(split[1].trim()) if (isNaN(val)) { - throw `Error: not a valid value for a comparison: ${split[1]}, make sure it is a number and nothing more (at ${context})` + val = new Date(split[1].trim()).getTime() } const f = (value: string | undefined) => { - const b = Number(value?.replace(/[^\d.]/g, '')) - if (isNaN(b)) { + if(value === undefined){ return false; } + let b = Number(value?.trim() ) + if (isNaN(b)) { + if(value.endsWith(" UTC")) { + value = value.replace(" UTC", "+00") + } + b = new Date(value).getTime() + if(isNaN(b)){ + return false + } + } return comparator(b, val) } return new ComparingTag(split[0], f, operator + val) @@ -259,8 +265,8 @@ export class TagUtils { } if (tag.indexOf("~") >= 0) { const split = Utils.SplitFirst(tag, "~"); - if(split[1] === "") { - throw "Detected a regextag with an empty regex; this is not allowed. Use '"+split[0]+"='instead (at "+context+")" + if (split[1] === "") { + throw "Detected a regextag with an empty regex; this is not allowed. Use '" + split[0] + "='instead (at " + context + ")" } if (split[1] === "*") { split[1] = "..*" diff --git a/Logic/Tags/TagsFilter.ts b/Logic/Tags/TagsFilter.ts index cffaf99ca3..687a614215 100644 --- a/Logic/Tags/TagsFilter.ts +++ b/Logic/Tags/TagsFilter.ts @@ -8,7 +8,7 @@ export abstract class TagsFilter { abstract matchesProperties(properties: any): boolean; - abstract asHumanString(linkToWiki: boolean, shorten: boolean, properties: any) : string; + abstract asHumanString(linkToWiki: boolean, shorten: boolean, properties: any): string; abstract usedKeys(): string[]; @@ -20,4 +20,5 @@ export abstract class TagsFilter { */ abstract asChange(properties: any): { k: string, v: string }[] + abstract AsJson() ; } \ No newline at end of file diff --git a/Logic/Web/IdbLocalStorage.ts b/Logic/Web/IdbLocalStorage.ts index 7a39a0b64e..6850c3b6fd 100644 --- a/Logic/Web/IdbLocalStorage.ts +++ b/Logic/Web/IdbLocalStorage.ts @@ -1,7 +1,7 @@ import {UIEventSource} from "../UIEventSource"; import * as idb from "idb-keyval" -import ScriptUtils from "../../scripts/ScriptUtils"; import {Utils} from "../../Utils"; + /** * UIEventsource-wrapper around indexedDB key-value */ diff --git a/Models/Constants.ts b/Models/Constants.ts index 56c1f1285e..78f81b633c 100644 --- a/Models/Constants.ts +++ b/Models/Constants.ts @@ -2,7 +2,7 @@ import {Utils} from "../Utils"; export default class Constants { - public static vNumber = "0.13.1"; + public static vNumber = "0.14.1"; public static ImgurApiKey = '7070e7167f0a25a' public static readonly mapillary_client_token_v4 = "MLY|4441509239301885|b40ad2d3ea105435bd40c7e76993ae85" @@ -17,6 +17,14 @@ export default class Constants { ] + public static readonly added_by_default: string[] = ["gps_location", "gps_location_history", "home_location", "gps_track"] + public static readonly no_include: string[] = ["conflation", "left_right_style", "split_point","current_view","matchpoint"] + /** + * Layer IDs of layers which have special properties through built-in hooks + */ + public static readonly priviliged_layers: string[] = [...Constants.added_by_default, "type_node", "note", ...Constants.no_include] + + // The user journey states thresholds when a new feature gets unlocked public static userJourney = { moreScreenUnlock: 1, @@ -51,6 +59,7 @@ export default class Constants { * For every bin, the totals are uploaded as metadata */ static distanceToChangeObjectBins = [25,50,100,500,1000,5000, Number.MAX_VALUE] + static themeOrder = ["personal", "cyclofix", "hailhydrant", "bookcases", "toilets", "aed"]; private static isRetina(): boolean { if (Utils.runningFromConsole) { diff --git a/Models/FilteredLayer.ts b/Models/FilteredLayer.ts index f57cea8919..0c4e163a3b 100644 --- a/Models/FilteredLayer.ts +++ b/Models/FilteredLayer.ts @@ -1,9 +1,13 @@ import {UIEventSource} from "../Logic/UIEventSource"; import LayerConfig from "./ThemeConfig/LayerConfig"; -import FilterConfig from "./ThemeConfig/FilterConfig"; +import {TagsFilter} from "../Logic/Tags/TagsFilter"; + +export interface FilterState { + currentFilter: TagsFilter, state: string | number +} export default interface FilteredLayer { readonly isDisplayed: UIEventSource; - readonly appliedFilters: UIEventSource<{ filter: FilterConfig, selected: number }[]>; + readonly appliedFilters: UIEventSource>; readonly layerDef: LayerConfig; } \ No newline at end of file diff --git a/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts b/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts new file mode 100644 index 0000000000..b8f78fe5bc --- /dev/null +++ b/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts @@ -0,0 +1,117 @@ +import {Conversion, DesugaringContext} from "./LegacyJsonConvert"; +import LayerConfig from "../LayerConfig"; +import {LayerConfigJson} from "../Json/LayerConfigJson"; +import Translations from "../../../UI/i18n/Translations"; +import {TagsFilter} from "../../../Logic/Tags/TagsFilter"; +import {And} from "../../../Logic/Tags/And"; + +export default class CreateNoteImportLayer extends Conversion { + + constructor() { + super([ + "Advanced conversion which deducts a layer showing all notes that are 'importable' (i.e. a note that contains a link to some MapComplete theme, with hash '#import').", + "The import buttons and matches will be based on the presets of the given theme", + ].join("\n\n"), []) + } + + convert(state: DesugaringContext, layer: LayerConfig, context: string): { result: LayerConfigJson; errors: string[]; warnings: string[] } { + const errors = [] + const warnings = [] + const t = Translations.t.importLayer; + + const possibleTags: TagsFilter[] = layer.presets.map(p => new And(p.tags)) + + const result : LayerConfigJson = { + "id": "note_import_"+layer.id, + "name": t.layerName.Subs({title: layer.title.render}).translations, + "description": t.description.Subs({title: layer.title.render}).translations, + "source": { + "osmTags": { + "and": [ + "id~*" + ] + }, + "geoJson": "https://api.openstreetmap.org/api/0.6/notes.json?closed=0&bbox={x_min},{y_min},{x_max},{y_max}", + "geoJsonZoomLevel": 12, + "maxCacheAge": 0 + }, + "minzoom": 10, + "title": { + "render": t.popupTitle.Subs({title: layer.presets[0].title}).translations + }, + "calculatedTags": [ + "_first_comment:=feat.get('comments')[0].text.toLowerCase()", + "_trigger_index:=(() => {const lines = feat.properties['_first_comment'].split('\\n'); const matchesMapCompleteURL = lines.map(l => l.match(\".*https://mapcomplete.osm.be/\\([a-zA-Z_-]+\\)\\(.html\\).*#import\")); const matchedIndexes = matchesMapCompleteURL.map((doesMatch, i) => [doesMatch !== null, i]).filter(v => v[0]).map(v => v[1]); return matchedIndexes[0] })()", + "_intro:=(() => {const lines = feat.properties['_first_comment'].split('\\n'); lines.splice(feat.get('_trigger_index')-1, lines.length); return lines.map(l => l == '' ? '
' : l).join('');})()", + "_tags:=(() => {let lines = feat.properties['_first_comment'].split('\\n').map(l => l.trim()); lines.splice(0, feat.get('_trigger_index') + 1); lines = lines.filter(l => l != ''); return lines.join(';');})()" + ], + "isShown": { + "render": "no", + "mappings": [ + { + "if": {and: + ["_trigger_index~*", + {or: possibleTags.map(tf => tf.AsJson())} + ]}, + "then": "yes" + } + ] + }, + "titleIcons": [ + { + "render": "" + } + ], + "tagRenderings": [ + { + "id": "conversation", + "render": "{visualize_note_comments(comments,1)}" + }, + { + "id": "Intro", + "render": "{_intro}" + }, + { + "id": "import", + "render": "{import_button(public_bookcase, _tags, There might be a public bookcase here,./assets/svg/addSmall.svg,,,id)}" + }, + { + "id": "close_note_", + "render": "{close_note(Does not exist
, ./assets/svg/close.svg, id, This feature does not exist)}" + }, + { + "id": "close_note_mapped", + "render": "{close_note(Already mapped, ./assets/svg/checkmark.svg, id, Already mapped)}" + }, + { + "id": "comment", + "render": "{add_note_comment()}" + }, + { + "id": "add_image", + "render": "{add_image_to_note()}" + } + ], + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "teardrop:#3333cc" + }, + "iconSize": "40,40,bottom" + } + ] + } + + + return { + result, + errors, warnings + }; + } + + +} \ No newline at end of file diff --git a/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts b/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts new file mode 100644 index 0000000000..df9408a8ea --- /dev/null +++ b/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts @@ -0,0 +1,1056 @@ +import {LayoutConfigJson} from "../Json/LayoutConfigJson"; +import DependencyCalculator from "../DependencyCalculator"; +import LayerConfig from "../LayerConfig"; +import {Translation} from "../../../UI/i18n/Translation"; +import LayoutConfig from "../LayoutConfig"; +import {Utils} from "../../../Utils"; +import {TagRenderingConfigJson} from "../Json/TagRenderingConfigJson"; +import LineRenderingConfigJson from "../Json/LineRenderingConfigJson"; +import {LayerConfigJson} from "../Json/LayerConfigJson"; +import Constants from "../../Constants"; +import {AllKnownLayouts} from "../../../Customizations/AllKnownLayouts"; +import {SubstitutedTranslation} from "../../../UI/SubstitutedTranslation"; + +export interface DesugaringContext { + tagRenderings: Map + sharedLayers: Map +} + +export abstract class Conversion { + public readonly modifiedAttributes: string[]; + protected readonly doc: string; + + constructor(doc: string, modifiedAttributes: string[] = []) { + this.modifiedAttributes = modifiedAttributes; + this.doc = doc + "\n\nModified attributes are\n" + modifiedAttributes.join(", "); + } + + public static strict(fixed: { errors: string[], warnings: string[], result?: T }): T { + if (fixed?.errors?.length > 0) { + throw fixed.errors.join("\n"); + } + fixed.warnings?.forEach(w => console.warn(w)) + return fixed.result; + } + + public convertStrict(state: DesugaringContext, json: TIn, context: string): TOut { + const fixed = this.convert(state, json, context) + return DesugaringStep.strict(fixed) + } + + abstract convert(state: DesugaringContext, json: TIn, context: string): { result: TOut, errors: string[], warnings: string[] } + + public convertAll(state: DesugaringContext, jsons: TIn[], context: string): { result: TOut[], errors: string[], warnings: string[] } { + const result = [] + const errors = [] + const warnings = [] + for (let i = 0; i < jsons.length; i++) { + const json = jsons[i]; + const r = this.convert(state, json, context + "[" + i + "]") + result.push(r.result) + errors.push(...r.errors) + warnings.push(...r.warnings) + } + return { + result, + errors, + warnings + } + } + +} + +export abstract class DesugaringStep extends Conversion { +} + +class OnEvery extends DesugaringStep { + private readonly key: string; + private readonly step: DesugaringStep; + + constructor(key: string, step: DesugaringStep) { + super("Applies " + step.constructor.name + " onto every object of the list `key`", [key]); + this.step = step; + this.key = key; + } + + convert(state: DesugaringContext, json: T, context: string): { result: T; errors: string[]; warnings: string[] } { + json = {...json} + const step = this.step + const key = this.key; + const r = step.convertAll(state, (json[key]), context + "." + key) + json[key] = r.result + return { + result: json, + errors: r.errors, + warnings: r.warnings + }; + } +} + +class OnEveryConcat extends DesugaringStep { + private readonly key: string; + private readonly step: Conversion; + + constructor(key: string, step: Conversion) { + super(`Applies ${step.constructor.name} onto every object of the list \`${key}\``, [key]); + this.step = step; + this.key = key; + } + + convert(state: DesugaringContext, json: T, context: string): { result: T; errors: string[]; warnings: string[] } { + json = {...json} + const step = this.step + const key = this.key; + const values = json[key] + if (values === undefined) { + // Move on - nothing to see here! + return { + result: json, + errors: [], + warnings: [] + } + } + const r = step.convertAll(state, (values), context + "." + key) + const vals: X[][] = r.result + json[key] = [].concat(...vals) + return { + result: json, + errors: r.errors, + warnings: r.warnings + }; + + } +} + +class Fuse extends DesugaringStep { + private readonly steps: DesugaringStep[]; + + constructor(doc: string, ...steps: DesugaringStep[]) { + super((doc ?? "") + "This fused pipeline of the following steps: " + steps.map(s => s.constructor.name).join(", "), + Utils.Dedup([].concat(...steps.map(step => step.modifiedAttributes))) + ); + this.steps = steps; + } + + convert(state: DesugaringContext, json: T, context: string): { result: T; errors: string[]; warnings: string[] } { + const errors = [] + const warnings = [] + for (let i = 0; i < this.steps.length; i++) { + const step = this.steps[i]; + let r = step.convert(state, json, context + "(fusion " + this.constructor.name + "." + i + ")") + errors.push(...r.errors) + warnings.push(...r.warnings) + json = r.result + if (errors.length > 0) { + break; + } + } + return { + result: json, + errors, + warnings + }; + } + +} + +class AddMiniMap extends DesugaringStep { + constructor() { + super("Adds a default 'minimap'-element to the tagrenderings if none of the elements define such a minimap", ["tagRenderings"]); + } + + /** + * Returns true if this tag rendering has a minimap in some language. + * Note: this minimap can be hidden by conditions + */ + private static hasMinimap(renderingConfig: TagRenderingConfigJson): boolean { + const translations: Translation[] = Utils.NoNull([renderingConfig.render, ...(renderingConfig.mappings ?? []).map(m => m.then)]); + for (const translation of translations) { + for (const key in translation.translations) { + if (!translation.translations.hasOwnProperty(key)) { + continue + } + const template = translation.translations[key] + const parts = SubstitutedTranslation.ExtractSpecialComponents(template) + const hasMiniMap = parts.filter(part => part.special !== undefined).some(special => special.special.func.funcName === "minimap") + if (hasMiniMap) { + return true; + } + } + } + return false; + } + + convert(state: DesugaringContext, layerConfig: LayerConfigJson, context: string): { result: LayerConfigJson; errors: string[]; warnings: string[] } { + + + + const hasMinimap = layerConfig.tagRenderings?.some(tr => AddMiniMap.hasMinimap( tr)) ?? true + if (!hasMinimap) { + layerConfig = {...layerConfig} + layerConfig.tagRenderings = [...layerConfig.tagRenderings] + layerConfig.tagRenderings.push(state.tagRenderings.get("minimap")) + } + + return { + errors:[], + warnings: [], + result: layerConfig + }; + } +} + +class ExpandTagRendering extends Conversion { + constructor() { + super("Converts a tagRenderingSpec into the full tagRendering", []); + } + + convert(state: DesugaringContext, json: string | TagRenderingConfigJson | { builtin: string | string[]; override: any }, context: string): { result: TagRenderingConfigJson[]; errors: string[]; warnings: string[] } { + const errors = [] + const warnings = [] + + return { + result: this.convertUntilStable(state, json, warnings, errors, context), + errors, warnings + }; + } + + private lookup(state: DesugaringContext, name: string): TagRenderingConfigJson[] { + if (state.tagRenderings.has(name)) { + return [state.tagRenderings.get(name)] + } + if (name.indexOf(".") >= 0) { + const spl = name.split("."); + const layer = state.sharedLayers.get(spl[0]) + if (spl.length === 2 && layer !== 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_) + } else { + matchingTrs = layerTrs.filter(tr => tr.id === id) + } + + + 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 + const found = Utils.Clone(matchingTrs[i]); + if (found.condition === undefined) { + found.condition = layer.source.osmTags + } else { + found.condition = {and: [found.condition, layer.source.osmTags]} + } + matchingTrs[i] = found + } + + if (matchingTrs.length !== 0) { + return matchingTrs + } + } + } + return undefined; + } + + private convertOnce(state: DesugaringContext, tr: string | any, warnings: string[], errors: string[], ctx: string): TagRenderingConfigJson[] { + if (tr === "questions") { + return [{ + id: "questions" + }] + } + + + if (typeof tr === "string") { + const lookup = this.lookup(state, tr); + if (lookup !== undefined) { + return lookup + } + warnings.push(ctx + "A literal rendering was detected: " + tr) + return [{ + render: tr, + id: tr.replace(/![a-zA-Z0-9]/g, "") + }] + } + + if (tr["builtin"] !== undefined) { + let names = tr["builtin"] + if (typeof names === "string") { + names = [names] + } + + for (const key of Object.keys(tr)) { + if (key === "builtin" || key === "override" || key === "id" || key.startsWith("#")) { + continue + } + errors.push("At " + ctx + ": an object calling a builtin can only have keys `builtin` or `override`, but a key with name `" + key + "` was found. This won't be picked up! The full object is: " + JSON.stringify(tr)) + } + + const trs: TagRenderingConfigJson[] = [] + for (const name of names) { + const lookup = this.lookup(state, name) + if (lookup === undefined) { + errors.push(ctx + ": The tagRendering with identifier " + name + " was not found.\n\tDid you mean one of " + Array.from(state.tagRenderings.keys()).join(", ") + "?") + continue + } + for (let foundTr of lookup) { + foundTr = Utils.Clone(foundTr) + Utils.Merge(tr["override"] ?? {}, foundTr) + trs.push(foundTr) + } + } + return trs; + } + + return [tr] + } + + private convertUntilStable(state: DesugaringContext, spec: string | any, warnings: string[], errors: string[], ctx: string): TagRenderingConfigJson[] { + const trs = this.convertOnce(state, spec, warnings, errors, ctx); + + const result = [] + for (const tr of trs) { + if (tr["builtin"] !== undefined) { + const stable = this.convertUntilStable(state, tr, warnings, errors, ctx + "(RECURSIVE RESOLVE)") + result.push(...stable) + } else { + result.push(tr) + } + } + + return result; + } +} + +class ExpandGroupRewrite extends Conversion<{ + rewrite: { + sourceString: string, + into: string[] + }[], + renderings: (string | { builtin: string, override: any } | TagRenderingConfigJson)[] +} | TagRenderingConfigJson, TagRenderingConfigJson[]> { + + + private static expandSubTagRenderings = new ExpandTagRendering() + + constructor() { + super( + "Converts a rewrite config for tagRenderings into the expanded form" + ); + } + + convert(state: DesugaringContext, json: + { + rewrite: + { sourceString: string; into: string[] }[]; renderings: (string | { builtin: string; override: any } | TagRenderingConfigJson)[] + } | TagRenderingConfigJson, context: string): { result: TagRenderingConfigJson[]; errors: string[]; warnings: string[] } { + + if (json["rewrite"] === undefined) { + return {result: [json], errors: [], warnings: []} + } + let config = <{ + rewrite: + { sourceString: string; into: string[] }[]; + renderings: (string | { builtin: string; override: any } | TagRenderingConfigJson)[] + }>json; + + + const subRenderingsRes = ExpandGroupRewrite.expandSubTagRenderings.convertAll(state, config.renderings, context); + const subRenderings: TagRenderingConfigJson[] = [].concat(subRenderingsRes.result); + const errors = subRenderingsRes.errors; + const warnings = subRenderingsRes.warnings; + + + const rewrittenPerGroup = new Map() + + // The actual rewriting + for (const rewrite of config.rewrite) { + const source = rewrite.sourceString; + for (const target of rewrite.into) { + const groupName = target; + const trs: TagRenderingConfigJson[] = [] + + for (const tr of subRenderings) { + trs.push(this.prepConfig(source, target, tr)) + } + if (rewrittenPerGroup.has(groupName)) { + rewrittenPerGroup.get(groupName).push(...trs) + + } else { + rewrittenPerGroup.set(groupName, trs) + + } + } + } + + // Add questions box for this category + rewrittenPerGroup.forEach((group, groupName) => { + group.push({ + id: "questions", + group: groupName + }) + }) + + + rewrittenPerGroup.forEach((group, _) => { + group.forEach(tr => { + if (tr.id === undefined || tr.id === "") { + errors.push("A tagrendering has an empty ID after expanding the tag") + } + }) + }) + + return { + result: [].concat(...Array.from(rewrittenPerGroup.values())), + errors, warnings + }; + } + + /* Used for left|right group creation and replacement */ + private prepConfig(keyToRewrite: string, target: string, tr: TagRenderingConfigJson) { + + function replaceRecursive(transl: string | any) { + if (typeof transl === "string") { + return transl.replace(keyToRewrite, target) + } + if (transl.map !== undefined) { + return transl.map(o => replaceRecursive(o)) + } + transl = {...transl} + for (const key in transl) { + transl[key] = replaceRecursive(transl[key]) + } + return transl + } + + const orig = tr; + tr = replaceRecursive(tr) + + tr.id = target + "-" + orig.id + tr.group = target + return tr + } +} + + +export class UpdateLegacyLayer extends DesugaringStep { + + constructor() { + super("Updates various attributes from the old data format to the new to provide backwards compatibility with the formats", + ["overpassTags", "source.osmtags", "tagRenderings[*].id", "mapRendering"]); + } + + convert(state: {}, json: LayerConfigJson, context: string): { result: LayerConfigJson; errors: string[]; warnings: string[] } { + const warnings = [] + if (typeof json === "string") { + return json + } + if (json["builtin"] !== undefined) { + // @ts-ignore + return json; + } + let config: any = {...json}; + + if (config["overpassTags"]) { + config.source = config.source ?? {} + config.source.osmTags = config["overpassTags"] + delete config["overpassTags"] + } + + if (config.tagRenderings !== undefined) { + let i = 0; + for (const tagRendering of config.tagRenderings) { + i++; + if (typeof tagRendering === "string" || tagRendering["builtin"] !== undefined) { + continue + } + if (tagRendering["id"] === undefined) { + + if (tagRendering["#"] !== undefined) { + tagRendering["id"] = tagRendering["#"] + delete tagRendering["#"] + } else if (tagRendering["freeform"]?.key !== undefined) { + tagRendering["id"] = config.id + "-" + tagRendering["freeform"]["key"] + } else { + tagRendering["id"] = "tr-" + i + } + } + } + } + + + if (config.mapRendering === undefined) { + config.mapRendering = [] + // This is a legacy format, lets create a pointRendering + let location: ("point" | "centroid")[] = ["point"] + let wayHandling: number = config["wayHandling"] ?? 0 + if (wayHandling !== 0) { + location = ["point", "centroid"] + } + if (config["icon"] ?? config["label"] !== undefined) { + + const pointConfig = { + icon: config["icon"], + iconBadges: config["iconOverlays"], + label: config["label"], + iconSize: config["iconSize"], + location, + rotation: config["rotation"] + } + config.mapRendering.push(pointConfig) + } + + if (wayHandling !== 1) { + const lineRenderConfig = { + color: config["color"], + width: config["width"], + dashArray: config["dashArray"] + } + if (Object.keys(lineRenderConfig).length > 0) { + config.mapRendering.push(lineRenderConfig) + } + } + if (config.mapRendering.length === 0) { + throw "Could not convert the legacy theme into a new theme: no renderings defined for layer " + config.id + } + + } + + + delete config["color"] + delete config["width"] + delete config["dashArray"] + + delete config["icon"] + delete config["iconOverlays"] + delete config["label"] + delete config["iconSize"] + delete config["rotation"] + delete config["wayHandling"] + delete config["hideUnderlayingFeaturesMinPercentage"] + + for (const mapRenderingElement of config.mapRendering) { + if (mapRenderingElement["iconOverlays"] !== undefined) { + mapRenderingElement["iconBadges"] = mapRenderingElement["iconOverlays"] + } + for (const overlay of mapRenderingElement["iconBadges"] ?? []) { + if (overlay["badge"] !== true) { + warnings.push("Warning: non-overlay element for ", config.id) + } + delete overlay["badge"] + } + } + + return { + result: config, + errors: [], + warnings + }; + } + +} + +class UpdateLegacyTheme extends DesugaringStep { + constructor() { + super("Small fixes in the theme config", ["roamingRenderings"]); + } + + convert(state: DesugaringContext, json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors: string[]; warnings: string[] } { + const oldThemeConfig = {...json} + if (oldThemeConfig["roamingRenderings"] !== undefined) { + + if (oldThemeConfig["roamingRenderings"].length == 0) { + delete oldThemeConfig["roamingRenderings"] + } else { + return { + result: null, + errors: [context + ": The theme contains roamingRenderings. These are not supported anymore"], + warnings: [] + } + } + } + return { + errors: [], + warnings: [], + result: oldThemeConfig + } + } +} + +export class FixLegacyTheme extends Fuse { + constructor() { + super( + "Fixes a legacy theme to the modern JSON format geared to humans. Syntactic sugars are kept (i.e. no tagRenderings are expandend, no dependencies are automatically gathered)", + new UpdateLegacyTheme(), + new OnEvery("layers", new UpdateLegacyLayer()) + ); + } +} + +export class ValidateLayer extends DesugaringStep { + /** + * The paths where this layer is originally saved. Triggers some extra checks + * @private + */ + private readonly _path?: string; + private readonly knownImagePaths?: Set; + private readonly _isBuiltin: boolean; + + constructor(knownImagePaths: Set, path: string, isBuiltin: boolean) { + super("Doesn't change anything, but emits warnings and errors", []); + this.knownImagePaths = knownImagePaths; + this._path = path; + this._isBuiltin = isBuiltin; + } + + convert(state: DesugaringContext, json: LayerConfigJson, context: string): { result: LayerConfigJson; errors: string[]; warnings: string[] } { + const errors = [] + const warnings = [] + + if (typeof json === "string") { + errors.push(context + ": This layer hasn't been expanded: " + json) + return { + result: null, + warnings: [], + errors + } + } + + if (json["builtin"] !== undefined) { + errors.push(context + ": This layer hasn't been expanded: " + json) + return { + result: null, + warnings: [], + errors + } + } + + try { + { + // Some checks for legacy elements + + if (json["overpassTags"] !== undefined) { + errors.push("Layer " + json.id + "still uses the old 'overpassTags'-format. Please use \"source\": {\"osmTags\": }' instead of \"overpassTags\": (note: this isn't your fault, the custom theme generator still spits out the old format)") + } + const forbiddenTopLevel = ["icon", "wayHandling", "roamingRenderings", "roamingRendering", "label", "width", "color", "colour", "iconOverlays"] + for (const forbiddenKey of forbiddenTopLevel) { + if (json[forbiddenKey] !== undefined) + errors.push(context + ": layer " + json.id + " still has a forbidden key " + forbiddenKey) + } + if (json["hideUnderlayingFeaturesMinPercentage"] !== undefined) { + errors.push(context + ": layer " + json.id + " contains an old 'hideUnderlayingFeaturesMinPercentage'") + } + } + { + const layer = new LayerConfig(json, "test", true) + const images = Array.from(layer.ExtractImages()) + const remoteImages = images.filter(img => img.indexOf("http") == 0) + for (const remoteImage of remoteImages) { + errors.push("Found a remote image: " + remoteImage + " in layer " + layer.id + ", please download it. You can use the fixTheme script to automate this") + } + for (const image of images) { + if (image.indexOf("{") >= 0) { + warnings.push("Ignoring image with { in the path: ", image) + continue + } + + if (this.knownImagePaths !== undefined && !this.knownImagePaths.has(image)) { + const ctx = context === undefined ? "" : ` in a layer defined in the theme ${context}` + errors.push(`Image with path ${image} not found or not attributed; it is used in ${layer.id}${ctx}`) + } + } + + } + { + // CHeck location + const expected: string = `assets/layers/${json.id}/${json.id}.json` + if (this._path != undefined && this._path.indexOf(expected) < 0) { + errors.push("Layer is in an incorrect place. The path is " + this._path + ", but expected " + expected) + } + } + + + if (this._isBuiltin) { + if (json.tagRenderings?.some(tr => tr["id"] === "")) { + const emptyIndexes: number[] = [] + for (let i = 0; i < json.tagRenderings.length; i++) { + const tagRendering = json.tagRenderings[i]; + if (tagRendering["id"] === "") { + emptyIndexes.push(i) + } + } + errors.push(`Some tagrendering-ids are empty or have an emtpy string; this is not allowed (at ${context}.tagRenderings.[${emptyIndexes.join(",")}])`) + } + + const duplicateIds = Utils.Dupiclates((json.tagRenderings ?? [])?.map(f => f["id"]).filter(id => id !== "questions")) + if (duplicateIds.length > 0 && !Utils.runningFromConsole) { + errors.push(`Some tagRenderings have a duplicate id: ${duplicateIds} (at ${context}.tagRenderings)`) + } + + + if (json.description === undefined) { + + if (Constants.priviliged_layers.indexOf(json.id) >= 0) { + errors.push( + context + ": A priviliged layer must have a description" + ) + } else { + warnings.push( + context + ": A builtin layer should have a description" + ) + } + } + } + } catch (e) { + errors.push(e) + } + return { + result: undefined, + errors, + warnings + }; + } +} + +class ValidateLanguageCompleteness extends DesugaringStep { + private readonly _languages: string[]; + + constructor(...languages: string[]) { + super("Checks that the given object is fully translated in the specified languages", []); + this._languages = languages; + } + + convert(state: DesugaringContext, obj: any, context: string): { result: LayerConfig; errors: string[]; warnings: string[] } { + const errors = [] + const translations = Translation.ExtractAllTranslationsFrom( + obj + ) + for (const neededLanguage of this._languages) { + translations + .filter(t => t.tr.translations[neededLanguage] === undefined && t.tr.translations["*"] === undefined) + .forEach(missing => { + errors.push(context + "A theme should be translation-complete for " + neededLanguage + ", but it lacks a translation for " + missing.context + ".\n\tThe english translation is " + missing.tr.textFor('en')) + }) + } + + return { + result: obj, + warnings: [], errors + }; + } +} + +class ValidateTheme extends DesugaringStep { + /** + * The paths where this layer is originally saved. Triggers some extra checks + * @private + */ + private readonly _path?: string; + private readonly knownImagePaths: Set; + private readonly _isBuiltin: boolean; + + constructor(knownImagePaths: Set, path: string, isBuiltin: boolean) { + super("Doesn't change anything, but emits warnings and errors", []); + this.knownImagePaths = knownImagePaths; + this._path = path; + this._isBuiltin = isBuiltin; + } + + convert(state: DesugaringContext, json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors: string[]; warnings: string[] } { + const errors = [] + const warnings = [] + { + // Legacy format checks + if (this._isBuiltin) { + if (typeof json.language === "string") { + errors.push("The theme " + json.id + " has a string as language. Please use a list of strings") + } + if (json["units"] !== undefined) { + errors.push("The theme " + json.id + " has units defined - these should be defined on the layer instead. (Hint: use overrideAll: { '+units': ... }) ") + } + if (json["roamingRenderings"] !== undefined) { + errors.push("Theme " + json.id + " contains an old 'roamingRenderings'. Use an 'overrideAll' instead") + } + } + } + + try { + const theme = new LayoutConfig(json, true, "test") + if (theme.id !== theme.id.toLowerCase()) { + errors.push("Theme ids should be in lowercase, but it is " + theme.id) + } + + const filename = this._path.substring(this._path.lastIndexOf("/") + 1, this._path.length - 5) + if (theme.id !== filename) { + errors.push("Theme ids should be the same as the name.json, but we got id: " + theme.id + " and filename " + filename + " (" + this._path + ")") + } + if (!this.knownImagePaths.has(theme.icon)) { + errors.push("The theme image " + theme.icon + " is not attributed or not saved locally") + } + const dups = Utils.Dupiclates(json.layers.map(layer => layer["id"])) + if (dups.length > 0) { + errors.push(`The theme ${json.id} defines multiple layers with id ${dups.join(", ")}`) + } + if (json["mustHaveLanguage"] !== undefined) { + const checked = new ValidateLanguageCompleteness(...json["mustHaveLanguage"]) + .convert(state, theme, theme.id) + errors.push(...checked.errors) + warnings.push(...checked.warnings) + } + + } catch (e) { + errors.push(e) + } + + return { + result: json, + errors, + warnings + }; + } +} + +export class ValidateThemeAndLayers extends Fuse { + constructor(knownImagePaths: Set, path: string, isBuiltin: boolean) { + super("Validates a theme and the contained layers", + new ValidateTheme(knownImagePaths, path, isBuiltin), + new OnEvery("layers", new ValidateLayer(knownImagePaths, undefined, false)) + ); + } +} + +class AddDependencyLayersToTheme extends DesugaringStep { + constructor() { + super("If a layer has a dependency on another layer, these layers are added automatically on the theme. (For example: defibrillator depends on 'walls_and_buildings' to snap onto. This layer is added automatically)", ["layers"]); + } + + private static CalculateDependencies(alreadyLoaded: LayerConfigJson[], allKnownLayers: Map, themeId: string): LayerConfigJson[] { + const dependenciesToAdd: LayerConfigJson[] = [] + const loadedLayerIds: Set = new Set(alreadyLoaded.map(l => l.id)); + + // Verify cross-dependencies + let unmetDependencies: { neededLayer: string, neededBy: string, reason: string, context?: string }[] = [] + do { + const dependencies: { neededLayer: string, reason: string, context?: string, neededBy: string }[] = [] + + for (const layerConfig of alreadyLoaded) { + const layerDeps = DependencyCalculator.getLayerDependencies(new LayerConfig(layerConfig)) + dependencies.push(...layerDeps) + } + + // During the generate script, builtin layers are verified but not loaded - so we have to add them manually here + // Their existance is checked elsewhere, so this is fine + unmetDependencies = dependencies.filter(dep => !loadedLayerIds.has(dep.neededLayer)) + for (const unmetDependency of unmetDependencies) { + if (loadedLayerIds.has(unmetDependency.neededLayer)) { + continue + } + const dep = allKnownLayers.get(unmetDependency.neededLayer) + if (dep === undefined) { + const message = + ["Loading a dependency failed: layer " + unmetDependency.neededLayer + " is not found, neither as layer of " + themeId + " nor as builtin layer.", + "This layer is needed by " + unmetDependency.neededBy, + unmetDependency.reason + " (at " + unmetDependency.context + ")", + "Loaded layers are: " + alreadyLoaded.map(l => l.id).join(",") + + ] + throw message.join("\n\t"); + } + dependenciesToAdd.unshift(dep) + loadedLayerIds.add(dep.id); + unmetDependencies = unmetDependencies.filter(d => d.neededLayer !== unmetDependency.neededLayer) + } + + } while (unmetDependencies.length > 0) + + return dependenciesToAdd; + } + + convert(state: DesugaringContext, theme: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors: string[]; warnings: string[] } { + const allKnownLayers: Map = state.sharedLayers; + const knownTagRenderings: Map = state.tagRenderings; + const errors = []; + const warnings = []; + const layers: LayerConfigJson[] = theme.layers; // Layers should be expanded at this point + + knownTagRenderings.forEach((value, key) => { + value.id = key; + }) + + const dependencies = AddDependencyLayersToTheme.CalculateDependencies(layers, allKnownLayers, theme.id); + if (dependencies.length > 0) { + + warnings.push(context + ": added " + dependencies.map(d => d.id).join(", ") + " to the theme as they are needed") + } + layers.unshift(...dependencies); + + return { + result: { + ...theme, + layers: layers + }, + errors, + warnings + }; + } +} + +class SetDefault extends DesugaringStep { + private readonly value: any; + private readonly key: string; + private readonly _overrideEmptyString: boolean; + + constructor(key: string, value: any, overrideEmptyString = false) { + super("Sets " + key + " to a default value if undefined"); + this.key = key; + this.value = value; + this._overrideEmptyString = overrideEmptyString; + } + + convert(state: DesugaringContext, json: T, context: string): { result: T; errors: string[]; warnings: string[] } { + if (json[this.key] === undefined || (json[this.key] === "" && this._overrideEmptyString)) { + json = {...json} + json[this.key] = this.value + } + + return { + errors: [], warnings: [], + result: json + }; + } +} + +export class PrepareLayer extends Fuse { + constructor() { + super( + "Fully prepares and expands a layer for the LayerConfig.", + new OnEveryConcat("tagRenderings", new ExpandGroupRewrite()), + new OnEveryConcat("tagRenderings", new ExpandTagRendering()), + new SetDefault("titleIcons", ["defaults"]), + new OnEveryConcat("titleIcons", new ExpandTagRendering()) + ); + } +} + +class SubstituteLayer extends Conversion<(string | LayerConfigJson), LayerConfigJson[]> { + constructor() { + super("Converts the identifier of a builtin layer into the actual layer, or converts a 'builtin' syntax with override in the fully expanded form", []); + } + + convert(state: DesugaringContext, json: string | LayerConfigJson, context: string): { result: LayerConfigJson[]; errors: string[]; warnings: string[] } { + const errors = [] + const warnings = [] + if (typeof json === "string") { + const found = state.sharedLayers.get(json) + if (found === undefined) { + return { + result: null, + errors: [context + ": The layer with name " + json + " was not found as a builtin layer"], + warnings + } + } + return { + result: [found], + errors, warnings + } + } + + if (json["builtin"] !== undefined) { + let names = json["builtin"] + if (typeof names === "string") { + names = [names] + } + const layers = [] + for (const name of names) { + const found = Utils.Clone(state.sharedLayers.get(name)) + if (found === undefined) { + errors.push(context + ": The layer with name " + json + " was not found as a builtin layer") + continue + } + if (json["override"]["tagRenderings"] !== undefined && (found["tagRenderings"] ?? []).length > 0) { + errors.push(`At ${context}: when overriding a layer, an override is not allowed to override into tagRenderings. Use "+tagRenderings" or "tagRenderings+" instead to prepend or append some questions.`) + } + try { + Utils.Merge(json["override"], found); + layers.push(found) + } catch (e) { + errors.push(`At ${context}: could not apply an override due to: ${e}.\nThe override is: ${JSON.stringify(json["override"],)}`) + } + } + return { + result: layers, + errors, warnings + } + + } + + return { + result: [json], + errors, warnings + }; + } + +} + +class AddDefaultLayers extends DesugaringStep { + + constructor() { + super("Adds the default layers, namely: " + Constants.added_by_default.join(", "), ["layers"]); + } + + convert(state: DesugaringContext, json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors: string[]; warnings: string[] } { + const errors = [] + const warnings = [] + json.layers = [...json.layers] + + if (json.id === "personal") { + json.layers = [] + for (const publicLayer of AllKnownLayouts.AllPublicLayers()) { + const id = publicLayer.id + const config = state.sharedLayers.get(id) + if(Constants.added_by_default.indexOf(id) >= 0){ + continue; + } + if(config === undefined){ + // This is a layer which is coded within a public theme, not as separate .json + continue + } + json.layers.push(config) + } + const publicIds = AllKnownLayouts.AllPublicLayers().map(l => l.id) + publicIds.map(id => state.sharedLayers.get(id)) + } + + for (const layerName of Constants.added_by_default) { + const v = state.sharedLayers.get(layerName) + if (v === undefined) { + errors.push("Default layer " + layerName + " not found") + } + json.layers.push(v) + } + + return { + result: json, + errors, + warnings + }; + } + +} + +export class PrepareTheme extends Fuse { + constructor() { + super( + "Fully prepares and expands a theme", + new OnEveryConcat("layers", new SubstituteLayer()), + new SetDefault("socialImage", "assets/SocialImage.png", true), + new AddDefaultLayers(), + new AddDependencyLayersToTheme(), + new OnEvery("layers", new PrepareLayer()), + new OnEvery("layers", new AddMiniMap()) + ); + } +} \ No newline at end of file diff --git a/Models/ThemeConfig/FilterConfig.ts b/Models/ThemeConfig/FilterConfig.ts index 833ae50500..32785a354b 100644 --- a/Models/ThemeConfig/FilterConfig.ts +++ b/Models/ThemeConfig/FilterConfig.ts @@ -3,12 +3,20 @@ import {TagsFilter} from "../../Logic/Tags/TagsFilter"; 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 {UIEventSource} from "../../Logic/UIEventSource"; +import {FilterState} from "../FilteredLayer"; +import {QueryParameters} from "../../Logic/Web/QueryParameters"; +import {Utils} from "../../Utils"; export default class FilterConfig { public readonly id: string public readonly options: { question: Translation; - osmTags: TagsFilter; + osmTags: TagsFilter | undefined; + originalTagsSpec: string | AndOrTagConfigJson + fields: { name: string, type: string }[] }[]; constructor(json: FilterConfigJson, context: string) { @@ -28,23 +36,127 @@ export default class FilterConfig { } this.id = json.id; this.options = json.options.map((option, i) => { + const ctx = `${context}.options[${i}]`; const question = Translations.T( option.question, - context + ".options-[" + i + "].question" - ); - const osmTags = TagUtils.Tag( - option.osmTags ?? {and: []}, - `${context}.options-[${i}].osmTags` + `${ctx}.question` ); + let osmTags = undefined; + if ((option.fields?.length ?? 0) == 0 && option.osmTags !== undefined) { + osmTags = TagUtils.Tag( + option.osmTags, + `${ctx}.osmTags` + ); + } if (question === undefined) { - throw `Invalid filter: no question given at ${context}[${i}]` + throw `Invalid filter: no question given at ${ctx}` } - return {question: question, osmTags: osmTags}; + const fields: { name: string, type: string }[] = ((option.fields) ?? []).map((f, i) => { + const type = f.type ?? "string" + if (!ValidatedTextField.AllTypes.has(type)) { + throw `Invalid filter: ${type} is not a valid validated textfield type (at ${ctx}.fields[${i}])\n\tTry one of ${Array.from(ValidatedTextField.AllTypes.keys()).join(",")}` + } + if (f.name === undefined || f.name === "" || f.name.match(/[a-z0-9_-]+/) == null) { + throw `Invalid filter: a variable name should match [a-z0-9_-]+ at ${ctx}.fields[${i}]` + } + return { + name: f.name, + type + } + }) + + + return {question: question, osmTags: osmTags, fields, originalTagsSpec: option.osmTags}; }); - if (this.options.length > 1 && this.options[0].osmTags["and"]?.length !== 0) { + if (this.options.some(o => o.fields.length > 0) && this.options.length > 1) { + throw `Invalid filter at ${context}: a filter with textfields should only offer a single option.` + } + + if (this.options.length > 1 && this.options[0].osmTags !== undefined) { throw "Error in " + context + "." + this.id + ": the first option of a multi-filter should always be the 'reset' option and not have any filters" } } + + public initState(): UIEventSource { + + function reset(state: FilterState): string { + if (state === undefined) { + return "" + } + return "" + state.state + } + + const defaultValue = this.options.length > 1 ? "0" : "" + const qp = QueryParameters.GetQueryParameter("filter-" + this.id, defaultValue, "State of filter " + this.id) + + if (this.options.length > 1) { + // This is a multi-option filter; state should be a number which selects the correct entry + const possibleStates: FilterState [] = this.options.map((opt, i) => ({ + currentFilter: opt.osmTags, + state: i + })) + + // We map the query parameter for this case + return qp.map(str => { + const parsed = Number(str) + if (isNaN(parsed)) { + // Nope, not a correct number! + return undefined + } + return possibleStates[parsed] + }, [], reset) + } + + + const option = this.options[0] + + if (option.fields.length > 0) { + return qp.map(str => { + // There are variables in play! + // str should encode a json-hash + try { + const props = JSON.parse(str) + + const origTags = option.originalTagsSpec + const rewrittenTags = Utils.WalkJson(origTags, + v => { + if (typeof v !== "string") { + return v + } + for (const key in props) { + v = (v).replace("{" + key + "}", props[key]) + } + return v + } + ) + const parsed = TagUtils.Tag(rewrittenTags) + return { + currentFilter: parsed, + state: str + } + } catch (e) { + return undefined + } + + }, [], reset) + } + + // The last case is pretty boring: it is checked or it isn't + const filterState: FilterState = { + currentFilter: option.osmTags, + state: "true" + } + return qp.map( + str => { + // Only a single option exists here + if (str === "true") { + return filterState + } + return undefined + }, [], + reset + ) + } } \ No newline at end of file diff --git a/Models/ThemeConfig/Json/FilterConfigJson.ts b/Models/ThemeConfig/Json/FilterConfigJson.ts index 7151e38542..25bcd1ea81 100644 --- a/Models/ThemeConfig/Json/FilterConfigJson.ts +++ b/Models/ThemeConfig/Json/FilterConfigJson.ts @@ -11,5 +11,12 @@ export default interface FilterConfigJson { * If there is only one option this will be a checkbox * Filtering is done based on the given osmTags that are compared to the objects in that layer. */ - options: { question: string | any; osmTags?: AndOrTagConfigJson | string }[]; + options: { + question: string | any; + osmTags?: AndOrTagConfigJson | string, + fields?: { + name: string, + type?: string | "string" + }[] + }[]; } \ No newline at end of file diff --git a/Models/ThemeConfig/Json/LayerConfigJson.ts b/Models/ThemeConfig/Json/LayerConfigJson.ts index f570d627c3..6cc02f1956 100644 --- a/Models/ThemeConfig/Json/LayerConfigJson.ts +++ b/Models/ThemeConfig/Json/LayerConfigJson.ts @@ -140,9 +140,9 @@ export interface LayerConfigJson { * Small icons shown next to the title. * If not specified, the OsmLink and wikipedia links will be used by default. * Use an empty array to hide them. - * Note that "defaults" will insert all the default titleIcons + * Note that "defaults" will insert all the default titleIcons (which are added automatically) */ - titleIcons?: (string | TagRenderingConfigJson)[]; + titleIcons?: (string | TagRenderingConfigJson)[] | ["defaults"]; mapRendering: null | (PointRenderingConfigJson | LineRenderingConfigJson)[] diff --git a/Models/ThemeConfig/Json/LineRenderingConfigJson.ts b/Models/ThemeConfig/Json/LineRenderingConfigJson.ts index 2b2606473c..b29f9a9919 100644 --- a/Models/ThemeConfig/Json/LineRenderingConfigJson.ts +++ b/Models/ThemeConfig/Json/LineRenderingConfigJson.ts @@ -18,7 +18,7 @@ export default interface LineRenderingConfigJson { /** * The stroke-width for way-elements */ - width?: string | TagRenderingConfigJson; + width?: string | number | TagRenderingConfigJson; /** * A dasharray, e.g. "5 6" diff --git a/Models/ThemeConfig/LayerConfig.ts b/Models/ThemeConfig/LayerConfig.ts index 091422bb66..62a1788f6b 100644 --- a/Models/ThemeConfig/LayerConfig.ts +++ b/Models/ThemeConfig/LayerConfig.ts @@ -22,7 +22,8 @@ import Title from "../../UI/Base/Title"; import List from "../../UI/Base/List"; import Link from "../../UI/Base/Link"; import {Utils} from "../../Utils"; -import * as icons from "../../assets/tagRenderings/icons.json" +import {TagsFilter} from "../../Logic/Tags/TagsFilter"; +import Table from "../../UI/Base/Table"; export default class LayerConfig extends WithContextLoader { @@ -32,11 +33,11 @@ export default class LayerConfig extends WithContextLoader { public readonly source: SourceConfig; public readonly calculatedTags: [string, string, boolean][]; public readonly doNotDownload: boolean; - public readonly passAllFeatures: boolean; + public readonly passAllFeatures: boolean; public readonly isShown: TagRenderingConfig; public minzoom: number; public minzoomVisible: number; - public readonly maxzoom: number; + public readonly maxzoom: number; public readonly title?: TagRenderingConfig; public readonly titleIcons: TagRenderingConfig[]; @@ -66,6 +67,10 @@ export default class LayerConfig extends WithContextLoader { context = context + "." + json.id; super(json, context) this.id = json.id; + + if(json.id === undefined){ + throw "Not a valid layer: id is undefined: "+JSON.stringify(json) + } if (json.source === undefined) { throw "Layer " + this.id + " does not define a source section (" + context + ")" @@ -75,10 +80,10 @@ export default class LayerConfig extends WithContextLoader { throw "Layer " + this.id + " does not define a osmTags in the source section - these should always be present, even for geojson layers (" + context + ")" } - if(json.id.toLowerCase() !== json.id){ + if (json.id.toLowerCase() !== json.id) { throw `${context}: The id of a layer should be lowercase: ${json.id}` } - if(json.id.match(/[a-z0-9-_]/) == null){ + if (json.id.match(/[a-z0-9-_]/) == null) { throw `${context}: The id of a layer should match [a-z0-9-_]*: ${json.id}` } @@ -138,7 +143,7 @@ export default class LayerConfig extends WithContextLoader { const index = kv.indexOf("="); let key = kv.substring(0, index); const isStrict = key.endsWith(':') - if(isStrict){ + if (isStrict) { key = key.substr(0, key.length - 1) } const code = kv.substring(index + 1); @@ -174,7 +179,7 @@ export default class LayerConfig extends WithContextLoader { preferredBackground: undefined } } - + let snapToLayers: string[]; if (typeof pr.preciseInput.snapToLayer === "string") { snapToLayers = [pr.preciseInput.snapToLayer] @@ -230,32 +235,20 @@ export default class LayerConfig extends WithContextLoader { } } - const missingIds = json.tagRenderings?.filter(tr => typeof tr !== "string" && tr["builtin"] === undefined && tr["id"] === undefined && tr["rewrite"] === undefined) ?? []; + const missingIds = Utils.NoNull(json.tagRenderings)?.filter(tr => typeof tr !== "string" && tr["builtin"] === undefined && tr["id"] === undefined && tr["rewrite"] === undefined) ?? []; if (missingIds?.length > 0 && official) { console.error("Some tagRenderings of", this.id, "are missing an id:", missingIds) throw "Missing ids in tagrenderings" } - this.tagRenderings = this.ExtractLayerTagRenderings(json, official) - if (official) { - - const emptyIds = this.tagRenderings.filter(tr => tr.id === ""); - if (emptyIds.length > 0) { - throw `Some tagrendering-ids are empty or have an emtpy string; this is not allowed (at ${context})` - } - - const duplicateIds = Utils.Dupicates(this.tagRenderings.map(f => f.id).filter(id => id !== "questions")) - if (duplicateIds.length > 0) { - throw `Some tagRenderings have a duplicate id: ${duplicateIds} (at ${context}.tagRenderings)` - } - } + this.tagRenderings = (Utils.NoNull(json.tagRenderings) ?? []).map((tr, i) => new TagRenderingConfig(tr, this.id + ".tagRenderings[" + i + "]")) this.filters = (json.filter ?? []).map((option, i) => { return new FilterConfig(option, `${context}.filter-[${i}]`) }); { - const duplicateIds = Utils.Dupicates(this.filters.map(f => f.id)) + const duplicateIds = Utils.Dupiclates(this.filters.map(f => f.id)) if (duplicateIds.length > 0) { throw `Some filters have a duplicate id: ${duplicateIds} (at ${context}.filters)` } @@ -265,17 +258,8 @@ export default class LayerConfig extends WithContextLoader { throw "Error in " + context + ": use 'filter' instead of 'filters'" } - const titleIcons = []; - const defaultIcons = icons.defaultIcons; - for (const icon of json.titleIcons ?? defaultIcons) { - if (icon === "defaults") { - titleIcons.push(...defaultIcons); - } else { - titleIcons.push(icon); - } - } - this.titleIcons = this.ParseTagRenderings(titleIcons, { + this.titleIcons = this.ParseTagRenderings(( json.titleIcons), { readOnlyMode: true }); @@ -321,108 +305,6 @@ export default class LayerConfig extends WithContextLoader { return mapRendering.GenerateLeafletStyle(defaultTags, false, {noSize: true}).html } - public ExtractLayerTagRenderings(json: LayerConfigJson, official: boolean): TagRenderingConfig[] { - - if (json.tagRenderings === undefined) { - return [] - } - - const normalTagRenderings: (string | { builtin: string, override: any } | TagRenderingConfigJson)[] = [] - - - const renderingsToRewrite: ({ - rewrite: { - sourceString: string, - into: string[] - }, renderings: (string | { builtin: string, override: any } | TagRenderingConfigJson)[] - })[] = [] - for (let i = 0; i < json.tagRenderings.length; i++) { - const tr = json.tagRenderings[i]; - const rewriteDefined = tr["rewrite"] !== undefined - const renderingsDefined = tr["renderings"] - - if (!rewriteDefined && !renderingsDefined) { - // @ts-ignore - normalTagRenderings.push(tr) - continue - } - if (rewriteDefined && renderingsDefined) { - // @ts-ignore - renderingsToRewrite.push(tr) - continue - } - throw `Error in ${this._context}.tagrenderings[${i}]: got a value which defines either \`rewrite\` or \`renderings\`, but not both. Either define both or move the \`renderings\` out of this scope` - } - - const allRenderings = this.ParseTagRenderings(normalTagRenderings, - { - requiresId: official - }); - - if (renderingsToRewrite.length === 0) { - return allRenderings - } - - /* Used for left|right group creation and replacement */ - function prepConfig(keyToRewrite: string, target: string, tr: TagRenderingConfigJson) { - - function replaceRecursive(transl: string | any) { - if (typeof transl === "string") { - return transl.replace(keyToRewrite, target) - } - if (transl.map !== undefined) { - return transl.map(o => replaceRecursive(o)) - } - transl = {...transl} - for (const key in transl) { - transl[key] = replaceRecursive(transl[key]) - } - return transl - } - - const orig = tr; - tr = replaceRecursive(tr) - - tr.id = target + "-" + orig.id - tr.group = target - return tr - } - - const rewriteGroups: Map = new Map() - for (const rewriteGroup of renderingsToRewrite) { - - const tagRenderings = rewriteGroup.renderings - const textToReplace = rewriteGroup.rewrite.sourceString - const targets = rewriteGroup.rewrite.into - for (const target of targets) { - const parsedRenderings = this.ParseTagRenderings(tagRenderings, { - prepConfig: tr => prepConfig(textToReplace, target, tr) - }) - - if (!rewriteGroups.has(target)) { - rewriteGroups.set(target, []) - } - rewriteGroups.get(target).push(...parsedRenderings) - } - } - - - rewriteGroups.forEach((group, groupName) => { - group.push(new TagRenderingConfig({ - id: "questions", - group: groupName - })) - }) - - rewriteGroups.forEach(group => { - allRenderings.push(...group) - }) - - - return allRenderings; - - } - public GenerateDocumentation(usedInThemes: string[], layerIsNeededBy: Map, dependencies: { context?: string; reason: string; @@ -434,13 +316,13 @@ export default class LayerConfig extends WithContextLoader { if (addedByDefault) { extraProps.push("**This layer is included automatically in every theme. This layer might contain no points**") } - if(this.shownByDefault === false){ + if (this.shownByDefault === false) { extraProps.push('This layer is not visible by default and must be enabled in the filter by the user. ') } if (this.title === undefined) { extraProps.push("This layer cannot be toggled in the filter view. If you import this layer in your theme, override `title` to make this toggleable.") } - if(this.title === undefined && this.shownByDefault === false){ + if (this.title === undefined && this.shownByDefault === false) { extraProps.push("This layer is not visible by default and the visibility cannot be toggled, effectively resulting in a fully hidden layer. This can be useful, e.g. to calculate some metatags. If you want to render this layer (e.g. for debugging), enable it by setting the URL-parameter layer-=true") } if (this.name === undefined) { @@ -449,6 +331,10 @@ export default class LayerConfig extends WithContextLoader { if (this.mapRendering.length === 0) { extraProps.push("Not rendered on the map by default. If you want to rendering this on the map, override `mapRenderings`") } + + if (this.source.geojsonSource !== undefined) { + extraProps.push(" This layer is loaded from an external source, namely `" + this.source.geojsonSource + "`") + } } else { extraProps.push("This layer can **not** be included in a theme. It is solely used by [special renderings](SpecialRenderings.md) showing a minimap with custom data.") } @@ -462,22 +348,70 @@ export default class LayerConfig extends WithContextLoader { } for (const dep of dependencies) { - extraProps.push(new Combine(["This layer will automatically load ", new Link(dep.neededLayer, "#"+dep.neededLayer)," into the layout as it depends on it: ", dep.reason, "("+dep.context+")"])) + extraProps.push(new Combine(["This layer will automatically load ", new Link(dep.neededLayer, "./" + dep.neededLayer + ".md"), " into the layout as it depends on it: ", dep.reason, "(" + dep.context + ")"])) } - - for(const revDep of layerIsNeededBy?.get(this.id) ?? []){ - extraProps.push(new Combine(["This layer is needed as dependency for layer",new Link(revDep, "#"+revDep)])) + + for (const revDep of layerIsNeededBy?.get(this.id) ?? []) { + extraProps.push(new Combine(["This layer is needed as dependency for layer", new Link(revDep, "#" + revDep)])) + } + + const icon = Array.from(this.mapRendering[0]?.icon?.ExtractImages(true) ?? [])[0] + let iconImg = "" + if (icon !== undefined) { + iconImg = ` ` + } + + let neededTags: TagsFilter[] = [this.source.osmTags] + if (this.source.osmTags["and"] !== undefined) { + neededTags = this.source.osmTags["and"] + } + + let tableRows = Utils.NoNull(this.tagRenderings.map(tr => tr.FreeformValues()) + .map(values => { + if (values == undefined) { + return undefined + } + const embedded: (Link | string)[] = values.values?.map(v => Link.OsmWiki(values.key, v, true)) ?? ["_no preset options defined, or no values in them_"] + return [ + new Combine([ + new Link( + "", + "https://taginfo.openstreetmap.org/keys/"+values.key+"#values" + ),Link.OsmWiki(values.key) + ]), + values.type === undefined ? "Multiple choice" : new Link(values.type, "../SpecialInputElements.md#" + values.type), + new Combine(embedded) + ]; + })) + + let quickOverview: BaseUIElement = undefined; + if (tableRows.length > 0) { + quickOverview = new Combine([ + "**Warning** This quick overview is incomplete", + new Table(["attribute", "type", "values which are supported by this layer"], tableRows) + ]).SetClass("flex-col flex") } return new Combine([ - new Title(this.id, 3), - this.description, + new Combine([ + new Title(this.id, 1), + iconImg, + this.description, + "\n" + ]).SetClass("flex flex-col"), + new List(extraProps), + ...usingLayer, new Link("Go to the source code", `../assets/layers/${this.id}/${this.id}.json`), - new List(extraProps), - ...usingLayer - ]).SetClass("flex flex-col") + new Title("Basic tags for this layer", 2), + "Elements must have the all of following tags to be shown on this layer:", + new List(neededTags.map(t => t.asHumanString(true, false, {}))), + + new Title("Supported attributes", 2), + quickOverview, + ...this.tagRenderings.map(tr => tr.GenerateDocumentation()) + ]).SetClass("flex-col") } public CustomCodeSnippets(): string[] { @@ -486,10 +420,10 @@ export default class LayerConfig extends WithContextLoader { } return this.calculatedTags.map((code) => code[1]); } - - AllTagRenderings(): TagRenderingConfig[]{ - return Utils.NoNull([...this.tagRenderings, ...this.titleIcons, this.title, this.isShown]) -} + + AllTagRenderings(): TagRenderingConfig[] { + return Utils.NoNull([...this.tagRenderings, ...this.titleIcons, this.title, this.isShown]) + } public ExtractImages(): Set { const parts: Set[] = []; @@ -512,5 +446,4 @@ export default class LayerConfig extends WithContextLoader { public isLeftRightSensitive(): boolean { return this.lineRendering.some(lr => lr.leftRightSensitive) } - } \ No newline at end of file diff --git a/Models/ThemeConfig/LayoutConfig.ts b/Models/ThemeConfig/LayoutConfig.ts index e09ef21866..7637825326 100644 --- a/Models/ThemeConfig/LayoutConfig.ts +++ b/Models/ThemeConfig/LayoutConfig.ts @@ -1,14 +1,9 @@ import {Translation} from "../../UI/i18n/Translation"; import {LayoutConfigJson} from "./Json/LayoutConfigJson"; -import AllKnownLayers from "../../Customizations/AllKnownLayers"; -import {Utils} from "../../Utils"; import LayerConfig from "./LayerConfig"; import {LayerConfigJson} from "./Json/LayerConfigJson"; import Constants from "../Constants"; import TilesourceConfig from "./TilesourceConfig"; -import DependencyCalculator from "./DependencyCalculator"; -import {DomEvent} from "leaflet"; -import off = DomEvent.off; export default class LayoutConfig { public readonly id: string; @@ -17,7 +12,7 @@ export default class LayoutConfig { public readonly version: string; public readonly language: string[]; public readonly title: Translation; - public readonly shortDescription?: Translation; + public readonly shortDescription: Translation; public readonly description: Translation; public readonly descriptionTail?: Translation; public readonly icon: string; @@ -55,7 +50,6 @@ export default class LayoutConfig { public readonly overpassMaxZoom: number public readonly osmApiTileSize: number public readonly official: boolean; - public readonly trackAllNodes: boolean; constructor(json: LayoutConfigJson, official = true, context?: string) { this.official = official; @@ -79,14 +73,28 @@ export default class LayoutConfig { } else { this.language = json.language; } - if (this.language.length == 0) { - throw `No languages defined. Define at least one language. (${context}.languages)` - } - if (json.title === undefined) { - throw "Title not defined in " + this.id; - } - if (json.description === undefined) { - throw "Description not defined in " + this.id; + { + if (this.language.length == 0) { + throw `No languages defined. Define at least one language. (${context}.languages)` + } + if (json.title === undefined) { + throw "Title not defined in " + this.id; + } + if (json.description === undefined) { + throw "Description not defined in " + this.id; + } + if (json.widenFactor <= 0) { + throw "Widenfactor too small, shoud be > 0" + } + if (json.widenFactor > 20) { + throw "Widenfactor is very big, use a value between 1 and 5 (current value is " + json.widenFactor + ") at " + context + } + if (json["hideInOverview"]) { + throw "The json for " + this.id + " contains a 'hideInOverview'. Did you mean hideFromOverview instead?" + } + if (json.layers === undefined) { + throw "Got undefined layers for " + json.id + " at " + context + } } this.title = new Translation(json.title, context + ".title"); this.description = new Translation(json.description, context + ".description"); @@ -94,22 +102,20 @@ export default class LayoutConfig { this.descriptionTail = json.descriptionTail === undefined ? undefined : new Translation(json.descriptionTail, context + ".descriptionTail"); this.icon = json.icon; this.socialImage = json.socialImage; + if(this.socialImage === null || this.socialImage === "" || this.socialImage === undefined){ + if(official){ + throw "Theme "+json.id+" has no social image defined" + } + } this.startZoom = json.startZoom; this.startLat = json.startLat; this.startLon = json.startLon; - if (json.widenFactor <= 0) { - throw "Widenfactor too small, shoud be > 0" - } - if (json.widenFactor > 20) { - throw "Widenfactor is very big, use a value between 1 and 5 (current value is " + json.widenFactor + ") at " + context - } - this.widenFactor = json.widenFactor ?? 1.5; this.defaultBackgroundId = json.defaultBackgroundId; this.tileLayerSources = (json.tileLayerSources ?? []).map((config, i) => new TilesourceConfig(config, `${this.id}.tileLayerSources[${i}]`)) - const layerInfo = LayoutConfig.ExtractLayers(json, official, context); - this.layers = layerInfo.layers + // At this point, layers should be expanded and validated either by the generateScript or the LegacyJsonConvert + this.layers = json.layers.map(lyrJson => new LayerConfig(lyrJson, json.id + ".layers." + lyrJson["id"], official)); this.clustering = { @@ -129,10 +135,6 @@ export default class LayoutConfig { } this.hideFromOverview = json.hideFromOverview ?? false; - // @ts-ignore - if (json.hideInOverview) { - throw "The json for " + this.id + " contains a 'hideInOverview'. Did you mean hideFromOverview instead?" - } this.lockLocation = <[[number, number], [number, number]]>json.lockLocation ?? undefined; this.enableUserBadge = json.enableUserBadge ?? true; this.enableShareScreen = json.enableShareScreen ?? true; @@ -156,125 +158,11 @@ export default class LayoutConfig { } } this.overpassTimeout = json.overpassTimeout ?? 30 - this.overpassMaxZoom = json.overpassMaxZoom ?? 17 + this.overpassMaxZoom = json.overpassMaxZoom ?? 16 this.osmApiTileSize = json.osmApiTileSize ?? this.overpassMaxZoom + 1 } - private static ExtractLayers(json: LayoutConfigJson, official: boolean, context: string): { layers: LayerConfig[], extractAllNodes: boolean } { - const result: LayerConfig[] = [] - let exportAllNodes = false - if(json.layers === undefined){ - throw "Got undefined layers for "+json.id+" at "+context - } - json.layers.forEach((layer, i) => { - - if (typeof layer === "string") { - if (AllKnownLayers.sharedLayersJson.get(layer) !== undefined) { - if (json.overrideAll !== undefined) { - let lyr = JSON.parse(JSON.stringify(AllKnownLayers.sharedLayersJson.get(layer))); - const newLayer = new LayerConfig(Utils.Merge(json.overrideAll, lyr), `${json.id}+overrideAll.layers[${i}]`, official) - result.push(newLayer) - return - } else { - const shared = AllKnownLayers.sharedLayers.get(layer) - if (shared === undefined) { - throw `Shared layer ${layer} not found (at ${context}.layers[${i}])` - } - result.push(shared) - return - } - } else { - console.log("Layer ", layer, " not kown, try one of", Array.from(AllKnownLayers.sharedLayers.keys()).join(", ")) - throw `Unknown builtin layer ${layer} at ${context}.layers[${i}]`; - } - } - - if (layer["builtin"] === undefined) { - if (json.overrideAll !== undefined) { - layer = Utils.Merge(json.overrideAll, layer); - } - // @ts-ignore - result.push(new LayerConfig(layer, `${json.id}.layers[${i}]`, official)) - return - } - - // @ts-ignore - let names = layer.builtin; - if (typeof names === "string") { - names = [names] - } - - // This is a very special layer which triggers special behaviour - exportAllNodes = names.some(name => name === "type_node"); - - names.forEach(name => { - const shared = AllKnownLayers.sharedLayersJson.get(name); - if (shared === undefined) { - throw `Unknown shared/builtin layer ${name} at ${context}.layers[${i}]. Available layers are ${Array.from(AllKnownLayers.sharedLayersJson.keys()).join(", ")}`; - } - let newLayer: LayerConfigJson = Utils.Merge(layer["override"], JSON.parse(JSON.stringify(shared))); // We make a deep copy of the shared layer, in order to protect it from changes - if (json.overrideAll !== undefined) { - newLayer = Utils.Merge(json.overrideAll, newLayer); - } - result.push(new LayerConfig(newLayer, `${json.id}.layers[${i}]`, official)) - return - }) - - }); - - // Some special layers which are always included by default - for (const defaultLayer of AllKnownLayers.added_by_default) { - if (result.some(l => l?.id === defaultLayer)) { - continue; // Already added - } - const sharedLayer = AllKnownLayers.sharedLayers.get(defaultLayer) - if (sharedLayer !== undefined) { - result.push(sharedLayer) - }else if(!AllKnownLayers.runningGenerateScript){ - throw "SharedLayer "+defaultLayer+" not found" - } - } - - if(AllKnownLayers.runningGenerateScript){ - return {layers: result, extractAllNodes: exportAllNodes} - } - // Verify cross-dependencies - let unmetDependencies: { neededLayer: string, neededBy: string, reason: string, context?: string }[] = [] - do { - const dependencies: { neededLayer: string, reason: string, context?: string, neededBy: string }[] = [] - - for (const layerConfig of result) { - const layerDeps = DependencyCalculator.getLayerDependencies(layerConfig) - dependencies.push(...layerDeps) - } - - const loadedLayers = new Set(result.map(r => r.id)) - // During the generate script, builtin layers are verified but not loaded - so we have to add them manually here - // Their existance is checked elsewhere, so this is fine - unmetDependencies = dependencies.filter(dep => !loadedLayers.has(dep.neededLayer)) - for (const unmetDependency of unmetDependencies) { - const dep = AllKnownLayers.sharedLayers.get(unmetDependency.neededLayer) - if (dep === undefined) { - - const message = - ["Loading a dependency failed: layer "+unmetDependency.neededLayer+" is not found, neither as layer of "+json.id+" nor as builtin layer.", - "This layer is needed by "+unmetDependency.neededBy, - unmetDependency.reason+" (at "+unmetDependency.context+")", - "Loaded layers are: "+result.map(l => l.id).join(",") - - ] - throw message.join("\n\t"); - } - result.unshift(dep) - unmetDependencies = unmetDependencies.filter(d => d.neededLayer !== unmetDependency.neededLayer) - } - - } while (unmetDependencies.length > 0) - - return {layers: result, extractAllNodes: exportAllNodes} - } - public CustomCodeSnippets(): string[] { if (this.official) { return []; diff --git a/Models/ThemeConfig/LegacyJsonConvert.ts b/Models/ThemeConfig/LegacyJsonConvert.ts deleted file mode 100644 index 8189814360..0000000000 --- a/Models/ThemeConfig/LegacyJsonConvert.ts +++ /dev/null @@ -1,116 +0,0 @@ -import LineRenderingConfigJson from "./Json/LineRenderingConfigJson"; -import PointRenderingConfig from "./PointRenderingConfig"; - -export default class LegacyJsonConvert { - - /** - * Updates the config file in-place - * @param config - * @private - */ - public static fixLayerConfig(config: any): void { - if (config["overpassTags"]) { - config.source = config.source ?? {} - config.source.osmTags = config["overpassTags"] - delete config["overpassTags"] - } - - if (config.tagRenderings !== undefined) { - for (const tagRendering of config.tagRenderings) { - if (tagRendering["id"] === undefined) { - - if (tagRendering["#"] !== undefined) { - tagRendering["id"] = tagRendering["#"] - delete tagRendering["#"] - } else if (tagRendering["freeform"]?.key !== undefined) { - tagRendering["id"] = config.id + "-" + tagRendering["freeform"]["key"] - } - } - } - } - - if (config.mapRendering === undefined) { - config.mapRendering = [] - // This is a legacy format, lets create a pointRendering - let location: ("point" | "centroid")[] = ["point"] - let wayHandling: number = config["wayHandling"] ?? 0 - if (wayHandling !== 0) { - location = ["point", "centroid"] - } - if(config["icon"] ?? config["label"] !== undefined){ - - const pointConfig = { - icon: config["icon"], - iconBadges: config["iconOverlays"], - label: config["label"], - iconSize: config["iconSize"], - location, - rotation: config["rotation"] - } - config.mapRendering.push(pointConfig) - } - - - if (wayHandling !== 1) { - const lineRenderConfig = { - color: config["color"], - width: config["width"], - dashArray: config["dashArray"] - } - if (Object.keys(lineRenderConfig).length > 0) { - config.mapRendering.push(lineRenderConfig) - } - } - if(config.mapRendering.length === 0){ - throw "Could not convert the legacy theme into a new theme: no renderings defined for layer "+config.id - } - - } - - delete config["color"] - delete config["width"] - delete config["dashArray"] - - delete config["icon"] - delete config["iconOverlays"] - delete config["label"] - delete config["iconSize"] - delete config["rotation"] - delete config["wayHandling"] - delete config["hideUnderlayingFeaturesMinPercentage"] - - for (const mapRenderingElement of config.mapRendering) { - if (mapRenderingElement["iconOverlays"] !== undefined) { - mapRenderingElement["iconBadges"] = mapRenderingElement["iconOverlays"] - } - for (const overlay of mapRenderingElement["iconBadges"] ?? []) { - if (overlay["badge"] !== true) { - console.log("Warning: non-overlay element for ", config.id) - } - delete overlay["badge"] - } - } - - } - - - /** - * Given an old (parsed) JSON-config, will (in place) fix some issues - * @param oldThemeConfig: the config to update to the latest format - */ - public static fixThemeConfig(oldThemeConfig: any): void { - for (const layerConfig of oldThemeConfig.layers ?? []) { - if (typeof layerConfig === "string" || layerConfig["builtin"] !== undefined) { - continue - } - // @ts-ignore - LegacyJsonConvert.fixLayerConfig(layerConfig) - } - - if (oldThemeConfig["roamingRenderings"] !== undefined && oldThemeConfig["roamingRenderings"].length == 0) { - delete oldThemeConfig["roamingRenderings"] - } - } - - -} \ No newline at end of file diff --git a/Models/ThemeConfig/TagRenderingConfig.ts b/Models/ThemeConfig/TagRenderingConfig.ts index c9674097ff..f85f6b19a1 100644 --- a/Models/ThemeConfig/TagRenderingConfig.ts +++ b/Models/ThemeConfig/TagRenderingConfig.ts @@ -7,6 +7,11 @@ import {And} from "../../Logic/Tags/And"; import ValidatedTextField from "../../UI/Input/ValidatedTextField"; import {Utils} from "../../Utils"; import {Tag} from "../../Logic/Tags/Tag"; +import BaseUIElement from "../../UI/BaseUIElement"; +import Combine from "../../UI/Base/Combine"; +import Title from "../../UI/Base/Title"; +import Link from "../../UI/Base/Link"; +import List from "../../UI/Base/List"; /*** * The parsed version of TagRenderingConfigJSON @@ -40,7 +45,6 @@ export default class TagRenderingConfig { readonly hideInAnswer: boolean | TagsFilter readonly addExtraTags: Tag[] }[] - constructor(json: string | TagRenderingConfigJson, context?: string) { if (json === undefined) { throw "Initing a TagRenderingConfig with undefined in " + context; @@ -69,7 +73,7 @@ export default class TagRenderingConfig { } - this.id = json.id ?? ""; + this.id = json.id ?? ""; // Some tagrenderings - especially for the map rendering - don't need an ID if (this.id.match(/^[a-zA-Z0-9 ()?\/=:;,_-]*$/) === null) { throw "Invalid ID in " + context + ": an id can only contain [a-zA-Z0-0_-] as characters. The offending id is: " + this.id } @@ -112,7 +116,7 @@ export default class TagRenderingConfig { } - if (ValidatedTextField.AllTypes[this.freeform.type] === undefined) { + if (!ValidatedTextField.AllTypes.has(this.freeform.type)) { const knownKeys = ValidatedTextField.tpList.map(tp => tp.name).join(", "); throw `Freeform.key ${this.freeform.key} is an invalid type. Known keys are ${knownKeys}` } @@ -369,6 +373,9 @@ export default class TagRenderingConfig { return mapping.then; } if (mapping.if.matchesProperties(tags)) { + if(this.id === "uk_addresses_placename"){ + console.log("Matched",mapping.if,"with ",tags["addr:place"]) + } return mapping.then; } } @@ -397,7 +404,7 @@ export default class TagRenderingConfig { EnumerateTranslations(): Translation[] { const translations: Translation[] = [] for (const key in this) { - if(!this.hasOwnProperty(key)){ + if (!this.hasOwnProperty(key)) { continue; } const o = this[key] @@ -420,5 +427,84 @@ export default class TagRenderingConfig { return usedIcons; } + FreeformValues(): { key: string, type?: string, values?: string [] } { + try { + const key = this.freeform?.key + const answerMappings = this.mappings?.filter(m => m.hideInAnswer !== true) + if (key === undefined) { + + let values: { k: string, v: string }[][] = Utils.NoNull(answerMappings?.map(m => m.if.asChange({})) ?? []) + if (values.length === 0) { + return; + } + + const allKeys = values.map(arr => arr.map(o => o.k)) + let common = allKeys[0]; + for (const keyset of allKeys) { + common = common.filter(item => keyset.indexOf(item) >= 0) + } + const commonKey = common[0] + if (commonKey === undefined) { + return undefined; + } + return { + key: commonKey, + values: Utils.NoNull(values.map(arr => arr.filter(item => item.k === commonKey)[0]?.v)) + } + + } + + let values = Utils.NoNull(answerMappings?.map(m => m.if.asChange({}).filter(item => item.k === key)[0]?.v) ?? []) + if (values.length === undefined) { + values = undefined + } + return { + key, + type: this.freeform.type, + values + } + } catch (e) { + console.error("Could not create FreeformValues for tagrendering", this.id) + return undefined + } + } + + GenerateDocumentation(): BaseUIElement { + + let withRender: (BaseUIElement | string)[] = []; + if (this.freeform?.key !== undefined) { + withRender = [ + `This rendering asks information about the property `, + Link.OsmWiki(this.freeform.key), + `\nThis is rendered with \`${this.render.txt}\`` + + ] + } + + let mappings: BaseUIElement = undefined; + if (this.mappings !== undefined) { + mappings = new List( + this.mappings.map(m => { + let txt = "**" + m.then.txt + "** corresponds with " + m.if.asHumanString(true, false, {}); + if(m.hideInAnswer === true) + { + txt += "_This option cannot be chosen as answer_" + } + if(m.ifnot !== undefined){ + txt += "Unselecting this answer will add "+m.ifnot.asHumanString(true, false, {}) + } + return txt; + } + ) + ) + } + + return new Combine([ + new Title(this.id, 3), + this.question !== undefined ? "The question is **" + this.question.txt + "**" : "_This tagrendering has no question and is thus read-only_", + new Combine(withRender), + mappings + ]).SetClass("flex-col"); + } } \ No newline at end of file diff --git a/Models/ThemeConfig/WithContextLoader.ts b/Models/ThemeConfig/WithContextLoader.ts index b6087143dc..5f59e65c84 100644 --- a/Models/ThemeConfig/WithContextLoader.ts +++ b/Models/ThemeConfig/WithContextLoader.ts @@ -1,20 +1,10 @@ import TagRenderingConfig from "./TagRenderingConfig"; import SharedTagRenderings from "../../Customizations/SharedTagRenderings"; import {TagRenderingConfigJson} from "./Json/TagRenderingConfigJson"; -import {Utils} from "../../Utils"; export default class WithContextLoader { protected readonly _context: string; private readonly _json: any; - - public static getKnownTagRenderings : ((id: string) => TagRenderingConfigJson[])= function(id) { - const found = SharedTagRenderings.SharedTagRenderingJson.get(id) - if(found !== undefined){ - return [found] - }else{ - return [] - } -} constructor(json: any, context: string) { this._json = json; @@ -53,15 +43,15 @@ export default class WithContextLoader { * A string is interpreted as a name to call */ public ParseTagRenderings( - tagRenderings: (string | { builtin: string, override: any } | TagRenderingConfigJson)[], - options?:{ + tagRenderings: TagRenderingConfigJson[], + options?: { /** * Throw an error if 'question' is defined */ readOnlyMode?: boolean, requiresId?: boolean prepConfig?: ((config: TagRenderingConfigJson) => TagRenderingConfigJson) - + } ): TagRenderingConfig[] { if (tagRenderings === undefined) { @@ -73,62 +63,17 @@ export default class WithContextLoader { if (options.prepConfig === undefined) { options.prepConfig = c => c } - const preparedConfigs : TagRenderingConfigJson[] = [] - for (let i = 0; i < tagRenderings.length; i++) { - let renderingJson = tagRenderings[i] - if(renderingJson === "questions"){ - renderingJson = { - id: "questions" - } - } - if (typeof renderingJson === "string") { - renderingJson = {builtin: renderingJson, override: undefined} - } - - if (renderingJson["builtin"] === undefined) { - const patchedConfig = options.prepConfig(renderingJson) - preparedConfigs.push(patchedConfig) - continue - - } - - - const renderingId = renderingJson["builtin"] - let sharedJsons = [] - if(typeof renderingId === "string"){ - sharedJsons = WithContextLoader.getKnownTagRenderings(renderingId) - }else{ - sharedJsons = [].concat( ...(renderingId).map(id => WithContextLoader.getKnownTagRenderings(id) ) ) - } - - if (sharedJsons.length === 0) { - const keys = Array.from(SharedTagRenderings.SharedTagRenderingJson.keys()); - throw `Predefined tagRendering ${renderingId} not found in ${context}.\n Try one of ${keys.join( - ", " - )}\n If you intent to output this text literally, use {\"render\": } instead"}`; - } - for (let sharedJson of sharedJsons) { - if (renderingJson["override"] !== undefined) { - sharedJson = Utils.Merge(renderingJson["override"], JSON.parse(JSON.stringify(sharedJson))) - } - - const patchedConfig = options.prepConfig(sharedJson) - preparedConfigs.push(patchedConfig) - } - - } - const renderings: TagRenderingConfig[] = [] - for (let i = 0; i < preparedConfigs.length; i++){ - const preparedConfig = preparedConfigs[i]; + for (let i = 0; i < tagRenderings.length; i++) { + const preparedConfig = tagRenderings[i]; const tr = new TagRenderingConfig(preparedConfig, `${context}.tagrendering[${i}]`); - if(options.readOnlyMode && tr.question !== undefined){ - throw "A question is defined for "+`${context}.tagrendering[${i}], but this is not allowed at this position - probably because this rendering is an icon, badge or label` + if (options.readOnlyMode && tr.question !== undefined) { + throw "A question is defined for " + `${context}.tagrendering[${i}], but this is not allowed at this position - probably because this rendering is an icon, badge or label` } - if(options.requiresId && tr.id === ""){ + if (options.requiresId && tr.id === "") { throw `${context}.tagrendering[${i}] has an invalid ID - make sure it is defined and not empty` } - + renderings.push(tr) } diff --git a/Models/TileRange.ts b/Models/TileRange.ts index 9a585a30e5..7f282be6b8 100644 --- a/Models/TileRange.ts +++ b/Models/TileRange.ts @@ -1,6 +1,3 @@ -import {control} from "leaflet"; - - export interface TileRange { xstart: number, ystart: number, @@ -16,7 +13,7 @@ export class Tiles { const result: T[] = [] const total = tileRange.total if (total > 100000) { - throw "Tilerange too big" + throw `Tilerange too big (z is ${tileRange.zoomlevel}, total tiles needed: ${tileRange.total})` } for (let x = tileRange.xstart; x <= tileRange.xend; x++) { for (let y = tileRange.ystart; y <= tileRange.yend; y++) { diff --git a/UI/AllThemesGui.ts b/UI/AllThemesGui.ts index 3c83e2a495..ebdc645831 100644 --- a/UI/AllThemesGui.ts +++ b/UI/AllThemesGui.ts @@ -1,9 +1,9 @@ +import UserRelatedState from "../Logic/State/UserRelatedState"; import {FixedUiElement} from "./Base/FixedUiElement"; import Combine from "./Base/Combine"; import MoreScreen from "./BigComponents/MoreScreen"; import Translations from "./i18n/Translations"; import Constants from "../Models/Constants"; -import UserRelatedState from "../Logic/State/UserRelatedState"; import {Utils} from "../Utils"; import LanguagePicker from "./LanguagePicker"; import IndexText from "./BigComponents/IndexText"; @@ -13,7 +13,6 @@ import {SubtleButton} from "./Base/SubtleButton"; export default class AllThemesGui { constructor() { - try { new FixedUiElement("").AttachTo("centermessage") @@ -41,6 +40,7 @@ export default class AllThemesGui { .SetStyle("pointer-events: all;") .AttachTo("topleft-tools"); } catch (e) { + console.error(">>>> CRITICAL", e) new FixedUiElement("Seems like no layers are compiled - check the output of `npm run generate:layeroverview`. Is this visible online? Contact pietervdvn immediately!").SetClass("alert") .AttachTo("centermessage") } diff --git a/UI/AutomatonGui.ts b/UI/AutomatonGui.ts index 036d64e957..b462da25ce 100644 --- a/UI/AutomatonGui.ts +++ b/UI/AutomatonGui.ts @@ -27,6 +27,7 @@ import {QueryParameters} from "../Logic/Web/QueryParameters"; import {SubstitutedTranslation} from "./SubstitutedTranslation"; import {AutoAction} from "./Popup/AutoApplyButton"; import DynamicGeoJsonTileSource from "../Logic/FeatureSource/TiledFeatureSource/DynamicGeoJsonTileSource"; +import * as themeOverview from "../assets/generated/theme_overview.json" class AutomationPanel extends Combine{ @@ -161,7 +162,7 @@ class AutomationPanel extends Combine{ return true; } stateToShow.setData("Applying metatags") - pipeline.updateAllMetaTagging() + pipeline.updateAllMetaTagging("triggered by automaton") stateToShow.setData("Gathering applicable elements") let handled = 0 @@ -177,7 +178,7 @@ class AutomationPanel extends Combine{ const feature = ffs.feature const renderingTr = targetAction.GetRenderValue(feature.properties) const rendering = renderingTr.txt - log.push(""+feature.properties.id+": "+new SubstitutedTranslation(renderingTr, new UIEventSource(feature.properties)).ConstructElement().innerText) + log.push(""+feature.properties.id+": "+new SubstitutedTranslation(renderingTr, new UIEventSource(feature.properties), state).ConstructElement().innerText) const actions = Utils.NoNull(SubstitutedTranslation.ExtractSpecialComponents(rendering) .map(obj => obj.special)) for (const action of actions) { @@ -251,7 +252,7 @@ class AutomatonGui { private static GenerateMainPanel(): BaseUIElement { const themeSelect = new DropDown("Select a theme", - AllKnownLayouts.layoutsList.map(l => ({value: l.id, shown: l.id})) + Array.from(themeOverview).map(l => ({value: l.id, shown: l.id})) ) LocalStorageSource.Get("automation-theme-id", "missing_streets").syncWith(themeSelect.GetValue()) diff --git a/UI/Base/Combine.ts b/UI/Base/Combine.ts index 3c3cb0c7f4..cead86ecb2 100644 --- a/UI/Base/Combine.ts +++ b/UI/Base/Combine.ts @@ -17,7 +17,11 @@ export default class Combine extends BaseUIElement { } AsMarkdown(): string { - return this.uiElements.map(el => el.AsMarkdown()).join(this.HasClass("flex-col") ? "\n\n" : " "); + let sep = " "; + if (this.HasClass("flex-col")) { + sep = "\n\n" + } + return this.uiElements.map(el => el.AsMarkdown()).join(sep); } Destroy() { @@ -52,11 +56,10 @@ export default class Combine extends BaseUIElement { return el; } - - public getElements(): BaseUIElement[]{ + + public getElements(): BaseUIElement[] { return this.uiElements } - } \ No newline at end of file diff --git a/UI/Base/FixedUiElement.ts b/UI/Base/FixedUiElement.ts index 14b1860dcf..4600d26ff6 100644 --- a/UI/Base/FixedUiElement.ts +++ b/UI/Base/FixedUiElement.ts @@ -21,6 +21,6 @@ export class FixedUiElement extends BaseUIElement { e.innerHTML = this.content return e; } - + } \ No newline at end of file diff --git a/UI/Base/Img.ts b/UI/Base/Img.ts index 7104dfeb27..c2d85768ab 100644 --- a/UI/Base/Img.ts +++ b/UI/Base/Img.ts @@ -53,5 +53,17 @@ export default class Img extends BaseUIElement { } return el; } + + AsMarkdown(): string { + if (this._rawSvg === true) { + console.warn("Converting raw svgs to markdown is not supported"); + return undefined + } + let src = this._src + if (this._src.startsWith("./")) { + src = "https://mapcomplete.osm.be/" + src + } + return "![](" + src + ")"; + } } diff --git a/UI/Base/Link.ts b/UI/Base/Link.ts index cf5f41a9fd..bfcb268e95 100644 --- a/UI/Base/Link.ts +++ b/UI/Base/Link.ts @@ -13,6 +13,9 @@ export default class Link extends BaseUIElement { this._embeddedShow = Translations.W(embeddedShow); this._href = href; this._newTab = newTab; + if (this._embeddedShow === undefined) { + throw "Error: got a link where embeddedShow is undefined" + } } @@ -41,4 +44,15 @@ export default class Link extends BaseUIElement { return el; } + public static OsmWiki(key: string, value?: string, hideKey = false) { + if (value !== undefined) { + let k = ""; + if (!hideKey) { + k = key + "=" + } + return new Link(k + value, `https://wiki.openstreetmap.org/wiki/Tag:${key}%3D${value}`) + } + return new Link(key, "https://wiki.openstreetmap.org/wiki/Key:" + key) + } + } \ No newline at end of file diff --git a/UI/Base/Minimap.ts b/UI/Base/Minimap.ts index c55dd35496..1b9d076418 100644 --- a/UI/Base/Minimap.ts +++ b/UI/Base/Minimap.ts @@ -37,8 +37,8 @@ export default class Minimap { public static createMiniMap: (options: MinimapOptions) => (BaseUIElement & MinimapObj) = (_) => { throw "CreateMinimap hasn't been initialized yet. Please call MinimapImplementation.initialize()" } - - private constructor() { + + private constructor() { } diff --git a/UI/Base/MinimapImplementation.ts b/UI/Base/MinimapImplementation.ts index e5aa7f8eff..2f70f85510 100644 --- a/UI/Base/MinimapImplementation.ts +++ b/UI/Base/MinimapImplementation.ts @@ -23,9 +23,9 @@ export default class MinimapImplementation extends BaseUIElement implements Mini private readonly _leafletoptions: any; private readonly _onFullyLoaded: (leaflet: L.Map) => void private readonly _attribution: BaseUIElement | boolean; - private readonly _lastClickLocation: UIEventSource<{ lat: number; lon: number }>; private readonly _bounds: UIEventSource | undefined; private readonly _addLayerControl: boolean; + private readonly _options: MinimapOptions; private constructor(options: MinimapOptions) { super() @@ -39,8 +39,8 @@ export default class MinimapImplementation extends BaseUIElement implements Mini this._leafletoptions = options.leafletOptions ?? {} this._onFullyLoaded = options.onFullyLoaded this._attribution = options.attribution - this._lastClickLocation = options.lastClickLocation; this._addLayerControl = options.addLayerControl ?? false + this._options = options MinimapImplementation._nextId++ } @@ -48,7 +48,7 @@ export default class MinimapImplementation extends BaseUIElement implements Mini public static initialize() { Minimap.createMiniMap = options => new MinimapImplementation(options) } - + public installBounds(factor: number | BBox, showRange?: boolean) { this.leafletMap.addCallbackD(leaflet => { let bounds; @@ -105,7 +105,7 @@ export default class MinimapImplementation extends BaseUIElement implements Mini } }) } - + Destroy() { super.Destroy(); console.warn("Decomissioning minimap", this._id) @@ -134,10 +134,10 @@ export default class MinimapImplementation extends BaseUIElement implements Mini const self = this; // @ts-ignore const resizeObserver = new ResizeObserver(_ => { - if(wrapper.clientHeight === 0 || wrapper.clientWidth === 0){ + if (wrapper.clientHeight === 0 || wrapper.clientWidth === 0) { return; } - if(wrapper.offsetParent === null || window.getComputedStyle(wrapper).display === 'none'){ + if (wrapper.offsetParent === null || window.getComputedStyle(wrapper).display === 'none') { // Not visible return; } @@ -200,6 +200,7 @@ export default class MinimapImplementation extends BaseUIElement implements Mini touchZoom: this._allowMoving, // Disabling this breaks the geojson layer - don't ask me why! zoomAnimation: this._allowMoving, fadeAnimation: this._allowMoving, + maxZoom: 21 } Utils.Merge(this._leafletoptions, options) @@ -244,7 +245,6 @@ export default class MinimapImplementation extends BaseUIElement implements Mini }) } map.addLayer(newLayer); - map.setMaxZoom(layer.max_zoom ?? map.getMaxZoom()) if (self._attribution !== true && self._attribution !== false) { self._attribution?.AttachTo('leaflet-attribution') } @@ -300,8 +300,8 @@ export default class MinimapImplementation extends BaseUIElement implements Mini } - if (this._lastClickLocation) { - const lastClickLocation = this._lastClickLocation + if (this._options.lastClickLocation) { + const lastClickLocation = this._options.lastClickLocation map.on("click", function (e) { // @ts-ignore lastClickLocation?.setData({lat: e.latlng.lat, lon: e.latlng.lng}) diff --git a/UI/Base/ScrollableFullScreen.ts b/UI/Base/ScrollableFullScreen.ts index c3dd39caaf..96fdb2eb00 100644 --- a/UI/Base/ScrollableFullScreen.ts +++ b/UI/Base/ScrollableFullScreen.ts @@ -76,6 +76,7 @@ export default class ScrollableFullScreen extends UIElement { ScrollableFullScreen._currentlyOpen = this; fs.classList.remove("hidden") } + private BuildComponent(title: BaseUIElement, content: BaseUIElement, isShown: UIEventSource) { const returnToTheMap = new Combine([ diff --git a/UI/Base/SubtleButton.ts b/UI/Base/SubtleButton.ts index a324505f77..5174d70d3f 100644 --- a/UI/Base/SubtleButton.ts +++ b/UI/Base/SubtleButton.ts @@ -8,32 +8,35 @@ import {UIElement} from "../UIElement"; export class SubtleButton extends UIElement { + private readonly imageUrl: string | BaseUIElement; + private readonly message: string | BaseUIElement; + private readonly linkTo: { url: string | UIEventSource; newTab?: boolean }; - private readonly _element: BaseUIElement constructor(imageUrl: string | BaseUIElement, message: string | BaseUIElement, linkTo: { url: string | UIEventSource, newTab?: boolean } = undefined) { super(); - this._element = SubtleButton.generateContent(imageUrl, message, linkTo) - this.SetClass("block flex p-3 my-2 bg-blue-100 rounded-lg hover:shadow-xl hover:bg-blue-200 link-no-underline") - + this.imageUrl = imageUrl; + this.message = message; + this.linkTo = linkTo; } - private static generateContent(imageUrl: string | BaseUIElement, messageT: string | BaseUIElement, linkTo: { url: string | UIEventSource, newTab?: boolean } = undefined): BaseUIElement { - const message = Translations.W(messageT); - message + protected InnerRender(): string | BaseUIElement { + const classes = "block flex p-3 my-2 bg-blue-100 rounded-lg hover:shadow-xl hover:bg-blue-200 link-no-underline"; + const message = Translations.W(this.message); let img; - if ((imageUrl ?? "") === "") { + if ((this.imageUrl ?? "") === "") { img = undefined; - } else if (typeof (imageUrl) === "string") { - img = new Img(imageUrl) + } else if (typeof (this.imageUrl) === "string") { + img = new Img(this.imageUrl) } else { - img = imageUrl; + img = this.imageUrl; } img?.SetClass("block flex items-center justify-center h-11 w-11 flex-shrink0 mr-4") const image = new Combine([img]) .SetClass("flex-shrink-0"); - if (linkTo == undefined) { + if (this.linkTo == undefined) { + this.SetClass(classes) return new Combine([ image, message?.SetClass("block overflow-ellipsis"), @@ -46,13 +49,10 @@ export class SubtleButton extends UIElement { image, message?.SetClass("block overflow-ellipsis") ]).SetClass("flex group w-full"), - linkTo.url, - linkTo.newTab ?? false - ) - } + this.linkTo.url, + this.linkTo.newTab ?? false + ).SetClass(classes) - protected InnerRender(): string | BaseUIElement { - return this._element; } diff --git a/UI/Base/TableOfContents.ts b/UI/Base/TableOfContents.ts index f49a0076dc..aa57f87dc9 100644 --- a/UI/Base/TableOfContents.ts +++ b/UI/Base/TableOfContents.ts @@ -10,8 +10,8 @@ import {Utils} from "../../Utils"; export default class TableOfContents extends Combine { -private readonly titles: Title[] - + private readonly titles: Title[] + constructor(elements: Combine | Title[], options?: { noTopLevel: false | boolean, maxDepth?: number @@ -28,9 +28,9 @@ private readonly titles: Title[] let content: BaseUIElement if (title.title instanceof Translation) { content = title.title.Clone() - }else if(title.title instanceof FixedUiElement){ + } else if (title.title instanceof FixedUiElement) { content = title.title - }else if(Utils.runningFromConsole){ + } else if (Utils.runningFromConsole) { content = new FixedUiElement(title.AsMarkdown()) } else { content = new FixedUiElement(title.title.ConstructElement().innerText) @@ -48,12 +48,12 @@ private readonly titles: Title[] els.push({level: title.level, content: vis}) } - const minLevel = Math.min(...els.map(e => e.level)) + const minLevel = Math.min(...els.map(e => e.level)) if (options?.noTopLevel) { - els = els.filter(e => e.level !== minLevel ) + els = els.filter(e => e.level !== minLevel) } - - if(options?.maxDepth){ + + if (options?.maxDepth) { els = els.filter(e => e.level <= (options.maxDepth + minLevel)) } @@ -63,18 +63,18 @@ private readonly titles: Title[] this.titles = titles; } - private static getTitles(elements: BaseUIElement[]): Title[]{ + private static getTitles(elements: BaseUIElement[]): Title[] { const titles = [] - for (const uiElement of elements){ - if(uiElement instanceof Combine){ + for (const uiElement of elements) { + if (uiElement instanceof Combine) { titles.push(...TableOfContents.getTitles(uiElement.getElements())) - }else if(uiElement instanceof Title){ + } else if (uiElement instanceof Title) { titles.push(uiElement) } } return titles } - + private static mergeLevel(elements: { level: number, content: BaseUIElement }[]): BaseUIElement[] { const maxLevel = Math.max(...elements.map(e => e.level)) const minLevel = Math.min(...elements.map(e => e.level)) @@ -108,16 +108,16 @@ private readonly titles: Title[] } AsMarkdown(): string { - const depthIcons = ["1."," -"," +"," *"] + const depthIcons = ["1.", " -", " +", " *"] const lines = ["## Table of contents\n"]; const minLevel = Math.min(...this.titles.map(t => t.level)) for (const title of this.titles) { const prefix = depthIcons[title.level - minLevel] ?? " ~" - const text = title.title.AsMarkdown().replace("\n","") + const text = title.title.AsMarkdown().replace("\n", "") const link = title.id - lines.push(prefix + " ["+text+"](#"+link+")") + lines.push(prefix + " [" + text + "](#" + link + ")") } - - return lines.join("\n")+"\n\n" + + return lines.join("\n") + "\n\n" } } \ No newline at end of file diff --git a/UI/Base/Title.ts b/UI/Base/Title.ts index 49c4b5dedc..f187818bc9 100644 --- a/UI/Base/Title.ts +++ b/UI/Base/Title.ts @@ -5,13 +5,13 @@ import {Utils} from "../../Utils"; export default class Title extends BaseUIElement { public readonly title: BaseUIElement; public readonly level: number; - public readonly id : string - - private static readonly defaultClassesPerLevel = ["", "text-3xl font-bold","text-2xl font-bold","text-xl font-bold", "text-lg font-bold"] + public readonly id: string + + private static readonly defaultClassesPerLevel = ["", "text-3xl font-bold", "text-2xl font-bold", "text-xl font-bold", "text-lg font-bold"] constructor(embedded: string | BaseUIElement, level: number = 3) { super() - if(embedded === undefined){ + if (embedded === undefined) { throw "A title should have some content. Undefined is not allowed" } if (typeof embedded === "string") { @@ -20,20 +20,20 @@ export default class Title extends BaseUIElement { this.title = embedded } this.level = level; - - let innerText : string = undefined; - if(typeof embedded === "string" ) { + + let innerText: string = undefined; + if (typeof embedded === "string") { innerText = embedded - }else if(embedded instanceof FixedUiElement){ + } else if (embedded instanceof FixedUiElement) { innerText = embedded.content - }else{ - if(Utils.runningFromConsole){ - console.log("Not constructing an anchor for title with embedded content of "+embedded) - }else{ + } else { + if (Utils.runningFromConsole) { + console.log("Not constructing an anchor for title with embedded content of " + embedded) + } else { innerText = embedded.ConstructElement()?.innerText } } - + this.id = innerText?.replace(/ /g, '-') ?.replace(/[?#.;:/]/, "") ?.toLowerCase() ?? "" diff --git a/UI/Base/Toggleable.ts b/UI/Base/Toggleable.ts index 277ff41f9d..31c68239b3 100644 --- a/UI/Base/Toggleable.ts +++ b/UI/Base/Toggleable.ts @@ -15,7 +15,7 @@ export class Accordeon extends Combine { } })) } - + super(toggles); } @@ -33,24 +33,24 @@ export default class Toggleable extends Combine { this.onClick(() => self.isVisible.setData(!self.isVisible.data)) const contentElement = content.ConstructElement() - if(title instanceof Title){ + if (title instanceof Title) { Hash.hash.addCallbackAndRun(h => { - if(h === title.id){ + if (h === title.id) { self.isVisible.setData(true) content.RemoveClass("border-gray-300") content.SetClass("border-red-300") - }else{ + } else { content.SetClass("border-gray-300") content.RemoveClass("border-red-300") } }) this.isVisible.addCallbackAndRun(isVis => { - if(isVis){ + if (isVis) { Hash.hash.setData(title.id) } }) } - + this.isVisible.addCallbackAndRun(isVisible => { if (isVisible) { contentElement.style.maxHeight = "100vh" diff --git a/UI/Base/VariableUIElement.ts b/UI/Base/VariableUIElement.ts index 6798a11f2f..8427170de8 100644 --- a/UI/Base/VariableUIElement.ts +++ b/UI/Base/VariableUIElement.ts @@ -1,5 +1,6 @@ import {UIEventSource} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; +import Combine from "./Combine"; export class VariableUiElement extends BaseUIElement { private readonly _contents: UIEventSource; @@ -8,7 +9,7 @@ export class VariableUiElement extends BaseUIElement { super(); this._contents = contents; } - + Destroy() { super.Destroy(); this.isDestroyed = true; @@ -18,7 +19,7 @@ export class VariableUiElement extends BaseUIElement { const el = document.createElement("span"); const self = this; this._contents.addCallbackAndRun((contents) => { - if(self.isDestroyed){ + if (self.isDestroyed) { return true; } while (el.firstChild) { @@ -46,4 +47,15 @@ export class VariableUiElement extends BaseUIElement { }); return el; } + + AsMarkdown(): string { + const d = this._contents.data; + if (typeof d === "string") { + return d; + } + if (d instanceof BaseUIElement) { + return d.AsMarkdown() + } + return new Combine(d).AsMarkdown() + } } diff --git a/UI/BigComponents/AddNewMarker.ts b/UI/BigComponents/AddNewMarker.ts index e51152c7db..ccee99b504 100644 --- a/UI/BigComponents/AddNewMarker.ts +++ b/UI/BigComponents/AddNewMarker.ts @@ -27,6 +27,9 @@ export default class AddNewMarker extends Combine { } } } + if(icons.length === 0){ + return undefined + } if (icons.length === 1) { return icons[0] } diff --git a/UI/BigComponents/FeaturedMessage.ts b/UI/BigComponents/FeaturedMessage.ts index 508f1be0c7..f1a3af01e0 100644 --- a/UI/BigComponents/FeaturedMessage.ts +++ b/UI/BigComponents/FeaturedMessage.ts @@ -3,7 +3,7 @@ import * as welcome_messages from "../../assets/welcome_message.json" import BaseUIElement from "../BaseUIElement"; import {FixedUiElement} from "../Base/FixedUiElement"; import MoreScreen from "./MoreScreen"; -import {AllKnownLayouts} from "../../Customizations/AllKnownLayouts"; +import * as themeOverview from "../../assets/generated/theme_overview.json" import Translations from "../i18n/Translations"; import Title from "../Base/Title"; @@ -33,6 +33,12 @@ export default class FeaturedMessage extends Combine { public static WelcomeMessages(): { start_date: Date, end_date: Date, message: string, featured_theme?: string }[] { const all_messages: { start_date: Date, end_date: Date, message: string, featured_theme?: string }[] = [] + + const themesById = new Map(); + for (const theme of themeOverview["default"]) { + themesById.set(theme.id, theme); + } + for (const i in welcome_messages) { if (isNaN(Number(i))) { continue @@ -41,7 +47,8 @@ export default class FeaturedMessage extends Combine { if (wm === null) { continue } - if (AllKnownLayouts.allKnownLayouts.get(wm.featured_theme) === undefined) { + if (themesById.get(wm.featured_theme) === undefined) { + console.log("THEMES BY ID:", themesById) console.error("Unkown featured theme for ", wm) continue } @@ -71,7 +78,10 @@ export default class FeaturedMessage extends Combine { const msg = new FixedUiElement(welcome_message.message).SetClass("link-underline font-lg") els.push(new Combine([title, msg]).SetClass("m-4")) if (welcome_message.featured_theme !== undefined) { - els.push(MoreScreen.createLinkButton({}, AllKnownLayouts.allKnownLayouts.get(welcome_message.featured_theme)) + + const theme = themeOverview["default"].filter(th => th.id === welcome_message.featured_theme)[0]; + + els.push(MoreScreen.createLinkButton({}, theme) .SetClass("m-4 self-center md:w-160") .SetStyle("height: min-content;")) diff --git a/UI/BigComponents/FilterView.ts b/UI/BigComponents/FilterView.ts index 011083a3f0..e4cf5eaf7b 100644 --- a/UI/BigComponents/FilterView.ts +++ b/UI/BigComponents/FilterView.ts @@ -10,10 +10,14 @@ import Svg from "../../Svg"; import {UIEventSource} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; import State from "../../State"; -import FilteredLayer from "../../Models/FilteredLayer"; +import FilteredLayer, {FilterState} from "../../Models/FilteredLayer"; import BackgroundSelector from "./BackgroundSelector"; import FilterConfig from "../../Models/ThemeConfig/FilterConfig"; import TilesourceConfig from "../../Models/ThemeConfig/TilesourceConfig"; +import {SubstitutedTranslation} from "../SubstitutedTranslation"; +import ValidatedTextField from "../Input/ValidatedTextField"; +import {QueryParameters} from "../../Logic/Web/QueryParameters"; +import {TagUtils} from "../../Logic/Tags/TagUtils"; export default class FilterView extends VariableUiElement { constructor(filteredLayer: UIEventSource, tileLayers: { config: TilesourceConfig, isDisplayed: UIEventSource }[]) { @@ -139,86 +143,104 @@ export default class FilterView extends VariableUiElement { if (layer.filters.length === 0) { return undefined; } + + + const toShow : BaseUIElement [] = [] - const filterIndexes = new Map() - layer.filters.forEach((f, i) => filterIndexes.set(f.id, i)) - - let listFilterElements: [BaseUIElement, UIEventSource<{ filter: FilterConfig, selected: number }>][] = layer.filters.map( - FilterView.createFilter - ); - - listFilterElements.forEach((inputElement, i) => - inputElement[1].addCallback((changed) => { - const oldValue = flayer.appliedFilters.data - - if (changed === undefined) { - // Lets figure out which filter should be removed - // We know this inputElement corresponds with layer.filters[i] - // SO, if there is a value in 'oldValue' with this filter, we have to recalculated - if (!oldValue.some(f => f.filter === layer.filters[i])) { - // The filter to remove is already gone, we can stop - return; - } - } else if (oldValue.some(f => f.filter === changed.filter && f.selected === changed.selected)) { - // The changed value is already there - return; - } - const listTagsFilters = Utils.NoNull( - listFilterElements.map((input) => input[1].data) - ); - - flayer.appliedFilters.setData(listTagsFilters); + for (const filter of layer.filters) { + + const [ui, actualTags] = FilterView.createFilter(filter) + + ui.SetClass("mt-3") + toShow.push(ui) + actualTags.addCallback(tagsToFilterFor => { + flayer.appliedFilters.data.set(filter.id, tagsToFilterFor) + flayer.appliedFilters.ping() }) - ); + flayer.appliedFilters.map(dict => dict.get(filter.id)) + .addCallbackAndRun(filters => actualTags.setData(filters)) + + + } - flayer.appliedFilters.addCallbackAndRun(appliedFilters => { - for (let i = 0; i < layer.filters.length; i++) { - const filter = layer.filters[i]; - let foundMatch = undefined - for (const appliedFilter of appliedFilters) { - if (appliedFilter.filter === filter) { - foundMatch = appliedFilter - break; - } - } - - listFilterElements[i][1].setData(foundMatch) - } - - }) - - return new Combine(listFilterElements.map(input => input[0].SetClass("mt-3"))) + return new Combine(toShow) .SetClass("flex flex-col ml-8 bg-gray-300 rounded-xl p-2") } + + // Filter which uses one or more textfields + private static createFilterWithFields(filterConfig: FilterConfig): [BaseUIElement, UIEventSource] { - private static createFilter(filterConfig: FilterConfig): [BaseUIElement, UIEventSource<{ filter: FilterConfig, selected: number }>] { - if (filterConfig.options.length === 1) { - let option = filterConfig.options[0]; - - const icon = Svg.checkbox_filled_svg().SetClass("block mr-2 w-6"); - const iconUnselected = Svg.checkbox_empty_svg().SetClass("block mr-2 w-6"); - - const toggle = new Toggle( - new Combine([icon, option.question.Clone().SetClass("block")]).SetClass("flex"), - new Combine([iconUnselected, option.question.Clone().SetClass("block")]).SetClass("flex") - ) - .ToggleOnClick() - .SetClass("block m-1") - - const selected = { - filter: filterConfig, - selected: 0 - } - return [toggle, toggle.isEnabled.map(enabled => enabled ? selected : undefined, [], - f => f?.filter === filterConfig && f?.selected === 0) - ] + const filter = filterConfig.options[0] + const mappings = new Map() + let allValid = new UIEventSource(true) + const properties = new UIEventSource({}) + for (const {name, type} of filter.fields) { + const value = QueryParameters.GetQueryParameter("filter-" + filterConfig.id + "-" + name, "", "Value for filter " + filterConfig.id) + const field = ValidatedTextField.InputForType(type, { + value + }).SetClass("inline-block") + mappings.set(name, field) + const stable = value.stabilized(250) + stable.addCallbackAndRunD(v => { + properties.data[name] = v.toLowerCase(); + properties.ping() + }) + allValid = allValid.map(previous => previous && field.IsValid(stable.data) && stable.data !== "", [stable]) } + const tr = new SubstitutedTranslation(filter.question, new UIEventSource({id: filterConfig.id}), State.state, mappings) + const trigger : UIEventSource= allValid.map(isValid => { + if (!isValid) { + return undefined + } + const props = properties.data + // Replace all the field occurences in the tags... + const tagsSpec = Utils.WalkJson(filter.originalTagsSpec, + v => { + if (typeof v !== "string") { + return v + } + + for (const key in props) { + v = (v).replace("{"+key+"}", props[key]) + } + + return v + } + ) + const tagsFilter = TagUtils.Tag(tagsSpec) + return { + currentFilter: tagsFilter, + state: JSON.stringify(props) + } + }, [properties]) + + return [tr, trigger]; + } + + private static createCheckboxFilter(filterConfig: FilterConfig): [BaseUIElement, UIEventSource] { + let option = filterConfig.options[0]; + + const icon = Svg.checkbox_filled_svg().SetClass("block mr-2 w-6"); + const iconUnselected = Svg.checkbox_empty_svg().SetClass("block mr-2 w-6"); + + const toggle = new Toggle( + new Combine([icon, option.question.Clone().SetClass("block")]).SetClass("flex"), + new Combine([iconUnselected, option.question.Clone().SetClass("block")]).SetClass("flex") + ) + .ToggleOnClick() + .SetClass("block m-1") + + return [toggle, toggle.isEnabled.map(enabled => enabled ? {currentFilter: option.osmTags, state: "true"} : undefined, [], + f => f !== undefined) + ] + } + private static createMultiFilter(filterConfig: FilterConfig): [BaseUIElement, UIEventSource] { let options = filterConfig.options; - const values = options.map((f, i) => ({ - filter: filterConfig, selected: i + const values : FilterState[] = options.map((f, i) => ({ + currentFilter: f.osmTags, state: i })) const radio = new RadioButton( options.map( @@ -234,8 +256,25 @@ export default class FilterView extends VariableUiElement { i => values[i], [], selected => { - return selected?.selected + const v = selected?.state + if(v === undefined || typeof v === "string"){ + return undefined + } + return v } )] } + private static createFilter(filterConfig: FilterConfig): [BaseUIElement, UIEventSource] { + + if (filterConfig.options[0].fields.length > 0) { + return FilterView.createFilterWithFields(filterConfig) + } + + + if (filterConfig.options.length === 1) { + return FilterView.createCheckboxFilter(filterConfig) + } + + return FilterView.createMultiFilter(filterConfig) + } } diff --git a/UI/BigComponents/Histogram.ts b/UI/BigComponents/Histogram.ts index 994a1ebe84..015fdbe302 100644 --- a/UI/BigComponents/Histogram.ts +++ b/UI/BigComponents/Histogram.ts @@ -5,7 +5,7 @@ import Combine from "../Base/Combine"; import {FixedUiElement} from "../Base/FixedUiElement"; import {Utils} from "../../Utils"; import BaseUIElement from "../BaseUIElement"; -import Translations from "../i18n/Translations"; +import Svg from "../../Svg"; export default class Histogram extends VariableUiElement { @@ -13,9 +13,9 @@ export default class Histogram extends VariableUiElement { "#ff5858", "#ffad48", "#ffff59", - "#9d62d9", "#56bd56", "#63a9ff", + "#9d62d9", "#fa61fa" ] @@ -24,6 +24,51 @@ export default class Histogram extends VariableUiElement { countTitle: string | BaseUIElement, assignColor?: (t0: string) => string ) { + const sortMode = new UIEventSource<"name" | "name-rev" | "count" | "count-rev">("name") + const sortName = new VariableUiElement(sortMode.map(m => { + switch (m) { + case "name": + return Svg.up_svg() + case "name-rev": + return Svg.up_svg().SetStyle("transform: rotate(180deg)") + default: + return Svg.circle_svg() + } + })) + const titleHeader = new Combine([sortName.SetClass("w-4 mr-2"), title]).SetClass("flex") + .onClick(() => { + if (sortMode.data === "name") { + sortMode.setData("name-rev") + } else { + sortMode.setData("name") + } + }) + + const sortCount = new VariableUiElement(sortMode.map(m => { + switch (m) { + case "count": + return Svg.up_svg() + case "count-rev": + return Svg.up_svg().SetStyle("transform: rotate(180deg)") + default: + return Svg.circle_svg() + } + })) + + + const countHeader = new Combine([sortCount.SetClass("w-4 mr-2"), countTitle]).SetClass("flex").onClick(() => { + if (sortMode.data === "count-rev") { + sortMode.setData("count") + } else { + sortMode.setData("count-rev") + } + }) + + const header = [ + titleHeader, + countHeader + ] + super(values.map(values => { if (values === undefined) { @@ -39,7 +84,21 @@ export default class Histogram extends VariableUiElement { } const keys = Array.from(counts.keys()); - keys.sort() + + switch (sortMode.data) { + case "name": + keys.sort() + break; + case "name-rev": + keys.sort().reverse() + break; + case "count": + keys.sort((k0, k1) => counts.get(k0) - counts.get(k1)) + break; + case "count-rev": + keys.sort((k0, k1) => counts.get(k1) - counts.get(k0)) + break; + } const max = Math.max(...Array.from(counts.values())) @@ -57,7 +116,7 @@ export default class Histogram extends VariableUiElement { } return new Table( - [Translations.W(title), countTitle], + header, keys.map(key => [ key, new Combine([ @@ -69,6 +128,6 @@ export default class Histogram extends VariableUiElement { ]), keys.map(_ => ["width: 20%"]) ).SetClass("w-full"); - })); + }, [sortMode])); } } \ No newline at end of file diff --git a/UI/BigComponents/LicensePicker.ts b/UI/BigComponents/LicensePicker.ts index 7e92e48455..7afe4d827f 100644 --- a/UI/BigComponents/LicensePicker.ts +++ b/UI/BigComponents/LicensePicker.ts @@ -1,20 +1,35 @@ import {DropDown} from "../Input/DropDown"; import Translations from "../i18n/Translations"; -import State from "../../State"; import {UIEventSource} from "../../Logic/UIEventSource"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import {Translation} from "../i18n/Translation"; export default class LicensePicker extends DropDown { - constructor() { + private static readonly cc0 = "CC0" + private static readonly ccbysa = "CC-BY-SA 4.0" + private static readonly ccby = "CC-BY 4.0" + + constructor(state: {osmConnection: OsmConnection}) { super(Translations.t.image.willBePublished.Clone(), [ - {value: "CC0", shown: Translations.t.image.cco.Clone()}, - {value: "CC-BY-SA 4.0", shown: Translations.t.image.ccbs.Clone()}, - {value: "CC-BY 4.0", shown: Translations.t.image.ccb.Clone()} + {value:LicensePicker. cc0, shown: Translations.t.image.cco.Clone()}, + {value:LicensePicker. ccbysa, shown: Translations.t.image.ccbs.Clone()}, + {value: LicensePicker. ccby, shown: Translations.t.image.ccb.Clone()} ], - State.state?.osmConnection?.GetPreference("pictures-license") ?? new UIEventSource("CC0") + state?.osmConnection?.GetPreference("pictures-license") ?? new UIEventSource("CC0") ) this.SetClass("flex flex-col sm:flex-row").SetStyle("float:left"); } + public static LicenseExplanations() : Map{ + let dict = new Map(); + + dict.set(LicensePicker. cc0, Translations.t.image.ccoExplanation) + dict.set(LicensePicker. ccby, Translations.t.image.ccbExplanation) + dict.set(LicensePicker. ccbysa, Translations.t.image.ccbsExplanation) + + return dict + } + } \ No newline at end of file diff --git a/UI/BigComponents/MoreScreen.ts b/UI/BigComponents/MoreScreen.ts index 6e5cbd9889..7118243009 100644 --- a/UI/BigComponents/MoreScreen.ts +++ b/UI/BigComponents/MoreScreen.ts @@ -1,5 +1,4 @@ import {VariableUiElement} from "../Base/VariableUIElement"; -import {AllKnownLayouts} from "../../Customizations/AllKnownLayouts"; import Svg from "../../Svg"; import Combine from "../Base/Combine"; import {SubtleButton} from "../Base/SubtleButton"; @@ -15,6 +14,8 @@ import UserRelatedState from "../../Logic/State/UserRelatedState"; import Toggle from "../Input/Toggle"; import {Utils} from "../../Utils"; import Title from "../Base/Title"; +import * as themeOverview from "../../assets/generated/theme_overview.json" +import {Translation} from "../i18n/Translation"; export default class MoreScreen extends Combine { @@ -47,7 +48,12 @@ export default class MoreScreen extends Combine { state: { locationControl?: UIEventSource, layoutToUse?: LayoutConfig - }, layout: LayoutConfig, customThemeDefinition: string = undefined + }, layout: { + id: string, + icon: string, + title: any, + shortDescription: any + }, isCustom: boolean = false ): BaseUIElement { if (layout === undefined) { @@ -73,14 +79,12 @@ export default class MoreScreen extends Combine { } let linkPrefix = `${path}/${layout.id.toLowerCase()}.html?` - let linkSuffix = "" if (location.hostname === "localhost" || location.hostname === "127.0.0.1") { - linkPrefix = `${path}/index.html?layout=${layout.id}&` + linkPrefix = `${path}/theme.html?layout=${layout.id}&` } - if (customThemeDefinition) { - linkPrefix = `${path}/index.html?userlayout=${layout.id}&` - linkSuffix = `#${customThemeDefinition}` + if (isCustom) { + linkPrefix = `${path}/theme.html?userlayout=${layout.id}&` } const linkText = currentLocation?.map(currentLocation => { @@ -91,27 +95,36 @@ export default class MoreScreen extends Combine { ].filter(part => part[1] !== undefined) .map(part => part[0] + "=" + part[1]) .join("&") - return `${linkPrefix}${params}${linkSuffix}`; - }) ?? new UIEventSource(`${linkPrefix}${linkSuffix}`) + return `${linkPrefix}${params}`; + }) ?? new UIEventSource(`${linkPrefix}`) return new SubtleButton(layout.icon, new Combine([ `
`, - Translations.WT(layout.title), + new Translation(layout.title), `
`, `
`, - Translations.WT(layout.shortDescription)?.SetClass("subtle") ?? "", + new Translation(layout.shortDescription)?.SetClass("subtle") ?? "", `
`, ]), {url: linkText, newTab: false}); } + private static CreateProffessionalSerivesButton() { + const t = Translations.t.professional.indexPage; + return new Combine([ + new Title(t.hook, 4), + t.hookMore, + new SubtleButton(undefined, t.button, {url: "./professional.html"}), + ]).SetClass("flex flex-col border border-gray-300 p-2 rounded-lg") + } + private static createUnofficialThemeList(buttonClass: string, state: UserRelatedState, themeListClasses): BaseUIElement { return new VariableUiElement(state.installedThemes.map(customThemes => { if (customThemes.length <= 0) { return undefined; } - const customThemeButtons = customThemes.map(theme => MoreScreen.createLinkButton(state, theme.layout, theme.definition)?.SetClass(buttonClass)) + const customThemeButtons = customThemes.map(theme => MoreScreen.createLinkButton(state, theme, true)?.SetClass(buttonClass)) return new Combine([ Translations.t.general.customThemeIntro.Clone(), new Combine(customThemeButtons).SetClass(themeListClasses) @@ -122,27 +135,29 @@ export default class MoreScreen extends Combine { private static createPreviouslyVistedHiddenList(state: UserRelatedState, buttonClass: string, themeListStyle: string) { const t = Translations.t.general.morescreen const prefix = "mapcomplete-hidden-theme-" - const hiddenTotal = AllKnownLayouts.layoutsList.filter(layout => layout.hideFromOverview).length + const hiddenThemes = themeOverview["default"].filter(layout => layout.hideFromOverview) + const hiddenTotal = hiddenThemes.length + return new Toggle( new VariableUiElement( state.osmConnection.preferencesHandler.preferences.map(allPreferences => { - const knownThemes = Utils.NoNull(Object.keys(allPreferences) + const knownThemes: Set = new Set(Utils.NoNull(Object.keys(allPreferences) .filter(key => key.startsWith(prefix)) - .map(key => key.substring(prefix.length, key.length - "-enabled".length)) - .map(theme => AllKnownLayouts.allKnownLayouts.get(theme))) - .filter(theme => theme?.hideFromOverview) - if (knownThemes.length === 0) { + .map(key => key.substring(prefix.length, key.length - "-enabled".length)))); + + if (knownThemes.size === 0) { return undefined } - const knownLayouts = new Combine(knownThemes.map(layout => - MoreScreen.createLinkButton(state, layout)?.SetClass(buttonClass) - )).SetClass(themeListStyle) + const knownThemeDescriptions = hiddenThemes.filter(theme => knownThemes.has(theme.id)) + .map(theme => MoreScreen.createLinkButton(state, theme)?.SetClass(buttonClass)); + + const knownLayouts = new Combine(knownThemeDescriptions).SetClass(themeListStyle) return new Combine([ new Title(t.previouslyHiddenTitle), t.hiddenExplanation.Subs({ - hidden_discovered: "" + knownThemes.length, + hidden_discovered: "" + knownThemes.size, total_hidden: "" + hiddenTotal }), knownLayouts @@ -158,7 +173,7 @@ export default class MoreScreen extends Combine { } private static createOfficialThemesList(state: { osmConnection: OsmConnection, locationControl?: UIEventSource }, buttonClass: string): BaseUIElement { - let officialThemes = AllKnownLayouts.layoutsList + let officialThemes = themeOverview["default"]; let buttons = officialThemes.map((layout) => { if (layout === undefined) { @@ -183,9 +198,10 @@ export default class MoreScreen extends Combine { } return button; }) - - let customGeneratorLink = MoreScreen.createCustomGeneratorButton(state) - buttons.splice(0, 0, customGeneratorLink); + + const professional = MoreScreen.CreateProffessionalSerivesButton(); + const customGeneratorLink = MoreScreen.createCustomGeneratorButton(state) + buttons.splice(0, 0, customGeneratorLink, professional); return new Combine(buttons) } diff --git a/UI/BigComponents/RightControls.ts b/UI/BigComponents/RightControls.ts index 470774786a..6e3e333fa4 100644 --- a/UI/BigComponents/RightControls.ts +++ b/UI/BigComponents/RightControls.ts @@ -4,8 +4,6 @@ import MapControlButton from "../MapControlButton"; import GeoLocationHandler from "../../Logic/Actors/GeoLocationHandler"; import Svg from "../../Svg"; import MapState from "../../Logic/State/MapState"; -import ShowDataLayer from "../ShowDataLayer/ShowDataLayer"; -import AllKnownLayers from "../../Customizations/AllKnownLayers"; export default class RightControls extends Combine { diff --git a/UI/BigComponents/SimpleAddUI.ts b/UI/BigComponents/SimpleAddUI.ts index 719647df47..56c7e9b6ea 100644 --- a/UI/BigComponents/SimpleAddUI.ts +++ b/UI/BigComponents/SimpleAddUI.ts @@ -111,7 +111,10 @@ export default class SimpleAddUI extends Toggle { message, state.LastClickLocation.data, confirm, - cancel) + cancel, + () => { + isShown.setData(false) + }) } )) @@ -135,9 +138,6 @@ export default class SimpleAddUI extends Toggle { loginButton, state.osmConnection.isLoggedIn ) - - - this.SetStyle("font-size:large"); } diff --git a/UI/BigComponents/ThemeIntroductionPanel.ts b/UI/BigComponents/ThemeIntroductionPanel.ts index ae37813252..1a5d24a45c 100644 --- a/UI/BigComponents/ThemeIntroductionPanel.ts +++ b/UI/BigComponents/ThemeIntroductionPanel.ts @@ -4,46 +4,33 @@ import LanguagePicker from "../LanguagePicker"; import Translations from "../i18n/Translations"; import Toggle from "../Input/Toggle"; import {SubtleButton} from "../Base/SubtleButton"; -import Svg from "../../Svg"; import {UIEventSource} from "../../Logic/UIEventSource"; +import {LoginToggle} from "../Popup/LoginButton"; export default class ThemeIntroductionPanel extends Combine { constructor(isShown: UIEventSource) { + const t = Translations.t.general const layout = State.state.layoutToUse - const languagePicker = LanguagePicker.CreateLanguagePicker(layout.language, Translations.t.general.pickLanguage.Clone()) + const languagePicker = LanguagePicker.CreateLanguagePicker(layout.language, t.pickLanguage.Clone()) const toTheMap = new SubtleButton( undefined, - Translations.t.general.openTheMap.Clone().SetClass("text-xl font-bold w-full text-center") + t.openTheMap.Clone().SetClass("text-xl font-bold w-full text-center") ).onClick(() => { isShown.setData(false) }).SetClass("only-on-mobile") - const plzLogIn = - new SubtleButton( - Svg.osm_logo_ui(), - - new Combine([Translations.t.general.loginWithOpenStreetMap - .Clone().SetClass("text-xl font-bold"), - Translations.t.general.loginOnlyNeededToEdit.Clone().SetClass("font-bold")] - ).SetClass("flex flex-col text-center w-full") - ) - .onClick(() => { - State.state.osmConnection.AttemptLogin() - }); - - - const welcomeBack = Translations.t.general.welcomeBack.Clone(); - const loginStatus = new Toggle( - new Toggle( - welcomeBack, - plzLogIn, - State.state.osmConnection.isLoggedIn + new LoginToggle( + t.welcomeBack, + new Combine([Translations.t.general.loginWithOpenStreetMap.SetClass("text-xl font-bold"), + Translations.t.general.loginOnlyNeededToEdit.Clone().SetClass("font-bold")] + ).SetClass("flex flex-col"), + State.state ), undefined, State.state.featureSwitchUserbadge diff --git a/UI/BigComponents/UserBadge.ts b/UI/BigComponents/UserBadge.ts index e85cf6a303..19a1e86c5e 100644 --- a/UI/BigComponents/UserBadge.ts +++ b/UI/BigComponents/UserBadge.ts @@ -43,7 +43,7 @@ export default class UserBadge extends Toggle { if (home === undefined) { return; } - state.leafletMap.data.setView([home.lat, home.lon], 16); + state.leafletMap.data?.setView([home.lat, home.lon], 16); }); const linkStyle = "flex items-baseline" @@ -79,7 +79,7 @@ export default class UserBadge extends Toggle { } const settings = - new Link(Svg.gear_svg(), + new Link(Svg.gear, `${user.backend}/user/${encodeURIComponent(user.name)}/account`, true) diff --git a/UI/DefaultGUI.ts b/UI/DefaultGUI.ts index ebce8f1a88..d31c701613 100644 --- a/UI/DefaultGUI.ts +++ b/UI/DefaultGUI.ts @@ -15,13 +15,18 @@ import LeftControls from "./BigComponents/LeftControls"; import RightControls from "./BigComponents/RightControls"; import CenterMessageBox from "./CenterMessageBox"; import ShowDataLayer from "./ShowDataLayer/ShowDataLayer"; -import AllKnownLayers from "../Customizations/AllKnownLayers"; import ScrollableFullScreen from "./Base/ScrollableFullScreen"; import Translations from "./i18n/Translations"; import SimpleAddUI from "./BigComponents/SimpleAddUI"; import StrayClickHandler from "../Logic/Actors/StrayClickHandler"; import Lazy from "./Base/Lazy"; import {DefaultGuiState} from "./DefaultGuiState"; +import LayerConfig from "../Models/ThemeConfig/LayerConfig"; +import * as home_location_json from "../assets/layers/home_location/home_location.json"; +import NewNoteUi from "./Popup/NewNoteUi"; +import Combine from "./Base/Combine"; +import AddNewMarker from "./BigComponents/AddNewMarker"; +import FilteredLayer from "../Models/FilteredLayer"; /** @@ -44,54 +49,80 @@ export default class DefaultGUI { this.SetupUIElements(); this.SetupMap() - - - if(state.layoutToUse.customCss !== undefined && window.location.pathname.indexOf("index") >= 0){ + + + if (state.layoutToUse.customCss !== undefined && window.location.pathname.indexOf("index") >= 0) { Utils.LoadCustomCss(state.layoutToUse.customCss) } } public setupClickDialogOnMap(filterViewIsOpened: UIEventSource, state: FeaturePipelineState) { - function setup() { - let presetCount = 0; - for (const layer of state.layoutToUse.layers) { - for (const preset of layer.presets) { - presetCount++; - } - } - if (presetCount == 0) { - return; - } + const hasPresets = state.layoutToUse.layers.some(layer => layer.presets.length > 0); + const noteLayer: FilteredLayer = state.filteredLayers.data.filter(l => l.layerDef.id === "note")[0] + let addNewNoteDialog: (isShown: UIEventSource) => BaseUIElement = undefined; + const t = Translations.t.notes + if (noteLayer !== undefined) { + addNewNoteDialog = (isShown) => new NewNoteUi(noteLayer, isShown, state) + } + function setup() { + if (!hasPresets && addNewNoteDialog === undefined) { + return; // nothing to do + } const newPointDialogIsShown = new UIEventSource(false); const addNewPoint = new ScrollableFullScreen( - () => Translations.t.general.add.title.Clone(), - () => new SimpleAddUI(newPointDialogIsShown, filterViewIsOpened, state), + () => hasPresets ? Translations.t.general.add.title : Translations.t.notes.createNoteTitle, + () => { + let addNew = undefined; + if (hasPresets) { + addNew = new SimpleAddUI(newPointDialogIsShown, filterViewIsOpened, state); + } + let addNote = undefined; + if (noteLayer !== undefined) { + addNote = addNewNoteDialog(newPointDialogIsShown) + } + return new Combine([addNew, addNote]).SetClass("flex flex-col font-lg text-lg") + }, "new", newPointDialogIsShown ); + addNewPoint.isShown.addCallback((isShown) => { if (!isShown) { + // Clear the 'last-click'-location when the dialog is closed - this causes the popup and the marker to be removed state.LastClickLocation.setData(undefined); } }); + + let noteMarker = undefined; + if(!hasPresets && addNewNoteDialog !== undefined){ + noteMarker = new Combine( + [Svg.note_svg().SetClass("absolute bottom-0").SetStyle("height: 40px"), + Svg.addSmall_svg().SetClass("absolute w-6 animate-pulse") + .SetStyle("right: 10px; bottom: -8px;") + ]) + .SetClass("block relative h-full") + .SetStyle("left: calc( 50% - 15px )") // This is a bit hacky, yes I know! + } new StrayClickHandler( - state.LastClickLocation, - state.selectedElement, - state.filteredLayers, - state.leafletMap, - addNewPoint + state, + addNewPoint, + hasPresets ? new AddNewMarker(state.filteredLayers) : noteMarker ); } - state.featureSwitchAddNew.addCallbackAndRunD(addNewAllowed => { - if (addNewAllowed) { - setup() - return true; - } - }) + if (noteLayer !== undefined) { + setup() + } else { + state.featureSwitchAddNew.addCallbackAndRunD(addNewAllowed => { + if (addNewAllowed) { + setup() + return true; + } + }) + } } @@ -111,7 +142,7 @@ export default class DefaultGUI { new ShowDataLayer({ leafletMap: state.leafletMap, - layerToShow: AllKnownLayers.sharedLayers.get("home_location"), + layerToShow: new LayerConfig(home_location_json, "all_known_layers", true), features: state.homeLocation, enablePopups: false, }) diff --git a/UI/DefaultGuiState.ts b/UI/DefaultGuiState.ts index ab834bc269..34b8cc6685 100644 --- a/UI/DefaultGuiState.ts +++ b/UI/DefaultGuiState.ts @@ -1,6 +1,5 @@ import {UIEventSource} from "../Logic/UIEventSource"; import {QueryParameters} from "../Logic/Web/QueryParameters"; -import Constants from "../Models/Constants"; import Hash from "../Logic/Web/Hash"; export class DefaultGuiState { @@ -46,18 +45,19 @@ export class DefaultGuiState { "false", "Whether or not the current view box is shown" ) - if (Hash.hash.data === "download") { - this.downloadControlIsOpened.setData(true) + const states = { + download: this.downloadControlIsOpened, + filters: this.filterViewIsOpened, + copyright: this.copyrightViewIsOpened, + currentview: this.currentViewControlIsOpened, + welcome: this.welcomeMessageIsOpened } - if (Hash.hash.data === "filters") { - this.filterViewIsOpened.setData(true) - } - if (Hash.hash.data === "copyright") { - this.copyrightViewIsOpened.setData(true) - }if (Hash.hash.data === "currentview") { - this.currentViewControlIsOpened.setData(true) - } - if (Hash.hash.data === "" || Hash.hash.data === undefined || Hash.hash.data === "welcome") { + Hash.hash.addCallbackAndRunD(hash => { + hash = hash.toLowerCase() + states[hash]?.setData(true) + }) + + if (Hash.hash.data === "" || Hash.hash.data === undefined) { this.welcomeMessageIsOpened.setData(true) } diff --git a/UI/Image/DeleteImage.ts b/UI/Image/DeleteImage.ts index baa75d2627..23178dcc3b 100644 --- a/UI/Image/DeleteImage.ts +++ b/UI/Image/DeleteImage.ts @@ -2,22 +2,24 @@ import {UIEventSource} from "../../Logic/UIEventSource"; import Translations from "../i18n/Translations"; import Toggle from "../Input/Toggle"; import Combine from "../Base/Combine"; -import State from "../../State"; import Svg from "../../Svg"; import {Tag} from "../../Logic/Tags/Tag"; import ChangeTagAction from "../../Logic/Osm/Actions/ChangeTagAction"; +import {Changes} from "../../Logic/Osm/Changes"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; export default class DeleteImage extends Toggle { - constructor(key: string, tags: UIEventSource) { + constructor(key: string, tags: UIEventSource, state: {layoutToUse: LayoutConfig, changes?: Changes, osmConnection?: OsmConnection}) { const oldValue = tags.data[key] const isDeletedBadge = Translations.t.image.isDeleted.Clone() .SetClass("rounded-full p-1") .SetStyle("color:white;background:#ff8c8c") .onClick(async () => { - await State.state?.changes?.applyAction(new ChangeTagAction(tags.data.id, new Tag(key, oldValue), tags.data, { - changeType: "answer", - theme: "test" + await state?.changes?.applyAction(new ChangeTagAction(tags.data.id, new Tag(key, oldValue), tags.data, { + changeType: "delete-image", + theme: state.layoutToUse.id })) }); @@ -25,7 +27,7 @@ export default class DeleteImage extends Toggle { .SetClass("block w-full pl-4 pr-4") .SetStyle("color:white;background:#ff8c8c; border-top-left-radius:30rem; border-top-right-radius: 30rem;") .onClick(async () => { - await State.state?.changes?.applyAction( + await state?.changes?.applyAction( new ChangeTagAction(tags.data.id, new Tag(key, ""), tags.data, { changeType: "answer", theme: "test" @@ -53,7 +55,7 @@ export default class DeleteImage extends Toggle { tags.map(tags => (tags[key] ?? "") !== "") ), undefined /*Login (and thus editing) is disabled*/, - State.state.osmConnection.isLoggedIn + state.osmConnection.isLoggedIn ) this.SetClass("cursor-pointer") } diff --git a/UI/Image/ImageCarousel.ts b/UI/Image/ImageCarousel.ts index c0fc52eda0..ffa880bf07 100644 --- a/UI/Image/ImageCarousel.ts +++ b/UI/Image/ImageCarousel.ts @@ -6,12 +6,15 @@ import {AttributedImage} from "./AttributedImage"; import BaseUIElement from "../BaseUIElement"; import Toggle from "../Input/Toggle"; import ImageProvider from "../../Logic/ImageProviders/ImageProvider"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import {Changes} from "../../Logic/Osm/Changes"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; export class ImageCarousel extends Toggle { - constructor(images: UIEventSource<{ key: string, url: string, provider: ImageProvider }[]>, + constructor(images: UIEventSource<{ key: string, url: string, provider: ImageProvider}[]>, tags: UIEventSource, - keys: string[]) { + state: {osmConnection?: OsmConnection, changes?: Changes, layoutToUse: LayoutConfig }) { const uiElements = images.map((imageURLS: { key: string, url: string, provider: ImageProvider }[]) => { const uiElements: BaseUIElement[] = []; for (const url of imageURLS) { @@ -21,7 +24,7 @@ export class ImageCarousel extends Toggle { if (url.key !== undefined) { image = new Combine([ image, - new DeleteImage(url.key, tags).SetClass("delete-image-marker absolute top-0 left-0 pl-3") + new DeleteImage(url.key, tags, state).SetClass("delete-image-marker absolute top-0 left-0 pl-3") ]).SetClass("relative"); } image diff --git a/UI/Image/ImageUploadFlow.ts b/UI/Image/ImageUploadFlow.ts index 5a49d8d723..25bfe9c7a2 100644 --- a/UI/Image/ImageUploadFlow.ts +++ b/UI/Image/ImageUploadFlow.ts @@ -1,5 +1,4 @@ import {UIEventSource} from "../../Logic/UIEventSource"; -import State from "../../State"; import Combine from "../Base/Combine"; import Translations from "../i18n/Translations"; import Svg from "../../Svg"; @@ -13,13 +12,23 @@ import ChangeTagAction from "../../Logic/Osm/Actions/ChangeTagAction"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; import {FixedUiElement} from "../Base/FixedUiElement"; import {VariableUiElement} from "../Base/VariableUIElement"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import {Changes} from "../../Logic/Osm/Changes"; export class ImageUploadFlow extends Toggle { private static readonly uploadCountsPerId = new Map>() - constructor(tagsSource: UIEventSource, imagePrefix: string = "image", text: string = undefined) { + constructor(tagsSource: UIEventSource, + state: { + osmConnection: OsmConnection; + layoutToUse: LayoutConfig; + changes: Changes, + featureSwitchUserbadge: UIEventSource; + }, + imagePrefix: string = "image", text: string = undefined) { const perId = ImageUploadFlow.uploadCountsPerId const id = tagsSource.data.id if (!perId.has(id)) { @@ -41,17 +50,19 @@ export class ImageUploadFlow extends Toggle { console.log("Adding image:" + key, url); uploadedCount.data++ uploadedCount.ping() - Promise.resolve(State.state.changes + Promise.resolve(state.changes .applyAction(new ChangeTagAction( tags.id, new Tag(key, url), tagsSource.data, { changeType: "add-image", - theme: State.state.layoutToUse.id + theme: state.layoutToUse.id } ))) }) - const licensePicker = new LicensePicker() + const licensePicker = new LicensePicker(state) + const explanations = LicensePicker.LicenseExplanations() + const chosenLicense = new VariableUiElement(licensePicker.GetValue().map(license => explanations.get(license))) const t = Translations.t.image; @@ -90,7 +101,7 @@ export class ImageUploadFlow extends Toggle { const tags = tagsSource.data; - const layout = State.state?.layoutToUse + const layout = state?.layoutToUse let matchingLayer: LayerConfig = undefined for (const layer of layout?.layers ?? []) { if (layer.source.osmTags.matchesProperties(tags)) { @@ -102,7 +113,7 @@ export class ImageUploadFlow extends Toggle { const title = matchingLayer?.title?.GetRenderValue(tags)?.ConstructElement()?.innerText ?? tags.name ?? "Unknown area"; const description = [ - "author:" + State.state.osmConnection.userDetails.data.name, + "author:" + state.osmConnection.userDetails.data.name, "license:" + license, "osmid:" + tags.id, ].join("\n"); @@ -141,22 +152,23 @@ export class ImageUploadFlow extends Toggle { fileSelector, Translations.t.image.respectPrivacy.Clone().SetStyle("font-size:small;"), - licensePicker + licensePicker, + chosenLicense.SetClass("subtle text-sm") ]).SetClass("flex flex-col image-upload-flow mt-4 mb-8 text-center") const pleaseLoginButton = t.pleaseLogin.Clone() - .onClick(() => State.state.osmConnection.AttemptLogin()) + .onClick(() => state.osmConnection.AttemptLogin()) .SetClass("login-button-friendly"); super( new Toggle( /*We can show the actual upload button!*/ uploadFlow, /* User not logged in*/ pleaseLoginButton, - State.state?.osmConnection?.isLoggedIn + state?.osmConnection?.isLoggedIn ), undefined /* Nothing as the user badge is disabled*/, - State.state.featureSwitchUserbadge + state.featureSwitchUserbadge ) } diff --git a/UI/Input/InputElementWrapper.ts b/UI/Input/InputElementWrapper.ts index 765a0d3b4b..5a6633ade3 100644 --- a/UI/Input/InputElementWrapper.ts +++ b/UI/Input/InputElementWrapper.ts @@ -3,13 +3,14 @@ import {UIEventSource} from "../../Logic/UIEventSource"; import BaseUIElement from "../BaseUIElement"; import {Translation} from "../i18n/Translation"; import {SubstitutedTranslation} from "../SubstitutedTranslation"; +import FeaturePipelineState from "../../Logic/State/FeaturePipelineState"; export default class InputElementWrapper extends InputElement { public readonly IsSelected: UIEventSource; private readonly _inputElement: InputElement; private readonly _renderElement: BaseUIElement - constructor(inputElement: InputElement, translation: Translation, key: string, tags: UIEventSource) { + constructor(inputElement: InputElement, translation: Translation, key: string, tags: UIEventSource, state: FeaturePipelineState) { super() this._inputElement = inputElement; this.IsSelected = inputElement.IsSelected @@ -17,7 +18,12 @@ export default class InputElementWrapper extends InputElement { mapping.set(key, inputElement) - this._renderElement = new SubstitutedTranslation(translation, tags, mapping) + // Bit of a hack: the SubstitutedTranslation expects a special rendering, but those are formatted '{key()}' instead of '{key}', so we substitute it first + const newTranslations ={} + for (const lang in translation.translations) { + newTranslations[lang] = translation.translations[lang].replace("{"+key+"}", "{"+key+"()}") + } + this._renderElement = new SubstitutedTranslation(new Translation(newTranslations), tags, state, mapping) } GetValue(): UIEventSource { diff --git a/UI/Input/LocationInput.ts b/UI/Input/LocationInput.ts index 107b396394..133244d89f 100644 --- a/UI/Input/LocationInput.ts +++ b/UI/Input/LocationInput.ts @@ -16,6 +16,7 @@ import ShowDataLayer from "../ShowDataLayer/ShowDataLayer"; import BaseUIElement from "../BaseUIElement"; import Toggle from "./Toggle"; import * as matchpoint from "../../assets/layers/matchpoint/matchpoint.json" + export default class LocationInput extends InputElement implements MinimapObj { private static readonly matchLayer = new LayerConfig(matchpoint, "LocationInput.matchpoint", true) diff --git a/UI/Input/SimpleDatePicker.ts b/UI/Input/SimpleDatePicker.ts index 133d03d2ee..a131e456ea 100644 --- a/UI/Input/SimpleDatePicker.ts +++ b/UI/Input/SimpleDatePicker.ts @@ -35,7 +35,7 @@ export default class SimpleDatePicker extends InputElement { } IsValid(t: string): boolean { - return false; + return !isNaN(new Date(t).getTime()); } protected InnerConstructElement(): HTMLElement { diff --git a/UI/Input/ValidatedTextField.ts b/UI/Input/ValidatedTextField.ts index 8002186069..c1101efb4b 100644 --- a/UI/Input/ValidatedTextField.ts +++ b/UI/Input/ValidatedTextField.ts @@ -22,12 +22,18 @@ import AvailableBaseLayers from "../../Logic/Actors/AvailableBaseLayers"; import Table from "../Base/Table"; import Combine from "../Base/Combine"; import Title from "../Base/Title"; +import InputElementMap from "./InputElementMap"; interface TextFieldDef { name: string, explanation: string, isValid: ((s: string, country?: () => string) => boolean), reformat?: ((s: string, country?: () => string) => string), + /** + * Modification to make before the string is uploaded to OSM + */ + postprocess?: (s: string) => string; + undoPostprocess?: (s: string) => string; inputHelper?: (value: UIEventSource, options?: { location: [number, number], mapBackgroundLayer?: UIEventSource, @@ -187,10 +193,89 @@ class OpeningHoursTextField implements TextFieldDef { return new OpeningHoursInput(value, prefix, postfix) } } + +class UrlTextfieldDef implements TextFieldDef { + + name = "url" + explanation = "The validatedTextField will format URLs to always be valid and have a https://-header (even though the 'https'-part will be hidden from the user" + inputmode: "url" + + postprocess(str: string) { + if (str === undefined) { + return undefined + } + if (!str.startsWith("http://") || !str.startsWith("https://")) { + return "https://" + str + } + return str; + } + + undoPostprocess(str: string) { + if (str === undefined) { + return undefined + } + if (str.startsWith("http://")) { + return str.substr("http://".length) + } + if (str.startsWith("https://")) { + return str.substr("https://".length) + } + return str; + } + + reformat(str: string): string { + try { + let url: URL + str = str.toLowerCase() + if (!str.startsWith("http://") && !str.startsWith("https://") && !str.startsWith("http:")) { + url = new URL("https://" + str) + } else { + url = new URL(str); + } + const blacklistedTrackingParams = [ + "fbclid",// Oh god, how I hate the fbclid. Let it burn, burn in hell! + "gclid", + "cmpid", "agid", "utm", "utm_source", "utm_medium", + "campaignid","campaign","AdGroupId","AdGroup","TargetId","msclkid"] + for (const dontLike of blacklistedTrackingParams) { + url.searchParams.delete(dontLike.toLowerCase() ) + } + let cleaned = url.toString(); + if (cleaned.endsWith("/") && !str.endsWith("/")) { + // Do not add a trailing '/' if it wasn't typed originally + cleaned = cleaned.substr(0, cleaned.length - 1) + } + + if (cleaned.startsWith("https://")) { + cleaned = cleaned.substr("https://".length) + } + + return cleaned; + } catch (e) { + console.error(e) + return undefined; + } + } + + isValid(str: string): boolean { + try { + if (!str.startsWith("http://") && !str.startsWith("https://") && + !str.startsWith("http:")) { + str = "https://" + str + } + const url = new URL(str); + const dotIndex = url.host.indexOf(".") + return dotIndex > 0 && url.host[url.host.length - 1 ] !== "."; + } catch (e) { + return false; + } + } +} + export default class ValidatedTextField { public static tpList: TextFieldDef[] = [ - + ValidatedTextField.tp( "string", "A basic string"), @@ -206,8 +291,7 @@ export default class ValidatedTextField { "date", "A date", (str) => { - const time = Date.parse(str); - return !isNaN(time); + return !isNaN(new Date(str).getTime()); }, (str) => { const d = new Date(str); @@ -351,54 +435,23 @@ export default class ValidatedTextField { "email", "An email adress", (str) => { - if(str.startsWith("mailto:")){ + if (str.startsWith("mailto:")) { str = str.substring("mailto:".length) } return EmailValidator.validate(str); }, str => { - if(str === undefined){return undefined} - if(str.startsWith("mailto:")){ + if (str === undefined) { + return undefined + } + if (str.startsWith("mailto:")) { str = str.substring("mailto:".length) } return str; }, undefined, "email"), - ValidatedTextField.tp( - "url", - "A url", - (str) => { - try { - new URL(str); - return true; - } catch (e) { - return false; - } - }, - (str) => { - try { - const url = new URL(str); - const blacklistedTrackingParams = [ - "fbclid",// Oh god, how I hate the fbclid. Let it burn, burn in hell! - "gclid", - "cmpid", "agid", "utm", "utm_source", "utm_medium"] - for (const dontLike of blacklistedTrackingParams) { - url.searchParams.delete(dontLike) - } - let cleaned = url.toString(); - if (cleaned.endsWith("/") && !str.endsWith("/")) { - // Do not add a trailing '/' if it wasn't typed originally - cleaned = cleaned.substr(0, cleaned.length - 1) - } - return cleaned; - } catch (e) { - console.error(e) - return undefined; - } - }, - undefined, - "url"), + new UrlTextfieldDef(), ValidatedTextField.tp( "phone", "A phone number", @@ -406,13 +459,13 @@ export default class ValidatedTextField { if (str === undefined) { return false; } - if(str.startsWith("tel:")){ + if (str.startsWith("tel:")) { str = str.substring("tel:".length) } return parsePhoneNumberFromString(str, (country())?.toUpperCase() as any)?.isValid() ?? false }, (str, country: () => string) => { - if(str.startsWith("tel:")){ + if (str.startsWith("tel:")) { str = str.substring("tel:".length) } return parsePhoneNumberFromString(str, (country())?.toUpperCase() as any).formatInternational(); @@ -436,7 +489,7 @@ export default class ValidatedTextField { /** * {string (typename) --> TextFieldDef} */ - public static AllTypes = ValidatedTextField.allTypesDict(); + public static AllTypes: Map = ValidatedTextField.allTypesDict(); public static InputForType(type: string, options?: { placeholder?: string | BaseUIElement, @@ -455,7 +508,7 @@ export default class ValidatedTextField { }): InputElement { options = options ?? {}; options.placeholder = options.placeholder ?? type; - const tp: TextFieldDef = ValidatedTextField.AllTypes[type] + const tp: TextFieldDef = ValidatedTextField.AllTypes.get(type) const isValidTp = tp.isValid; let isValid; options.textArea = options.textArea ?? type === "text"; @@ -492,7 +545,7 @@ export default class ValidatedTextField { options.inputMode = tp.inputmode; - if(tp.inputmode === "text") { + if (tp.inputmode === "text") { options.htmlType = "area" } @@ -569,13 +622,21 @@ export default class ValidatedTextField { a => [a, a] ).SetClass("block w-full"); } + if (tp.postprocess !== undefined) { + input = new InputElementMap(input, + (a, b) => a === b, + tp.postprocess, + tp.undoPostprocess + ) + } + return input; } public static HelpText(): BaseUIElement { - const explanations : BaseUIElement[]= + const explanations: BaseUIElement[] = ValidatedTextField.tpList.map(type => - new Combine([new Title(type.name,3), type.explanation]).SetClass("flex flex-col")) + new Combine([new Title(type.name, 3), type.explanation]).SetClass("flex flex-col")) return new Combine([ new Title("Available types for text fields", 1), "The listed types here trigger a special input element. Use them in `tagrendering.freeform.type` of your tagrendering to activate them", @@ -615,10 +676,11 @@ export default class ValidatedTextField { } - private static allTypesDict() { - const types = {}; + private static allTypesDict(): Map { + const types = new Map(); for (const tp of ValidatedTextField.tpList) { types[tp.name] = tp; + types.set(tp.name, tp); } return types; } diff --git a/UI/NewPoint/ConfirmLocationOfPoint.ts b/UI/NewPoint/ConfirmLocationOfPoint.ts index 5e41ed7f4a..7bdbb79bd7 100644 --- a/UI/NewPoint/ConfirmLocationOfPoint.ts +++ b/UI/NewPoint/ConfirmLocationOfPoint.ts @@ -29,6 +29,7 @@ export default class ConfirmLocationOfPoint extends Combine { loc: { lon: number, lat: number }, confirm: (tags: any[], location: { lat: number, lon: number }, snapOntoWayId: string) => void, cancel: () => void, + closePopup: () => void ) { let preciseInput: LocationInput = undefined @@ -137,33 +138,26 @@ export default class ConfirmLocationOfPoint extends Combine { ] ).SetClass("flex flex-col") ).onClick(() => { - preset.layerToAddTo.appliedFilters.setData([]) + + const appliedFilters = preset.layerToAddTo.appliedFilters; + appliedFilters.data.forEach((_, k) => appliedFilters.data.set(k, undefined)) + appliedFilters.ping() cancel() + closePopup() }) + const hasActiveFilter = preset.layerToAddTo.appliedFilters + .map(appliedFilters => { + const activeFilters = Array.from(appliedFilters.values()).filter(f => f?.currentFilter !== undefined); + return activeFilters.length === 0; + }) + + // If at least one filter is active which _might_ hide a newly added item, this blocks the preset and requests the filter to be disabled const disableFiltersOrConfirm = new Toggle( openLayerOrConfirm, - disableFilter, - preset.layerToAddTo.appliedFilters.map(filters => { - if (filters === undefined || filters.length === 0) { - return true; - } - for (const filter of filters) { - if (filter.selected === 0 && filter.filter.options.length === 1) { - return false; - } - if (filter.selected !== undefined) { - const tags = filter.filter.options[filter.selected].osmTags - if (tags !== undefined && tags["and"]?.length !== 0) { - // This actually doesn't filter anything at all - return false; - } - } - } - return true - - }) - ) + disableFilter, + hasActiveFilter) + const tagInfo = SimpleAddUI.CreateTagInfoFor(preset, state.osmConnection); diff --git a/UI/OpeningHours/OpeningHours.ts b/UI/OpeningHours/OpeningHours.ts index e1eb5948cc..b30b522bd3 100644 --- a/UI/OpeningHours/OpeningHours.ts +++ b/UI/OpeningHours/OpeningHours.ts @@ -298,12 +298,16 @@ export class OH { } } - static Parse(rules: string) { + public static simplify(str: string): string{ + return OH.ToString(OH.MergeTimes(OH.Parse(str))) + } + + public static Parse(rules: string) : OpeningHour[] { if (rules === undefined || rules === "") { return [] } - const ohs = [] + const ohs : OpeningHour[] = [] const split = rules.split(";"); diff --git a/UI/OpeningHours/OpeningHoursVisualization.ts b/UI/OpeningHours/OpeningHoursVisualization.ts index 9a2a30800a..2414fc00f2 100644 --- a/UI/OpeningHours/OpeningHoursVisualization.ts +++ b/UI/OpeningHours/OpeningHoursVisualization.ts @@ -1,6 +1,5 @@ import {UIEventSource} from "../../Logic/UIEventSource"; import Combine from "../Base/Combine"; -import State from "../../State"; import {FixedUiElement} from "../Base/FixedUiElement"; import {OH} from "./OpeningHours"; import Translations from "../i18n/Translations"; @@ -11,6 +10,7 @@ import Toggle from "../Input/Toggle"; import {VariableUiElement} from "../Base/VariableUIElement"; import Table from "../Base/Table"; import {Translation} from "../i18n/Translation"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; export default class OpeningHoursVisualization extends Toggle { private static readonly weekdays: Translation[] = [ @@ -23,7 +23,7 @@ export default class OpeningHoursVisualization extends Toggle { Translations.t.general.weekdays.abbreviations.sunday, ] - constructor(tags: UIEventSource, key: string, prefix = "", postfix = "") { + constructor(tags: UIEventSource, state:{osmConnection?: OsmConnection}, key: string, prefix = "", postfix = "") { const tagsDirect = tags.data; const ohTable = new VariableUiElement(tags .map(tags => { @@ -57,7 +57,7 @@ export default class OpeningHoursVisualization extends Toggle { new Toggle( new FixedUiElement(e).SetClass("subtle"), undefined, - State.state?.osmConnection?.userDetails.map(userdetails => userdetails.csCount >= Constants.userJourney.tagsVisibleAndWikiLinked) + state?.osmConnection?.userDetails.map(userdetails => userdetails.csCount >= Constants.userJourney.tagsVisibleAndWikiLinked) ) ]); } diff --git a/UI/Popup/EditableTagRendering.ts b/UI/Popup/EditableTagRendering.ts index 48cd669efc..bd70be9b8a 100644 --- a/UI/Popup/EditableTagRendering.ts +++ b/UI/Popup/EditableTagRendering.ts @@ -23,8 +23,8 @@ export default class EditableTagRendering extends Toggle { ) { // The tagrendering is hidden if: - // The answer is unknown. The questionbox will then show the question - // There is a condition hiding the answer + // - The answer is unknown. The questionbox will then show the question + // - There is a condition hiding the answer const renderingIsShown = tags.map(tags => configuration.IsKnown(tags) && (configuration?.condition?.matchesProperties(tags) ?? true)) @@ -42,7 +42,7 @@ export default class EditableTagRendering extends Toggle { } private static CreateRendering(tags: UIEventSource, configuration: TagRenderingConfig, units: Unit[], editMode: UIEventSource): BaseUIElement { - const answer: BaseUIElement = new TagRenderingAnswer(tags, configuration) + const answer: BaseUIElement = new TagRenderingAnswer(tags, configuration, State.state) answer.SetClass("w-full") let rendering = answer; diff --git a/UI/Popup/FeatureInfoBox.ts b/UI/Popup/FeatureInfoBox.ts index 5d1d5baf17..0bcfd6197c 100644 --- a/UI/Popup/FeatureInfoBox.ts +++ b/UI/Popup/FeatureInfoBox.ts @@ -13,9 +13,7 @@ import DeleteWizard from "./DeleteWizard"; import SplitRoadWizard from "./SplitRoadWizard"; import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; -import {Translation} from "../i18n/Translation"; import {Utils} from "../../Utils"; -import {SubstitutedTranslation} from "../SubstitutedTranslation"; import MoveWizard from "./MoveWizard"; import Toggle from "../Input/Toggle"; @@ -40,11 +38,11 @@ export default class FeatureInfoBox extends ScrollableFullScreen { private static GenerateTitleBar(tags: UIEventSource, layerConfig: LayerConfig): BaseUIElement { - const title = new TagRenderingAnswer(tags, layerConfig.title ?? new TagRenderingConfig("POI")) + const title = new TagRenderingAnswer(tags, layerConfig.title ?? new TagRenderingConfig("POI"), State.state) .SetClass("break-words font-bold sm:p-0.5 md:p-1 sm:p-1.5 md:p-2"); const titleIcons = new Combine( - layerConfig.titleIcons.map(icon => new TagRenderingAnswer(tags, icon, - "block w-8 h-8 align-baseline box-content sm:p-0.5", "width: 2rem;") + layerConfig.titleIcons.map(icon => new TagRenderingAnswer(tags, icon, State.state, + "block w-8 h-8 max-h-8 align-baseline box-content sm:p-0.5 w-10",) )) .SetClass("flex flex-row flex-wrap pt-0.5 sm:pt-1 items-center mr-2") @@ -88,7 +86,8 @@ export default class FeatureInfoBox extends ScrollableFullScreen { if (tr.render !== undefined) { questionBox.SetClass("text-sm") - const renderedQuestion = new TagRenderingAnswer(tags, tr, tr.group + " questions", "", { + const renderedQuestion = new TagRenderingAnswer(tags, tr,State.state, + tr.group + " questions", "", { specialViz: new Map([["questions", questionBox]]) }) const possiblyHidden = new Toggle( @@ -161,11 +160,6 @@ export default class FeatureInfoBox extends ScrollableFullScreen { } - const hasMinimap = layerConfig.tagRenderings.some(tr => FeatureInfoBox.hasMinimap(tr)) - if (!hasMinimap) { - allRenderings.push(new TagRenderingAnswer(tags, SharedTagRenderings.SharedTagRendering.get("minimap"))) - } - editElements.push( new VariableUiElement( State.state.osmConnection.userDetails @@ -177,7 +171,7 @@ export default class FeatureInfoBox extends ScrollableFullScreen { return undefined } - return new TagRenderingAnswer(tags, SharedTagRenderings.SharedTagRendering.get("last_edit")); + return new TagRenderingAnswer(tags, SharedTagRenderings.SharedTagRendering.get("last_edit"), State.state); }, [State.state.featureSwitchIsDebugging, State.state.featureSwitchIsTesting]) ) @@ -192,9 +186,9 @@ export default class FeatureInfoBox extends ScrollableFullScreen { const config_download: TagRenderingConfig = new TagRenderingConfig({render: "{export_as_geojson()}"}, ""); const config_id: TagRenderingConfig = new TagRenderingConfig({render: "{open_in_iD()}"}, ""); - return new Combine([new TagRenderingAnswer(tags, config_all_tags, "all_tags"), - new TagRenderingAnswer(tags, config_download, ""), - new TagRenderingAnswer(tags, config_id, "")]) + return new Combine([new TagRenderingAnswer(tags, config_all_tags, State.state), + new TagRenderingAnswer(tags, config_download, State.state), + new TagRenderingAnswer(tags, config_id, State.state)]) } }) ) @@ -213,27 +207,7 @@ export default class FeatureInfoBox extends ScrollableFullScreen { return new Combine(allRenderings).SetClass("block") } - /** - * Returns true if this tag rendering has a minimap in some language. - * Note: this might be hidden by conditions - */ - private static hasMinimap(renderingConfig: TagRenderingConfig): boolean { - const translations: Translation[] = Utils.NoNull([renderingConfig.render, ...(renderingConfig.mappings ?? []).map(m => m.then)]); - for (const translation of translations) { - for (const key in translation.translations) { - if (!translation.translations.hasOwnProperty(key)) { - continue - } - const template = translation.translations[key] - const parts = SubstitutedTranslation.ExtractSpecialComponents(template) - const hasMiniMap = parts.filter(part => part.special !== undefined).some(special => special.special.func.funcName === "minimap") - if (hasMiniMap) { - return true; - } - } - } - return false; - } + } diff --git a/UI/Popup/ImportButton.ts b/UI/Popup/ImportButton.ts index 297b5faee2..1d65a24321 100644 --- a/UI/Popup/ImportButton.ts +++ b/UI/Popup/ImportButton.ts @@ -4,7 +4,6 @@ import {UIEventSource} from "../../Logic/UIEventSource"; import Combine from "../Base/Combine"; import {VariableUiElement} from "../Base/VariableUIElement"; import Translations from "../i18n/Translations"; -import Constants from "../../Models/Constants"; import Toggle from "../Input/Toggle"; import CreateNewNodeAction from "../../Logic/Osm/Actions/CreateNewNodeAction"; import Loading from "../Base/Loading"; @@ -19,7 +18,6 @@ import Svg from "../../Svg"; import {Utils} from "../../Utils"; import Minimap from "../Base/Minimap"; import ShowDataLayer from "../ShowDataLayer/ShowDataLayer"; -import AllKnownLayers from "../../Customizations/AllKnownLayers"; import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeatureSource"; import ShowDataMultiLayer from "../ShowDataLayer/ShowDataMultiLayer"; import CreateWayWithPointReuseAction, {MergePointConfig} from "../../Logic/Osm/Actions/CreateWayWithPointReuseAction"; @@ -35,9 +33,15 @@ import ReplaceGeometryAction from "../../Logic/Osm/Actions/ReplaceGeometryAction import CreateMultiPolygonWithPointReuseAction from "../../Logic/Osm/Actions/CreateMultiPolygonWithPointReuseAction"; import {Tag} from "../../Logic/Tags/Tag"; import TagApplyButton from "./TagApplyButton"; +import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import * as conflation_json from "../../assets/layers/conflation/conflation.json"; import {GeoOperations} from "../../Logic/GeoOperations"; +import {LoginToggle} from "./LoginButton"; - +/** + * A helper class for the various import-flows. + * An import-flow always starts with a 'Import this'-button. Upon click, a custom confirmation panel is provided + */ abstract class AbstractImportButton implements SpecialVisualizations { public readonly funcName: string public readonly docs: string @@ -55,7 +59,7 @@ It is only functional in official themes, but can be tested in unoffical themes. #### Specifying which tags to copy or add -The argument \`tags\` of the import button takes a \`;\`-seperated list of tags to add. +The argument \`tags\` of the import button takes a \`;\`-seperated list of tags to add (or the name of a property which contains a JSON-list of properties). ${Utils.Special_visualizations_tagsToApplyHelpText} ${Utils.special_visualizations_importRequirementDocs} @@ -67,7 +71,7 @@ ${Utils.special_visualizations_importRequirementDocs} }, { name: "tags", - doc: "The tags to add onto the new object - see specification above" + doc: "The tags to add onto the new object - see specification above. If this is a key (a single word occuring in the properties of the object), the corresponding value is taken and expanded instead" }, { name: "text", @@ -91,8 +95,7 @@ ${Utils.special_visualizations_importRequirementDocs} onCancelClicked: () => void): BaseUIElement; - constr(state, tagSource, argsRaw, guiState) { - const self = this; + constr(state, tagSource: UIEventSource, argsRaw, guiState) { /** * Some generic import button pre-validation is implemented here: * - Are we logged in? @@ -133,20 +136,13 @@ ${Utils.special_visualizations_importRequirementDocs} // Explanation of the tags that will be applied onto the imported/conflated object - const newTags = TagApplyButton.generateTagsToApply(args.tags, tagSource) - const appliedTags = new Toggle( - new VariableUiElement( - newTags.map(tgs => { - const filteredTags = tgs.filter(tg => self.showRemovedTags || (tg.value ?? "") !== "") - const asText = new And(filteredTags) - .asHumanString(true, true, {}) - - return t0.presetInfo.Subs({tags: asText}).SetClass("subtle"); - })), - undefined, - state.osmConnection.userDetails.map(ud => ud.csCount >= Constants.userJourney.tagsVisibleAt) - ) - + + let tagSpec = args.tags; + if(tagSpec.indexOf(" ")< 0 && tagSpec.indexOf(";") < 0 && tagSource.data[args.tags] !== undefined){ + // This is probably a key + tagSpec = tagSource.data[args.tags] + console.warn("Using tagspec tagSource.data["+args.tags+"] which is ",tagSpec) + } const importClicked = new UIEventSource(false); inviteToImportButton.onClick(() => { @@ -171,7 +167,7 @@ ${Utils.special_visualizations_importRequirementDocs} const importFlow = new Toggle( new Toggle( new Loading(t0.stillLoading), - new Combine([importGuidingPanel, appliedTags]).SetClass("flex flex-col"), + importGuidingPanel, state.featurePipeline.runningQuery ), inviteToImportButton, @@ -179,7 +175,7 @@ ${Utils.special_visualizations_importRequirementDocs} ); return new Toggle( - new Toggle( + new LoginToggle( new Toggle( new Toggle( t.hasBeenImported, @@ -190,7 +186,7 @@ ${Utils.special_visualizations_importRequirementDocs} state.locationControl.map(l => l.zoom >= 18) ), pleaseLoginButton, - state.osmConnection.isLoggedIn + state ), t.wrongType, new UIEventSource(this.canBeImported(feature))) @@ -200,7 +196,16 @@ ${Utils.special_visualizations_importRequirementDocs} private parseArgs(argsRaw: string[], originalFeatureTags: UIEventSource): { minzoom: string, max_snap_distance: string, snap_onto_layers: string, icon: string, text: string, tags: string, targetLayer: string, newTags: UIEventSource } { const baseArgs = Utils.ParseVisArgs(this.args, argsRaw) if (originalFeatureTags !== undefined) { - baseArgs["newTags"] = TagApplyButton.generateTagsToApply(baseArgs.tags, originalFeatureTags) + + const tags = baseArgs.tags + if(tags.indexOf(" ") < 0 && tags.indexOf(";") < 0 && originalFeatureTags.data[tags] !== undefined){ + // This might be a property to expand... + const items : string = originalFeatureTags.data[tags] + console.warn("Using tagspec tagSource.data["+tags+"] which is ",items) + baseArgs["newTags"] = TagApplyButton.generateTagsToApply(items, originalFeatureTags) + }else{ + baseArgs["newTags"] = TagApplyButton.generateTagsToApply(tags, originalFeatureTags) + } } return baseArgs } @@ -256,7 +261,7 @@ ${Utils.special_visualizations_importRequirementDocs} zoomToFeatures: false, features: changePreview, allElements: state.allElements, - layerToShow: AllKnownLayers.sharedLayers.get("conflation") + layerToShow: new LayerConfig(conflation_json, "all_known_layers", true) }) }) @@ -493,6 +498,9 @@ export class ImportPointButton extends AbstractImportButton { name: "max_snap_distance", doc: "The maximum distance that the imported point will be moved to snap onto a way in an already existing layer (in meters). This is previewed to the contributor, similar to the 'add new point'-action of MapComplete", defaultValue: "5" + },{ + name:"note_id", + doc:"If given, this key will be read. The corresponding note on OSM will be closed, stating 'imported'" }], false ) @@ -514,12 +522,13 @@ export class ImportPointButton extends AbstractImportButton { } private static createConfirmPanelForPoint( - args: { max_snap_distance: string, snap_onto_layers: string, icon: string, text: string, newTags: UIEventSource, targetLayer: string }, + args: { max_snap_distance: string, snap_onto_layers: string, icon: string, text: string, newTags: UIEventSource, targetLayer: string, note_id: string }, state: FeaturePipelineState, guiState: DefaultGuiState, originalFeatureTags: UIEventSource, feature: any, - onCancel: () => void): BaseUIElement { + onCancel: () => void, + close: () => void): BaseUIElement { async function confirm(tags: any[], location: { lat: number, lon: number }, snapOntoWayId: string) { @@ -539,12 +548,16 @@ export class ImportPointButton extends AbstractImportButton { state.selectedElement.setData(state.allElements.ContainingFeatures.get( newElementAction.newElementId )) + if(args.note_id !== undefined){ + state.osmConnection.closeNote(args.note_id, "imported") + originalFeatureTags.data["closed_at"] = new Date().toISOString() + originalFeatureTags.ping() + } } const presetInfo = { tags: args.newTags.data, icon: () => new Img(args.icon), - description: Translations.WT(args.text), layerToAddTo: state.filteredLayers.data.filter(l => l.layerDef.id === args.targetLayer)[0], name: args.text, title: Translations.WT(args.text), @@ -558,7 +571,7 @@ export class ImportPointButton extends AbstractImportButton { return new ConfirmLocationOfPoint(state, guiState.filterViewIsOpened, presetInfo, Translations.W(args.text), { lon, lat - }, confirm, onCancel) + }, confirm, onCancel, close) } @@ -566,7 +579,7 @@ export class ImportPointButton extends AbstractImportButton { originalFeatureTags, guiState, feature, - onCancel): BaseUIElement { + onCancel: () => void): BaseUIElement { const geometry = feature.geometry @@ -578,7 +591,11 @@ export class ImportPointButton extends AbstractImportButton { guiState, originalFeatureTags, feature, - onCancel + onCancel, + () => { + // Close the current popup + state.selectedElement.setData(undefined) + } )) } diff --git a/UI/Popup/LoginButton.ts b/UI/Popup/LoginButton.ts new file mode 100644 index 0000000000..3ff24118ab --- /dev/null +++ b/UI/Popup/LoginButton.ts @@ -0,0 +1,26 @@ +import {SubtleButton} from "../Base/SubtleButton"; +import BaseUIElement from "../BaseUIElement"; +import Svg from "../../Svg"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import Toggle from "../Input/Toggle"; + +export default class LoginButton extends SubtleButton { + + constructor(text: BaseUIElement | string, state: { + osmConnection: OsmConnection + }) { + super(Svg.osm_logo_ui(), text); + this.onClick(() => { + state.osmConnection.AttemptLogin() + }) + } + +} + +export class LoginToggle extends Toggle { + constructor(el, text: BaseUIElement | string, state: { + osmConnection: OsmConnection + }) { + super(el, new LoginButton(text, state), state.osmConnection.isLoggedIn) + } +} \ No newline at end of file diff --git a/UI/Popup/NewNoteUi.ts b/UI/Popup/NewNoteUi.ts new file mode 100644 index 0000000000..0c526d3ca4 --- /dev/null +++ b/UI/Popup/NewNoteUi.ts @@ -0,0 +1,92 @@ +import Combine from "../Base/Combine"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import Translations from "../i18n/Translations"; +import Title from "../Base/Title"; +import ValidatedTextField from "../Input/ValidatedTextField"; +import {SubtleButton} from "../Base/SubtleButton"; +import Svg from "../../Svg"; +import {LocalStorageSource} from "../../Logic/Web/LocalStorageSource"; +import Toggle from "../Input/Toggle"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; +import FeaturePipeline from "../../Logic/FeatureSource/FeaturePipeline"; +import FilteredLayer from "../../Models/FilteredLayer"; + +export default class NewNoteUi extends Toggle { + + constructor(noteLayer: FilteredLayer, + isShown: UIEventSource, + state: { + LastClickLocation: UIEventSource<{ lat: number, lon: number }>, + osmConnection: OsmConnection, layoutToUse: LayoutConfig, featurePipeline: FeaturePipeline + }) { + + const t = Translations.t.notes; + const isCreated = new UIEventSource(false); + state.LastClickLocation.addCallbackAndRun(_ => isCreated.setData(false)) // Reset 'isCreated' on every click + const text = ValidatedTextField.InputForType("text", { + value: LocalStorageSource.Get("note-text") + }) + text.SetClass("border rounded-sm border-grey-500") + + const postNote = new SubtleButton(Svg.addSmall_svg().SetClass("max-h-7"), t.createNote) + postNote.onClick(async () => { + let txt = text.GetValue().data + if (txt === undefined || txt === "") { + return; + } + txt += "\n\n #MapComplete #" + state?.layoutToUse?.id + const loc = state.LastClickLocation.data; + state?.osmConnection?.openNote(loc.lat, loc.lon, txt) + text.GetValue().setData("") + isCreated.setData(true) + }) + const createNoteDialog = new Combine([ + new Title(t.createNoteTitle), + t.createNoteIntro, + text, + new Combine([new Toggle(undefined, t.warnAnonymous, state?.osmConnection?.isLoggedIn).SetClass("alert"), postNote]).SetClass("flex justify-end items-center") + ]).SetClass("flex flex-col border-2 border-black rounded-xl p-4"); + + + const newNoteUi = new Toggle( + new Toggle(t.isCreated.SetClass("thanks"), + createNoteDialog, + isCreated + ), + undefined, + new UIEventSource(true) + ) + + super( + new Toggle( + + new Combine( + [ + t.noteLayerHasFilters.SetClass("alert"), + new SubtleButton(Svg.filter_svg(), t.disableAllNoteFilters).onClick(() => { + const filters = noteLayer.appliedFilters.data; + for (const key of Array.from(filters.keys())) { + filters.set(key, undefined) + } + noteLayer.appliedFilters.ping() + isShown.setData(false); + }) + ] + ).SetClass("flex flex-col"), + newNoteUi, + noteLayer.appliedFilters.map(filters => Array.from(filters.values()).some(v => v !== undefined)) + ), + new Combine([ + t.noteLayerNotEnabled.SetClass("alert"), + new SubtleButton(Svg.layers_svg(), t.noteLayerDoEnable).onClick(() => { + noteLayer.isDisplayed.setData(true); + isShown.setData(false); + }) + ]).SetClass("flex flex-col"), + noteLayer.isDisplayed + ); + } + + +} diff --git a/UI/Popup/NoteCommentElement.ts b/UI/Popup/NoteCommentElement.ts new file mode 100644 index 0000000000..4251204c41 --- /dev/null +++ b/UI/Popup/NoteCommentElement.ts @@ -0,0 +1,95 @@ +import Combine from "../Base/Combine"; +import BaseUIElement from "../BaseUIElement"; +import Svg from "../../Svg"; +import Link from "../Base/Link"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import Translations from "../i18n/Translations"; +import {Utils} from "../../Utils"; +import Img from "../Base/Img"; +import {SlideShow} from "../Image/SlideShow"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; + +export default class NoteCommentElement extends Combine { + + + constructor(comment: { + "date": string, + "uid": number, + "user": string, + "user_url": string, + "action": "closed" | "opened" | "reopened" | "commented", + "text": string, "html": string + }) { + const t = Translations.t.notes; + + let actionIcon: BaseUIElement = undefined; + if (comment.action === "opened" || comment.action === "reopened") { + actionIcon = Svg.note_svg() + } else if (comment.action === "closed") { + actionIcon = Svg.resolved_svg() + } else { + actionIcon = Svg.addSmall_svg() + } + + let user: BaseUIElement + if (comment.user === undefined) { + user = t.anonymous + } else { + user = new Link(comment.user, comment.user_url ?? "", true) + } + + + const htmlElement = document.createElement("div") + htmlElement.innerHTML = comment.html + const images = Array.from(htmlElement.getElementsByTagName("a")) + .map(link => link.href) + .filter(link => { + link = link.toLowerCase() + const lastDotIndex = link.lastIndexOf('.') + const extension = link.substring(lastDotIndex + 1, link.length) + return Utils.imageExtensions.has(extension) + }) + let imagesEl: BaseUIElement = undefined; + if (images.length > 0) { + const imageEls = images.map(i => new Img(i) + .SetClass("w-full block") + .SetStyle("min-width: 50px; background: grey;")); + imagesEl = new SlideShow(new UIEventSource(imageEls)) + } + + super([ + new Combine([ + actionIcon.SetClass("mr-4 w-6").SetStyle("flex-shrink: 0"), + new FixedUiElement(comment.html).SetClass("flex flex-col").SetStyle("margin: 0"), + ]).SetClass("flex"), + imagesEl, + new Combine([user.SetClass("mr-2"), comment.date]).SetClass("flex justify-end subtle") + ]) + this.SetClass("flex flex-col") + + } + + public static addCommentTo(txt: string, tags: UIEventSource, state: {osmConnection: OsmConnection}){ + const comments: any[] = JSON.parse(tags.data["comments"]) + const username = state.osmConnection.userDetails.data.name + + var urlRegex = /(https?:\/\/[^\s]+)/g; + const html = txt.replace(urlRegex, function(url) { + return '' + url + ''; + }) + + comments.push({ + "date": new Date().toISOString(), + "uid": state.osmConnection.userDetails.data.uid, + "user": username, + "user_url": "https://www.openstreetmap.org/user/" + username, + "action": "commented", + "text": txt, + "html": html + }) + tags.data["comments"] = JSON.stringify(comments) + tags.ping() + } + +} \ No newline at end of file diff --git a/UI/Popup/QuestionBox.ts b/UI/Popup/QuestionBox.ts index 5a857eef20..6ca5a59694 100644 --- a/UI/Popup/QuestionBox.ts +++ b/UI/Popup/QuestionBox.ts @@ -68,10 +68,11 @@ export default class QuestionBox extends VariableUiElement { if (tagRendering.IsKnown(tags)) { continue; } - if (tagRendering.condition && - !tagRendering.condition.matchesProperties(tags)) { - // Filtered away by the condition, so it is kindof known - continue; + if (tagRendering.condition) { + if (!tagRendering.condition.matchesProperties(tags)) { + // Filtered away by the condition, so it is kindof known + continue; + } } // this value is NOT known - this is the question we have to show! @@ -79,7 +80,7 @@ export default class QuestionBox extends VariableUiElement { } return undefined; // The questions are depleted }, [skippedQuestions]); - + const questionsToAsk: UIEventSource = tagsSource.map(tags => { if (tags === undefined) { return []; diff --git a/UI/Popup/SplitRoadWizard.ts b/UI/Popup/SplitRoadWizard.ts index 71c4c1fec5..daeb7bbb12 100644 --- a/UI/Popup/SplitRoadWizard.ts +++ b/UI/Popup/SplitRoadWizard.ts @@ -17,6 +17,7 @@ import ShowDataMultiLayer from "../ShowDataLayer/ShowDataMultiLayer"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; import {BBox} from "../../Logic/BBox"; import * as split_point from "../../assets/layers/split_point/split_point.json" + export default class SplitRoadWizard extends Toggle { // @ts-ignore private static splitLayerStyling = new LayerConfig(split_point, "(BUILTIN) SplitRoadWizard.ts", true) diff --git a/UI/Popup/TagRenderingAnswer.ts b/UI/Popup/TagRenderingAnswer.ts index c7724b5389..0e8bbf57e0 100644 --- a/UI/Popup/TagRenderingAnswer.ts +++ b/UI/Popup/TagRenderingAnswer.ts @@ -12,6 +12,7 @@ import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; export default class TagRenderingAnswer extends VariableUiElement { constructor(tagsSource: UIEventSource, configuration: TagRenderingConfig, + state: any, contentClasses: string = "", contentStyle: string = "", options?:{ specialViz: Map }) { @@ -37,7 +38,7 @@ export default class TagRenderingAnswer extends VariableUiElement { return undefined; } - const valuesToRender: BaseUIElement[] = trs.map(tr => new SubstitutedTranslation(tr, tagsSource, options?.specialViz)) + const valuesToRender: BaseUIElement[] = trs.map(tr => new SubstitutedTranslation(tr, tagsSource, state, options?.specialViz)) if (valuesToRender.length === 1) { return valuesToRender[0]; } else if (valuesToRender.length > 1) { diff --git a/UI/Popup/TagRenderingQuestion.ts b/UI/Popup/TagRenderingQuestion.ts index 9c0c530ab6..76313e2fd3 100644 --- a/UI/Popup/TagRenderingQuestion.ts +++ b/UI/Popup/TagRenderingQuestion.ts @@ -71,7 +71,7 @@ export default class TagRenderingQuestion extends Combine { } options = options ?? {} const applicableUnit = (options.units ?? []).filter(unit => unit.isApplicableToKey(configuration.freeform?.key))[0]; - const question = new SubstitutedTranslation(configuration.question, tags) + const question = new SubstitutedTranslation(configuration.question, tags, State.state) .SetClass("question-text"); @@ -352,7 +352,7 @@ export default class TagRenderingQuestion extends Combine { } return new FixedInputElement( - new SubstitutedTranslation(mapping.then, tagsSource), + new SubstitutedTranslation(mapping.then, tagsSource, State.state), tagging, (t0, t1) => t1.isEquivalent(t0)); } @@ -418,7 +418,7 @@ export default class TagRenderingQuestion extends Combine { if (freeform.inline) { inputTagsFilter.SetClass("w-16-imp") - inputTagsFilter = new InputElementWrapper(inputTagsFilter, configuration.render, freeform.key, tags) + inputTagsFilter = new InputElementWrapper(inputTagsFilter, configuration.render, freeform.key, tags, State.state) inputTagsFilter.SetClass("block") } diff --git a/UI/Professional.ts b/UI/Professional.ts deleted file mode 100644 index 9d6d6edeb3..0000000000 --- a/UI/Professional.ts +++ /dev/null @@ -1,34 +0,0 @@ -import {FixedUiElement} from "./Base/FixedUiElement"; -import Combine from "./Base/Combine"; -import MoreScreen from "./BigComponents/MoreScreen"; -import Translations from "./i18n/Translations"; -import Constants from "../Models/Constants"; -import UserRelatedState from "../Logic/State/UserRelatedState"; -import {Utils} from "../Utils"; -import LanguagePicker from "./LanguagePicker"; -import IndexText from "./BigComponents/IndexText"; -import FeaturedMessage from "./BigComponents/FeaturedMessage"; - -export default class Professional { - constructor() { - new FixedUiElement("").AttachTo("centermessage") - - const state = new UserRelatedState(undefined); - const intro = new Combine([ - LanguagePicker.CreateLanguagePicker(Translations.t.index.title.SupportedLanguages()) - .SetClass("absolute top-2 right-3"), - new IndexText() - ]); - new Combine([ - intro, - new FeaturedMessage(), - new MoreScreen(state, true), - Translations.t.general.aboutMapcomplete - .Subs({"osmcha_link": Utils.OsmChaLinkFor(7)}) - .SetClass("link-underline"), - new FixedUiElement("v" + Constants.vNumber) - ]).SetClass("block m-5 lg:w-3/4 lg:ml-40") - .SetStyle("pointer-events: all;") - .AttachTo("topleft-tools"); - } -} \ No newline at end of file diff --git a/UI/ProfessionalGui.ts b/UI/ProfessionalGui.ts index 4e305c5241..e6f4476ef5 100644 --- a/UI/ProfessionalGui.ts +++ b/UI/ProfessionalGui.ts @@ -97,7 +97,7 @@ export default class ProfessionalGui { Svg.back_svg().SetStyle("height: 1.5rem;"), t.backToMapcomplete, { - url: window.location.host + "/index.html" + url: "./index.html" } )]).SetClass("block") diff --git a/UI/ShowDataLayer/ShowDataLayer.ts b/UI/ShowDataLayer/ShowDataLayer.ts index 0640c22044..27ed05f150 100644 --- a/UI/ShowDataLayer/ShowDataLayer.ts +++ b/UI/ShowDataLayer/ShowDataLayer.ts @@ -148,11 +148,12 @@ export default class ShowDataLayer { const mp = options.leafletMap.data; if(mp === null){ - return true; // Unregister as the map is destroyed + return true; // Unregister as the map has been destroyed } if (mp === undefined) { return; } + this._cleanCount++ // clean all the old stuff away, if any if (this.geoLayer !== undefined) { diff --git a/UI/ShowDataLayer/ShowTileInfo.ts b/UI/ShowDataLayer/ShowTileInfo.ts index e2ba01adf3..702e9d9c83 100644 --- a/UI/ShowDataLayer/ShowTileInfo.ts +++ b/UI/ShowDataLayer/ShowTileInfo.ts @@ -8,8 +8,7 @@ import {Tiles} from "../../Models/TileRange"; import * as clusterstyle from "../../assets/layers/cluster_style/cluster_style.json" export default class ShowTileInfo { - public static readonly styling = new LayerConfig( - clusterstyle, "tileinfo", true) + public static readonly styling = new LayerConfig(clusterstyle, "ShowTileInfo", true) constructor(options: { source: FeatureSource & Tiled, leafletMap: UIEventSource, layer?: LayerConfig, diff --git a/UI/SpecialVisualizations.ts b/UI/SpecialVisualizations.ts index df2ff26d60..b15d58b8e2 100644 --- a/UI/SpecialVisualizations.ts +++ b/UI/SpecialVisualizations.ts @@ -27,7 +27,6 @@ import AllImageProviders from "../Logic/ImageProviders/AllImageProviders"; import WikipediaBox from "./Wikipedia/WikipediaBox"; import SimpleMetaTagger from "../Logic/SimpleMetaTagger"; import MultiApply from "./Popup/MultiApply"; -import AllKnownLayers from "../Customizations/AllKnownLayers"; import ShowDataLayer from "./ShowDataLayer/ShowDataLayer"; import {SubtleButton} from "./Base/SubtleButton"; import {DefaultGuiState} from "./DefaultGuiState"; @@ -37,7 +36,16 @@ import FeaturePipelineState from "../Logic/State/FeaturePipelineState"; import {ConflateButton, ImportPointButton, ImportWayButton} from "./Popup/ImportButton"; import TagApplyButton from "./Popup/TagApplyButton"; import AutoApplyButton from "./Popup/AutoApplyButton"; +import * as left_right_style_json from "../assets/layers/left_right_style/left_right_style.json"; import {OpenIdEditor} from "./BigComponents/CopyrightPanel"; +import Toggle from "./Input/Toggle"; +import Img from "./Base/Img"; +import ValidatedTextField from "./Input/ValidatedTextField"; +import NoteCommentElement from "./Popup/NoteCommentElement"; +import ImgurUploader from "../Logic/ImageProviders/ImgurUploader"; +import FileSelectorButton from "./Input/FileSelectorButton"; +import {LoginToggle} from "./Popup/LoginButton"; +import {start} from "repl"; export interface SpecialVisualization { funcName: string, @@ -52,9 +60,41 @@ export default class SpecialVisualizations { public static specialVisualizations = SpecialVisualizations.init() + public static HelpMessage() { - private static init(){ - const specialVisualizations: SpecialVisualization[] = + const helpTexts = + SpecialVisualizations.specialVisualizations.map(viz => new Combine( + [ + new Title(viz.funcName, 3), + viz.docs, + viz.args.length > 0 ? new Table(["name", "default", "description"], + viz.args.map(arg => { + let defaultArg = arg.defaultValue ?? "_undefined_" + if (defaultArg == "") { + defaultArg = "_empty string_" + } + return [arg.name, defaultArg, arg.doc]; + }) + ) : undefined, + new Title("Example usage of " + viz.funcName, 4), + new FixedUiElement( + viz.example ?? "`{" + viz.funcName + "(" + viz.args.map(arg => arg.defaultValue).join(",") + ")}`" + ).SetClass("literal-code"), + + ] + )); + + return new Combine([ + new Title("Special tag renderings", 1), + "In a tagrendering, some special values are substituted by an advanced UI-element. This allows advanced features and visualizations to be reused by custom themes or even to query third-party API's.", + "General usage is `{func_name()}`, `{func_name(arg, someotherarg)}` or `{func_name(args):cssStyle}`. Note that you _do not_ need to use quotes around your arguments, the comma is enough to separate them. This also implies you cannot use a comma in your args", + ...helpTexts + ] + ).SetClass("flex flex-col"); + } + + private static init() { + const specialVisualizations: SpecialVisualization[] = [ { funcName: "all_tags", @@ -105,7 +145,7 @@ export default class SpecialVisualizations { if (args.length > 0) { imagePrefixes = [].concat(...args.map(a => a.split(","))); } - return new ImageCarousel(AllImageProviders.LoadImagesFor(tags, imagePrefixes), tags, imagePrefixes); + return new ImageCarousel(AllImageProviders.LoadImagesFor(tags, imagePrefixes), tags, state); } }, { @@ -121,7 +161,7 @@ export default class SpecialVisualizations { defaultValue: "Add image" }], constr: (state: State, tags, args) => { - return new ImageUploadFlow(tags, args[0], args[1]) + return new ImageUploadFlow(tags, state, args[0], args[1]) } }, { @@ -162,7 +202,7 @@ export default class SpecialVisualizations { } ], example: "`{minimap()}`, `{minimap(17, id, _list_of_embedded_feature_ids_calculated_by_calculated_tag):height:10rem; border: 2px solid black}`", - constr: (state, tagSource, args, defaultGuiState) => { + constr: (state, tagSource, args, _) => { const keys = [...args] keys.splice(0, 1) @@ -268,7 +308,7 @@ export default class SpecialVisualizations { leafletMap: minimap["leafletMap"], enablePopups: false, zoomToFeatures: true, - layerToShow: AllKnownLayers.sharedLayers.get("left_right_style"), + layerToShow: new LayerConfig(left_right_style_json, "all_known_layers", true), features: new StaticFeatureSource([copy], false), allElements: State.state.allElements } @@ -325,7 +365,7 @@ export default class SpecialVisualizations { }], example: "A normal opening hours table can be invoked with `{opening_hours_table()}`. A table for e.g. conditional access with opening hours can be `{opening_hours_table(access:conditional, no @ &LPARENS, &RPARENS)}`", constr: (state: State, tagSource: UIEventSource, args) => { - return new OpeningHoursVisualization(tagSource, args[0], args[1], args[2]) + return new OpeningHoursVisualization(tagSource, state, args[0], args[1], args[2]) } }, { @@ -359,12 +399,12 @@ export default class SpecialVisualizations { }, { name: "title", - doc: "The text to put above the given values column", + doc: "This text will be placed above the texts (in the first column of the visulasition)", defaultValue: "" }, { name: "countHeader", - doc: "The text to put above the counts", + doc: "This text will be placed above the bars", defaultValue: "" }, { @@ -590,12 +630,12 @@ export default class SpecialVisualizations { funcName: "open_in_iD", docs: "Opens the current view in the iD-editor", args: [], - constr: (state, feature ) => { + constr: (state, feature) => { return new OpenIdEditor(state, undefined, feature.data.id) } }, - - + + { funcName: "clear_location_history", docs: "A button to remove the travelled track information from the device", @@ -608,46 +648,222 @@ export default class SpecialVisualizations { Hash.hash.setData(undefined) }) } + }, + { + funcName: "close_note", + docs: "Button to close a note. A predifined text can be defined to close the note with. If the note is already closed, will show a small text.", + args: [ + { + name: "text", + doc: "Text to show on this button", + }, + { + name: "icon", + doc: "Icon to show", + defaultValue: "checkmark.svg" + }, + { + name: "Id-key", + doc: "The property name where the ID of the note to close can be found", + defaultValue: "id" + }, + { + name: "comment", + doc: "Text to add onto the note when closing", + } + ], + constr: (state, tags, args, guiState) => { + const t = Translations.t.notes; + + let icon = Svg.checkmark_svg() + if (args[1] !== "checkmark.svg" && (args[2] ?? "") !== "") { + icon = new Img(args[1]) + } + let textToShow = t.closeNote; + if ((args[0] ?? "") !== "") { + textToShow = Translations.T(args[0]) + } + + const closeButton = new SubtleButton(icon, textToShow) + const isClosed = tags.map(tags => (tags["closed_at"] ?? "") !== ""); + closeButton.onClick(() => { + const id = tags.data[args[2] ?? "id"] + state.osmConnection.closeNote(id, args[3]) + ?.then(_ => { + tags.data["closed_at"] = new Date().toISOString(); + tags.ping() + }) + }) + return new LoginToggle( new Toggle( + t.isClosed.SetClass("thanks"), + closeButton, + isClosed + ), t.loginToClose, state) + } + }, + { + funcName: "add_note_comment", + docs: "A textfield to add a comment to a node (with the option to close the note).", + args: [ + { + name: "Id-key", + doc: "The property name where the ID of the note to close can be found", + defaultValue: "id" + } + ], + constr: (state, tags, args, guiState) => { + + const t = Translations.t.notes; + const textField = ValidatedTextField.InputForType("text", {placeholder: t.addCommentPlaceholder}) + textField.SetClass("rounded-l border border-grey") + const txt = textField.GetValue() + + const addCommentButton = new SubtleButton(Svg.addSmall_svg().SetClass("max-h-7"), t.addCommentPlaceholder) + .onClick(async () => { + const id = tags.data[args[1] ?? "id"] + + if ((txt.data ?? "") == "") { + return; + } + + if (isClosed.data) { + await state.osmConnection.reopenNote(id, txt.data) + await state.osmConnection.closeNote(id) + } else { + await state.osmConnection.addCommentToNode(id, txt.data) + } + NoteCommentElement.addCommentTo(txt.data, tags, state) + txt.setData("") + + }) + + + const close = new SubtleButton(Svg.resolved_svg().SetClass("max-h-7"), new VariableUiElement(txt.map(txt => { + if (txt === undefined || txt === "") { + return t.closeNote + } + return t.addCommentAndClose + }))).onClick(() => { + const id = tags.data[args[1] ?? "id"] + if (state.featureSwitchIsTesting.data) { + console.log("Testmode: Not actually closing note...") + return; + } + state.osmConnection.closeNote(id, txt.data).then(_ => { + tags.data["closed_at"] = new Date().toISOString(); + tags.ping() + }) + }) + + const reopen = new SubtleButton(Svg.note_svg().SetClass("max-h-7"), new VariableUiElement(txt.map(txt => { + if (txt === undefined || txt === "") { + return t.reopenNote + } + return t.reopenNoteAndComment + }))).onClick(() => { + const id = tags.data[args[1] ?? "id"] + if (state.featureSwitchIsTesting.data) { + console.log("Testmode: Not actually reopening note...") + return; + } + state.osmConnection.reopenNote(id, txt.data).then(_ => { + tags.data["closed_at"] = undefined; + tags.ping() + }) + }) + + const isClosed = tags.map(tags => (tags["closed_at"] ?? "") !== ""); + const stateButtons = new Toggle(new Toggle(reopen, close, isClosed), undefined, state.osmConnection.isLoggedIn) + + return new LoginToggle( + new Combine([ + new Title("Add a comment"), + textField, + new Combine([addCommentButton.SetClass("mr-2"), stateButtons]).SetClass("flex justify-end") + ]).SetClass("border-2 border-black rounded-xl p-4 block"), + t.loginToAddComment, state) + } + }, + { + funcName: "visualize_note_comments", + docs: "Visualises the comments for notes", + args: [ + { + name: "commentsKey", + doc: "The property name of the comments, which should be stringified json", + defaultValue: "comments" + }, + { + name: "start", + doc:"Drop the first 'start' comments", + defaultValue: "0" + } + ] + , constr: (state, tags, args) => + new VariableUiElement( + tags.map(tags => tags[args[0]]) + .map(commentsStr => { + const comments: any[] = JSON.parse(commentsStr) + const startLoc = Number(args[1] ?? 0) + if(!isNaN(startLoc) && startLoc > 0){ + comments.splice(0, startLoc) + } + return new Combine(comments + .filter(c => c.text !== "") + .map(c => new NoteCommentElement(c))).SetClass("flex flex-col") + }) + ) + }, + { + funcName: "add_image_to_note", + docs: "Adds an image to a node", + args: [{ + name: "Id-key", + doc: "The property name where the ID of the note to close can be found", + defaultValue: "id" + }], + constr: (state, tags, args) => { + const isUploading = new UIEventSource(false); + const t = Translations.t.notes; + const id = tags.data[args[0] ?? "id"] + + const uploader = new ImgurUploader(url => { + isUploading.setData(false) + state.osmConnection.addCommentToNode(id, url) + NoteCommentElement.addCommentTo(url, tags, state) + + }) + + const label = new Combine([ + Svg.camera_plus_ui().SetClass("block w-12 h-12 p-1 text-4xl "), + Translations.t.image.addPicture + ]).SetClass("p-2 border-4 border-black rounded-full font-bold h-full align-center w-full flex justify-center") + + const fileSelector = new FileSelectorButton(label) + fileSelector.GetValue().addCallback(filelist => { + isUploading.setData(true) + uploader.uploadMany("Image for osm.org/note/" + id, "CC0", filelist) + + }) + const ti = Translations.t.image + const uploadPanel = new Combine([ + fileSelector, + new Combine([ti.willBePublished, ti.cco]), + ti.ccoExplanation.SetClass("subtle text-sm"), + ti.respectPrivacy.SetClass("text-sm") + ]).SetClass("flex flex-col") + return new LoginToggle( new Toggle( + Translations.t.image.uploadingPicture.SetClass("alert"), + uploadPanel, + isUploading), t.loginToAddPicture, state) + } + } ] - + specialVisualizations.push(new AutoApplyButton(specialVisualizations)) - + return specialVisualizations; } - - - public static HelpMessage() { - - const helpTexts = - SpecialVisualizations.specialVisualizations.map(viz => new Combine( - [ - new Title(viz.funcName, 3), - viz.docs, - viz.args.length > 0 ? new Table(["name", "default", "description"], - viz.args.map(arg => { - let defaultArg = arg.defaultValue ?? "_undefined_" - if (defaultArg == "") { - defaultArg = "_empty string_" - } - return [arg.name, defaultArg, arg.doc]; - }) - ) : undefined, - new Title("Example usage of "+viz.funcName, 4), - new FixedUiElement( - viz.example ?? "`{" + viz.funcName + "(" + viz.args.map(arg => arg.defaultValue).join(",") + ")}`" - ).SetClass("literal-code"), - - ] - )); - - return new Combine([ - new Title("Special tag renderings", 1), - "In a tagrendering, some special values are substituted by an advanced UI-element. This allows advanced features and visualizations to be reused by custom themes or even to query third-party API's.", - "General usage is `{func_name()}`, `{func_name(arg, someotherarg)}` or `{func_name(args):cssStyle}`. Note that you _do not_ need to use quotes around your arguments, the comma is enough to separate them. This also implies you cannot use a comma in your args", - ...helpTexts - ] - ).SetClass("flex flex-col"); - } } \ No newline at end of file diff --git a/UI/SubstitutedTranslation.ts b/UI/SubstitutedTranslation.ts index c753875dc6..a71598d5f2 100644 --- a/UI/SubstitutedTranslation.ts +++ b/UI/SubstitutedTranslation.ts @@ -1,7 +1,6 @@ import {UIEventSource} from "../Logic/UIEventSource"; import {Translation} from "./i18n/Translation"; import Locale from "./i18n/Locale"; -import State from "../State"; import {FixedUiElement} from "./Base/FixedUiElement"; import SpecialVisualizations, {SpecialVisualization} from "./SpecialVisualizations"; import {Utils} from "../Utils"; @@ -9,12 +8,14 @@ import {VariableUiElement} from "./Base/VariableUIElement"; import Combine from "./Base/Combine"; import BaseUIElement from "./BaseUIElement"; import {DefaultGuiState} from "./DefaultGuiState"; +import FeaturePipelineState from "../Logic/State/FeaturePipelineState"; export class SubstitutedTranslation extends VariableUiElement { public constructor( translation: Translation, tagsSource: UIEventSource, + state: FeaturePipelineState, mapping: Map = undefined) { const extraMappings: SpecialVisualization[] = []; @@ -50,7 +51,7 @@ export class SubstitutedTranslation extends VariableUiElement { } const viz = proto.special; try { - return viz.func.constr(State.state, tagsSource, proto.special.args, DefaultGuiState.state).SetStyle(proto.special.style); + return viz.func.constr(state, tagsSource, proto.special.args, DefaultGuiState.state).SetStyle(proto.special.style); } catch (e) { console.error("SPECIALRENDERING FAILED for", tagsSource.data?.id, e) return new FixedUiElement(`Could not generate special rendering for ${viz.func.funcName}(${viz.args.join(", ")}) ${e}`).SetStyle("alert") @@ -71,7 +72,7 @@ export class SubstitutedTranslation extends VariableUiElement { style: string } }[] { - + for (const knownSpecial of SpecialVisualizations.specialVisualizations.concat(extraMappings)) { // Note: the '.*?' in the regex reads as 'any character, but in a non-greedy way' diff --git a/UI/i18n/Translation.ts b/UI/i18n/Translation.ts index d914425a2d..b88cc7b379 100644 --- a/UI/i18n/Translation.ts +++ b/UI/i18n/Translation.ts @@ -13,6 +13,9 @@ export class Translation extends BaseUIElement { if (translations === undefined) { throw `Translation without content (${context})` } + if(typeof translations === "string"){ + translations = {"*": translations}; + } let count = 0; for (const translationsKey in translations) { if (!translations.hasOwnProperty(translationsKey)) { diff --git a/Utils.ts b/Utils.ts index 943addefcc..25f8985758 100644 --- a/Utils.ts +++ b/Utils.ts @@ -21,6 +21,7 @@ Remark that the syntax is slightly different then expected; it uses '$' to note Note that these values can be prepare with javascript in the theme by using a [calculatedTag](calculatedTags.md#calculating-tags-with-javascript) ` + public static readonly imageExtensions = new Set(["jpg","png","svg","jpeg",".gif"]) public static readonly special_visualizations_importRequirementDocs = `#### Importing a dataset into OpenStreetMap: requirements @@ -45,34 +46,31 @@ There are also some technicalities in your theme to keep in mind: The import button can be tested in an unofficial theme by adding \`test=true\` or \`backend=osm-test\` as [URL-paramter](URL_Parameters.md). The import button will show up then. If in testmode, you can read the changeset-XML directly in the web console. In the case that MapComplete is pointed to the testing grounds, the edit will be made on https://master.apis.dev.openstreetmap.org` - + private static knownKeys = ["addExtraTags", "and", "calculatedTags", "changesetmessage", "clustering", "color", "condition", "customCss", "dashArray", "defaultBackgroundId", "description", "descriptionTail", "doNotDownload", "enableAddNewPoints", "enableBackgroundLayerSelection", "enableGeolocation", "enableLayers", "enableMoreQuests", "enableSearch", "enableShareScreen", "enableUserBadge", "freeform", "hideFromOverview", "hideInAnswer", "icon", "iconOverlays", "iconSize", "id", "if", "ifnot", "isShown", "key", "language", "layers", "lockLocation", "maintainer", "mappings", "maxzoom", "maxZoom", "minNeededElements", "minzoom", "multiAnswer", "name", "or", "osmTags", "passAllFeatures", "presets", "question", "render", "roaming", "roamingRenderings", "rotation", "shortDescription", "socialImage", "source", "startLat", "startLon", "startZoom", "tagRenderings", "tags", "then", "title", "titleIcons", "type", "version", "wayHandling", "widenFactor", "width"] + private static extraKeys = ["nl", "en", "fr", "de", "pt", "es", "name", "phone", "email", "amenity", "leisure", "highway", "building", "yes", "no", "true", "false"] + private static injectedDownloads = {} + private static _download_cache = new Map, timestamp: number }>() /** * Parses the arguments for special visualisations */ public static ParseVisArgs(specs: { name: string, defaultValue?: string }[], args: string[]): any { const parsed = {}; - if(args.length> specs.length){ - throw "To much arguments for special visualization: got "+args.join(",")+" but expected only "+args.length+" arguments" + if (args.length > specs.length) { + throw "To much arguments for special visualization: got " + args.join(",") + " but expected only " + args.length + " arguments" } - for (let i = 0; i < specs.length; i++){ + for (let i = 0; i < specs.length; i++) { const spec = specs[i]; let arg = args[i]?.trim(); - if(arg === undefined || arg === ""){ + if (arg === undefined || arg === "") { arg = spec.defaultValue } - parsed[spec.name] = arg + parsed[spec.name] = arg } return parsed; } - - private static knownKeys = ["addExtraTags", "and", "calculatedTags", "changesetmessage", "clustering", "color", "condition", "customCss", "dashArray", "defaultBackgroundId", "description", "descriptionTail", "doNotDownload", "enableAddNewPoints", "enableBackgroundLayerSelection", "enableGeolocation", "enableLayers", "enableMoreQuests", "enableSearch", "enableShareScreen", "enableUserBadge", "freeform", "hideFromOverview", "hideInAnswer", "icon", "iconOverlays", "iconSize", "id", "if", "ifnot", "isShown", "key", "language", "layers", "lockLocation", "maintainer", "mappings", "maxzoom", "maxZoom", "minNeededElements", "minzoom", "multiAnswer", "name", "or", "osmTags", "passAllFeatures", "presets", "question", "render", "roaming", "roamingRenderings", "rotation", "shortDescription", "socialImage", "source", "startLat", "startLon", "startZoom", "tagRenderings", "tags", "then", "title", "titleIcons", "type", "version", "wayHandling", "widenFactor", "width"] - private static extraKeys = ["nl", "en", "fr", "de", "pt", "es", "name", "phone", "email", "amenity", "leisure", "highway", "building", "yes", "no", "true", "false"] - private static injectedDownloads = {} - private static _download_cache = new Map, timestamp: number }>() - static EncodeXmlValue(str) { if (typeof str !== "string") { str = "" + str @@ -139,14 +137,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be } public static NoNull(array: T[]): T[] { - const ls: T[] = []; - for (const t of array) { - if (t === undefined || t === null) { - continue; - } - ls.push(t); - } - return ls; + return array?.filter(o => o !== undefined && o !== null) } public static Hist(array: string[]): Map { @@ -191,21 +182,21 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be return newArr; } - public static Dupicates(arr: string[]): string[] { + public static Dupiclates(arr: string[]): string[] { if (arr === undefined) { return undefined; } const newArr = []; const seen = new Set(); for (const string of arr) { - if(seen.has(string)){ + if (seen.has(string)) { newArr.push(string) } seen.add(string) } return newArr; } - + public static Identical(t1: T[], t2: T[], eq?: (t: T, t0: T) => boolean): boolean { if (t1.length !== t2.length) { return false @@ -238,6 +229,13 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be return [a.substr(0, index), a.substr(index + sep.length)]; } + /** + * Given a piece of text, will replace any key occuring in 'tags' by the corresponding value + * @param txt + * @param tags + * @param useLang + * @constructor + */ public static SubstituteKeys(txt: string | undefined, tags: any, useLang?: string): string | undefined { if (txt === undefined) { return undefined @@ -249,7 +247,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be while (match) { const key = match[1] let v = tags[key] - if(v !== undefined ){ + if (v !== undefined) { if (v["toISOString"] != undefined) { // This is a date, probably the timestamp of the object @@ -258,21 +256,24 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be v = date.toISOString() } - if(useLang !== undefined && v?.translations !== undefined){ + if (useLang !== undefined && v?.translations !== undefined) { v = v.translations[useLang] ?? v.translations["*"] ?? (v.textFor !== undefined ? v.textFor(useLang) : v); } - - if(v.InnerConstructElement !== undefined){ - console.warn("SubstituteKeys received a BaseUIElement to substitute in - this is probably a bug and will be downcast to a string\nThe key is", key,"\nThe value is", v) - v = ( v.InnerConstructElement())?.innerText + + if (v.InnerConstructElement !== undefined) { + console.warn("SubstituteKeys received a BaseUIElement to substitute in - this is probably a bug and will be downcast to a string\nThe key is", key, "\nThe value is", v) + v = (v.InnerConstructElement())?.innerText } - - if(typeof v !== "string"){ - v = ""+v + + if (typeof v !== "string") { + v = "" + v } v = v.replace(/\n/g, "
") + }else{ + // v === undefined + v = "" } - txt = txt.replace("{" + key + "}", v ?? "") + txt = txt.replace("{" + key + "}", v) match = txt.match(regex) } @@ -321,7 +322,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be } const sourceV = source[key]; - if(target === null){ + if (target === null) { return source } const targetV = target[key] @@ -342,6 +343,27 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be return target; } + static WalkJson(json: any, f: (v: number | string | boolean | undefined) => any) { + if(json === undefined){ + return f(undefined) + } + const jtp = typeof json + if (jtp === "boolean" || jtp === "string" || jtp === "number"){ + return f(json) + } + if (json.map !== undefined) { + return json.map(sub => { + return Utils.WalkJson(sub, f); + }) + } + + const cp = {...json} + for (const key in json) { + cp[key] = Utils.WalkJson(json[key], f) + } + return cp + } + static getOrSetDefault(dict: Map, k: K, v: () => V) { let found = dict.get(k); if (found !== undefined) { @@ -592,6 +614,18 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be return "https://osmcha.org/?filters=" + encodeURIComponent("{" + osmcha_link + "}") } + /** + * Deepclone an object by serializing and deserializing it + * @param x + * @constructor + */ + static Clone(x: T): T { + if (x === undefined) { + return undefined; + } + return JSON.parse(JSON.stringify(x)); + } + private static colorDiff(c0: { r: number, g: number, b: number }, c1: { r: number, g: number, b: number }) { return Math.abs(c0.r - c1.r) + Math.abs(c0.g - c1.g) + Math.abs(c0.b - c1.b); } diff --git a/all_themes_index.ts b/all_themes_index.ts new file mode 100644 index 0000000000..dec4d68733 --- /dev/null +++ b/all_themes_index.ts @@ -0,0 +1,22 @@ +import {Utils} from "./Utils"; +import AllThemesGui from "./UI/AllThemesGui"; +import {QueryParameters} from "./Logic/Web/QueryParameters"; + + +const layout = QueryParameters.GetQueryParameter("layout", undefined).data ?? "" +const customLayout = QueryParameters.GetQueryParameter("userlayout", undefined).data ?? "" +const l = window.location; +if( layout !== ""){ + if(window.location.host.startsWith("127.0.0.1")){ + window.location.replace(l.protocol + "//" + window.location.host+"/theme.html"+ l.search + "&layout="+layout + l.hash); + }else{ + window.location.replace(l.protocol + "//" + window.location.host+"/"+layout+".html"+ l.search + l.hash); + } +}else if (customLayout !== ""){ + window.location.replace(l.protocol + "//" + window.location.host+"/theme.html"+ l.search + l.hash); +} + + +Utils.DisableLongPresses() +document.getElementById("decoration-desktop").remove(); +new AllThemesGui(); \ No newline at end of file diff --git a/assets/layers/address/address.json b/assets/layers/address/address.json index 273218b05c..d26452cd8c 100644 --- a/assets/layers/address/address.json +++ b/assets/layers/address/address.json @@ -3,15 +3,18 @@ "name": { "en": "Known addresses in OSM", "de": "Bekannte Adressen in OSM", - "zh_Hant": "OSM 上已知的地址" + "zh_Hant": "OSM 上已知的地址", + "hu": "Ismert címek az OSM-en", + "nl": "Bekende adressen in OSM", + "fr": "Adresses connues d’OpenStreetMap", + "ru": "Известные адреса в OSM" }, "minzoom": 18, "source": { "osmTags": { "or": [ "addr:housenumber~*", - "addr:street~*", - "ref:inspireid~*" + "addr:street~*" ] } }, @@ -24,7 +27,12 @@ "title": { "render": { "en": "Known address", - "de": "Bekannte Adresse" + "de": "Bekannte Adresse", + "hu": "Ismert cím", + "nl": "Bekend adres", + "fr": "Adresse connue", + "pl": "Znany adres", + "ru": "Известный адрес" } }, "description": { @@ -32,7 +40,10 @@ "nl": "Adressen", "de": "Adressen", "ru": "Адреса", - "zh_Hant": "地址" + "zh_Hant": "地址", + "hu": "Címek", + "fr": "Adresses", + "pl": "Adresy" }, "tagRenderings": [ { @@ -40,11 +51,20 @@ "render": { "en": "The housenumber is {addr:housenumber}", "nl": "Het huisnummer is {addr:housenumber}", - "de": "Die Hausnummer ist {addr:housenumber}" + "de": "Die Hausnummer ist {addr:housenumber}", + "hu": "A házszám: {addr:housenumber}", + "fr": "Son numéro est le {addr:housenumber}", + "pl": "Numer tego domu to {addr:housenumber}", + "ru": "Номер дома {addr:housenumber}" }, "question": { "en": "What is the number of this house?", - "de": "Wie lautet die Nummer dieses Hauses?" + "de": "Wie lautet die Nummer dieses Hauses?", + "hu": "Mi ennek az épületnek a házszáma?", + "nl": "Wat is het huisnummer van dit huis?", + "fr": "Quel est le numéro de ce bâtiment ?", + "pl": "Jaki jest numer tego domu?", + "ru": "Какой номер у этого дома?" }, "freeform": { "key": "addr:housenumber", @@ -62,7 +82,11 @@ "then": { "en": "This building has no house number", "nl": "Dit gebouw heeft geen huisnummer", - "de": "Dieses Gebäude hat keine Hausnummer" + "de": "Dieses Gebäude hat keine Hausnummer", + "hu": "Ennek az épületnek nincs házszáma", + "fr": "Ce bâtiment n’a pas de numéro", + "pl": "Ten budynek nie ma numeru", + "ru": "У этого здания нет номера" } } ] @@ -71,11 +95,20 @@ "id": "street", "render": { "en": "This address is in street {addr:street}", - "de": "Diese Adresse befindet sich in der Straße {addr:street}" + "de": "Diese Adresse befindet sich in der Straße {addr:street}", + "hu": "Ez a cím a következő utcában van: {addr:street}", + "nl": "Dit adres bevindt zich in de straat {addr:street}", + "fr": "Le nom de la voie est {addr:street}", + "pl": "Ten adres znajduje się na ulicy {addr:street}" }, "question": { "en": "What street is this address located in?", - "de": "In welcher Straße befindet sich diese Adresse?" + "de": "In welcher Straße befindet sich diese Adresse?", + "hu": "Melyik utcában található ez a cím?", + "nl": "In welke straat bevindt dit adres zich?", + "fr": "Dans quelle rue est située l’adresse ?", + "pl": "Na jakiej ulicy znajduje się ten adres?", + "ru": "Какая эта улица?" }, "freeform": { "key": "addr:street" @@ -109,7 +142,10 @@ "question": { "en": "What should be fixed here? Please explain", "zh_Hant": "這裡需要修什麼?請直接解釋", - "de": "Was sollte hier korrigiert werden? Bitte erläutern" + "de": "Was sollte hier korrigiert werden? Bitte erläutern", + "hu": "Mit kellene itt kijavítani? Légy szíves, magyarázd el", + "fr": "Précisez ce qui devrait être corrigé ici", + "pl": "Co wymaga naprawy? Proszę wytłumaczyć" }, "freeform": { "key": "fixme" diff --git a/assets/layers/address/housenumber_blank.svg b/assets/layers/address/housenumber_blank.svg index 403b819d66..9fe6b0f6a4 100644 --- a/assets/layers/address/housenumber_blank.svg +++ b/assets/layers/address/housenumber_blank.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/ambulancestation/ambulancestation.json b/assets/layers/ambulancestation/ambulancestation.json index b16248c1f6..79ffd401e8 100644 --- a/assets/layers/ambulancestation/ambulancestation.json +++ b/assets/layers/ambulancestation/ambulancestation.json @@ -6,7 +6,8 @@ "ru": "Карта станций скорой помощи", "fr": "Couche des ambulances", "de": "Karte der Rettungswachen", - "it": "Carta delle stazioni delle ambulanze" + "it": "Carta delle stazioni delle ambulanze", + "hu": "Mentőállomás-térkép" }, "minzoom": 12, "source": { @@ -23,7 +24,8 @@ "ja": "救急ステーション", "fr": "Station d’ambulances", "de": "Rettungswache", - "it": "Stazione delle ambulanze" + "it": "Stazione delle ambulanze", + "hu": "Mentőállomás" } }, "description": { @@ -31,7 +33,9 @@ "ja": "救急ステーションは、救急車、医療機器、個人用保護具、およびその他の医療用品を保管する場所です。", "fr": "Une station d’ambulance est un lieu où sont stockés les véhicules d’urgence ainsi que de l’équipement médical.", "de": "Eine Rettungswache ist ein Ort, an dem Rettungsfahrzeuge, medizinische Ausrüstung, persönliche Schutzausrüstung und anderes medizinisches Material untergebracht sind.", - "it": "La stazione delle ambulanze è un’area per lo stoccaggio delle ambulanze, dell’equipaggiamento medico, dei dispositivi di protezione individuale e di altre forniture medicali." + "it": "La stazione delle ambulanze è un’area per lo stoccaggio delle ambulanze, dell’equipaggiamento medico, dei dispositivi di protezione individuale e di altre forniture medicali.", + "hu": "A mentőállomás olyan terület, ahol mentőautókat, orvosi felszereléseket, egyéni védőfelszereléseket és egyéb orvosi felszereléseket tárolnak.", + "ru": "Станция скорой помощи это полигон для хранения транспорта, медицинского оборудования, средств индивидуальной защиты и других медицинских принадлежностей." }, "tagRenderings": [ { @@ -45,7 +49,8 @@ "ru": "Как называется эта станция скорой помощи?", "fr": "Quel est le nom de cette station ?", "it": "Qual è il nome di questa stazione delle ambulanze?", - "de": "Wie heißt diese Rettungswache?" + "de": "Wie heißt diese Rettungswache?", + "hu": "Mi a neve ennek a menőtállomásnak?" }, "render": { "en": "This station is called {name}.", @@ -53,7 +58,8 @@ "ru": "Эта станция называется {name}.", "fr": "Cette station s’appelle {name}.", "it": "Questa stazione è chiamata {name}.", - "de": "Diese Rettungswache heißt {name}." + "de": "Diese Rettungswache heißt {name}.", + "hu": "A mentőállomás neve: {name}." } }, { @@ -67,7 +73,8 @@ "ru": " По какому адресу расположена эта станция?", "fr": " Quel est le nom de la rue où la station se situe ?", "it": " Come si chiama la strada in cui si trova questa stazione?", - "de": " Wie lautet der Name der Straße, in der sich die Rettungswache befindet?" + "de": " Wie lautet der Name der Straße, in der sich die Rettungswache befindet?", + "hu": " Mi a neve annak az utcának, amelyben az állomás található?" }, "render": { "en": "This station is along a highway called {addr:street}.", @@ -75,7 +82,8 @@ "ru": "Эта станция расположена вдоль шоссе {addr:street}.", "fr": "La station fait partie de {addr:street}.", "it": "Questa stazione si trova in {addr:street}.", - "de": "Dieser Bahnhof liegt an der Straße {addr:street}." + "de": "Dieser Bahnhof liegt an der Straße {addr:street}.", + "hu": "Ez az állomás a következő utcában van: {addr:street}." } }, { @@ -86,7 +94,8 @@ "ru": "Где расположена станция? (напр., название населённого пункта)", "fr": "Dans quelle localité la station est-elle située ?", "it": "Dove si trova la stazione? (ad es. quartiere, paese o città)", - "de": "Wo befindet sich die Rettungswache? (z. B. Name von Stadtviertel, Dorf oder Stadt)" + "de": "Wo befindet sich die Rettungswache? (z. B. Name von Stadtviertel, Dorf oder Stadt)", + "hu": "Hol található az állomás? (Pl. a falu, kisváros vagy városrész neve.)" }, "freeform": { "key": "addr:place" @@ -96,7 +105,8 @@ "ja": "このステーションは{addr:place}にあります。", "fr": "La station fait partie de {addr:place}.", "it": "La stazione si trova a {addr:place}.", - "de": "Diese Rettungswache befindet sich in {addr:place}." + "de": "Diese Rettungswache befindet sich in {addr:place}.", + "hu": "Ez az állomás itt található: {addr:place}." } }, { @@ -106,14 +116,18 @@ "ja": "このステーションを運営しているのはどこですか?", "fr": "Quel est l’exploitant de la station ?", "it": "Quale agenzia gestisce questa stazione?", - "de": "Welches Unternehmen betreibt diese Rettungswache?" + "de": "Welches Unternehmen betreibt diese Rettungswache?", + "hu": "Milyen szervezet működteti ezt az állomást?", + "ru": "Какая организация управляет этой станцией?" }, "render": { "en": "This station is operated by {operator}.", "ja": "このステーションは{operator}によって運営されています。", "fr": "Cette station est opérée par {operator}.", "it": "Questa stazione è gestita da {operator}.", - "de": "Diese Rettungswache wird betrieben von {operator}." + "de": "Diese Rettungswache wird betrieben von {operator}.", + "hu": "Az állomás üzemeltetője: {operator}.", + "ru": "Эта станция управляется {operator}." }, "freeform": { "key": "operator" @@ -127,14 +141,16 @@ "ja": "ステーションの運営の分類は?", "fr": "Quel est le type d’exploitant ?", "it": "Com’è classificato il gestore della stazione?", - "de": "Wie kann der Betreiber der Rettungswache eingestuft werden?" + "de": "Wie kann der Betreiber der Rettungswache eingestuft werden?", + "hu": "Hogyan sorolható be az állomás üzemeltetője?" }, "render": { "en": "The operator is a(n) {operator:type} entity.", "ja": "運営者は、{operator:type} です。", "fr": "L’exploitant est de type {operator:type}.", "it": "L’operatore è un ente {operator:type}.", - "de": "Der Betreiber ist eine {operator:type}." + "de": "Der Betreiber ist eine {operator:type}.", + "hu": "Az üzemeltető egy {operator:type} jellegű szervezet." }, "freeform": { "key": "operator:type" @@ -151,7 +167,9 @@ "ja": "ステーションは自治体が運営する。", "fr": "La station est opérée par le gouvernement.", "it": "La stazione è gestita dal governo.", - "de": "Die Rettungswache wird von einer Behörde betrieben." + "de": "Die Rettungswache wird von einer Behörde betrieben.", + "hu": "A mentőállomást a kormány üzemelteti.", + "ru": "Станция управляется правительством." } }, { @@ -165,7 +183,9 @@ "ja": "任意団体やコミュニティが運営しているステーションである。", "fr": "La station est opérée par une organisation informelle.", "it": "La stazione è gestita dalla comunità o un’organizzazione non ufficiale.", - "de": "Die Rettungswache wird von einer gemeindenahen oder informellen Organisation betrieben." + "de": "Die Rettungswache wird von einer gemeindenahen oder informellen Organisation betrieben.", + "hu": "Mentőállomást egy közösségi vagy nem hivatalos szervezet működteti.", + "ru": "Станция управляется волонтёрами или частной организацией." } }, { @@ -179,7 +199,8 @@ "ja": "公益団体が運営しているステーションである。", "fr": "La station est opérée par un groupe officiel de bénévoles.", "it": "La stazione è gestita da un gruppo ufficiale di volontari.", - "de": "Die Rettungswache wird von einer Freiwilligenorganisation betrieben." + "de": "Die Rettungswache wird von einer Freiwilligenorganisation betrieben.", + "hu": "A mentőállomást egy önkéntesekből álló hivatalos csoport működteti." } }, { @@ -193,7 +214,8 @@ "ja": "個人が運営しているステーションである。", "fr": "La station est opérée par un groupe privé.", "it": "La stazione è gestita da un privato.", - "de": "Die Rettungswache wird von einer privaten Organisation betrieben." + "de": "Die Rettungswache wird von einer privaten Organisation betrieben.", + "hu": "Az állomást egy magánkézben lévő szervezet működteti." } } ] @@ -211,7 +233,8 @@ "ja": "救急ステーション(消防署)", "fr": "Station d’ambulances", "de": "Rettungswache", - "it": "Stazione delle ambulanze" + "it": "Stazione delle ambulanze", + "hu": "Mentőállomás" }, "description": { "en": "Add an ambulance station to the map", @@ -219,7 +242,8 @@ "ru": "Добавить станцию скорой помощи на карту", "fr": "Ajouter une station d’ambulances à la carte", "de": "Eine Rettungsstation der Karte hinzufügen", - "it": "Aggiungi una stazione delle ambulanza alla mappa" + "it": "Aggiungi una stazione delle ambulanza alla mappa", + "hu": "Mentőállomás hozzáadása a térképhez" } } ], diff --git a/assets/layers/artwork/artwork.json b/assets/layers/artwork/artwork.json index 35c7af8cd4..ae391d1a20 100644 --- a/assets/layers/artwork/artwork.json +++ b/assets/layers/artwork/artwork.json @@ -12,7 +12,9 @@ "ja": "美術品", "zh_Hant": "藝術品", "nb_NO": "Kunstverk", - "pt": "Obras de arte" + "pt": "Obras de arte", + "hu": "Műalkotások", + "pl": "Dzieła sztuki" }, "source": { "osmTags": "tourism=artwork" @@ -75,7 +77,8 @@ "ja": "多様な作品", "zh_Hant": "不同類型的藝術品", "id": "Beragam karya seni", - "pt": "Diversas obras de arte" + "pt": "Diversas obras de arte", + "hu": "Különféle műalkotások" }, "minzoom": 12, "presets": [ @@ -120,7 +123,9 @@ "zh_Hant": "這是 {artwork_type}", "nb_NO": "Dette er et kunstverk av typen {artwork_type}", "id": "Ini adalah {artwork_type}", - "pt": "Isto é um(a) {artwork_type}" + "pt": "Isto é um(a) {artwork_type}", + "hu": "Ez egy {artwork_type}", + "pl": "Jest to {artwork_type}" }, "question": { "en": "What is the type of this artwork?", @@ -134,7 +139,9 @@ "zh_Hant": "這是什麼類型的藝術品?", "nb_NO": "Hvilken type kunstverk er dette?", "id": "Apa jenis karya seni ini?", - "pt": "Qual é o tipo desta obra de arte?" + "pt": "Qual é o tipo desta obra de arte?", + "hu": "Milyen fajta műalkotás ez?", + "pl": "Jakiego rodzaju jest to dzieło sztuki?" }, "freeform": { "key": "artwork_type", @@ -156,7 +163,9 @@ "zh_Hant": "建築物", "nb_NO": "Arkitektur", "id": "Arsitektur", - "pt": "Arquitetura" + "pt": "Arquitetura", + "hu": "Építészet", + "pl": "Architektura" } }, { @@ -172,7 +181,9 @@ "zh_Hant": "壁畫", "nb_NO": "Veggmaleri", "id": "Mural", - "pt": "Mural" + "pt": "Mural", + "hu": "Falfestmény", + "pl": "Mural" } }, { @@ -188,7 +199,9 @@ "zh_Hant": "繪畫", "nb_NO": "Maleri", "id": "Lukisan", - "pt": "Pintura" + "pt": "Pintura", + "hu": "Festmény", + "pl": "Obraz" } }, { @@ -204,7 +217,9 @@ "zh_Hant": "雕塑", "nb_NO": "Skulptur", "id": "Patung", - "pt": "Escultura" + "pt": "Escultura", + "hu": "Absztrakt szobor", + "pl": "Rzeźba" } }, { @@ -219,7 +234,9 @@ "ja": "彫像", "zh_Hant": "雕像", "nb_NO": "Statue", - "pt": "Estátua" + "pt": "Estátua", + "hu": "Szobor", + "pl": "Posąg" } }, { @@ -234,7 +251,9 @@ "ja": "胸像", "zh_Hant": "半身像", "nb_NO": "Byste", - "pt": "Busto" + "pt": "Busto", + "hu": "Mellszobor", + "pl": "Popiersie" } }, { @@ -250,7 +269,9 @@ "zh_Hant": "石頭", "nb_NO": "Stein", "id": "Batu", - "pt": "Pedra" + "pt": "Pedra", + "hu": "Kő", + "pl": "Skała" } }, { @@ -266,7 +287,9 @@ "zh_Hant": "安裝", "nb_NO": "Installasjon", "id": "Instalasi", - "pt": "Instalação" + "pt": "Instalação", + "hu": "Installáció", + "pl": "Instalacja artystyczna" } }, { @@ -282,7 +305,9 @@ "zh_Hant": "塗鴨", "nb_NO": "Graffiti", "id": "Graffiti", - "pt": "Graffiti" + "pt": "Graffiti", + "hu": "Graffiti", + "pl": "Graffiti" } }, { @@ -298,7 +323,9 @@ "zh_Hant": "寬慰", "nb_NO": "Relieff", "id": "Relief", - "pt": "Relevo" + "pt": "Relevo", + "hu": "Dombormű", + "pl": "Płaskorzeźba" } }, { @@ -314,7 +341,9 @@ "zh_Hant": "Azulejo (西班牙雕塑作品名稱)", "nb_NO": "Azulejo (Spansk dekorativt flisverk)", "id": "Azulejo (ubin dekoratif Spanyol)", - "pt": "Azulejo (azulejo decorativo espanhol e português)" + "pt": "Azulejo (azulejo decorativo espanhol e português)", + "hu": "Azulejo (portugál vagy spanyol dekoratív csempe)", + "pl": "Azulejo (hiszpańskie płytka dekoracyjna)" } }, { @@ -329,7 +358,9 @@ "ja": "タイルワーク", "zh_Hant": "瓷磚", "nb_NO": "Flisarbeid", - "pt": "Ladrilhos" + "pt": "Ladrilhos", + "hu": "Csempe", + "pl": "Płyta ceramiczna (fliza)" } } ], @@ -347,7 +378,9 @@ "zh_Hant": "創造這個的藝術家是誰?", "nb_NO": "Hvilken artist lagde dette?", "id": "Seniman mana yang menciptakan ini?", - "pt": "Que artista criou isto?" + "pt": "Que artista criou isto?", + "hu": "Melyik művész alkotása ezt?", + "pl": "Który artysta to stworzył?" }, "render": { "en": "Created by {artist_name}", @@ -360,7 +393,9 @@ "zh_Hant": "{artist_name} 創作", "nb_NO": "Laget av {artist_name}", "id": "Dibuat oleh {artist_name}", - "pt": "Criado por {artist_name}" + "pt": "Criado por {artist_name}", + "hu": "Alkotó: {artist_name}", + "pl": "Stworzone przez {artist_name}" }, "freeform": { "key": "artist_name" @@ -379,7 +414,9 @@ "zh_Hant": "在那個網站能夠找到更多藝術品的資訊?", "nb_NO": "Finnes det en nettside med mer info om dette kunstverket?", "id": "Adakah situs web mengenai informasi lebih lanjut tentang karya seni ini?", - "pt": "Existe um site com mais informações sobre esta obra de arte?" + "pt": "Existe um site com mais informações sobre esta obra de arte?", + "hu": "Van-e olyan honlap, amely további információkat tartalmaz erről a műalkotásról?", + "pl": "Gdzie znajdę więcej informacji na temat tego dzieła sztuki?" }, "render": { "en": "More information on this website", @@ -392,7 +429,9 @@ "ja": "Webサイトに詳細情報がある", "zh_Hant": "這個網站有更多資訊", "nb_NO": "Mer info er å finne på denne nettsiden", - "pt": "Mais informações neste site" + "pt": "Mais informações neste site", + "hu": "További információ ezen a weboldalon", + "pl": "Więcej informacji na tej stronie" }, "freeform": { "key": "website", @@ -412,7 +451,8 @@ "zh_Hant": "這個藝術品有那個對應的 Wikidata 項目?", "nb_NO": "Hvilken Wikipedia-oppføring samsvarer med dette kunstverket?", "id": "Entri Wikidata mana yang sesuai dengan karya seni ini?", - "pt": "Que entrada no Wikidata corresponde a esta obra de arte?" + "pt": "Que entrada no Wikidata corresponde a esta obra de arte?", + "hu": "Melyik Wikidata-bejegyzés felel meg ennek a műalkotásnak?" }, "render": { "en": "Corresponds with {wikidata}", @@ -425,7 +465,8 @@ "zh_Hant": "與 {wikidata}對應", "nb_NO": "Samsvarer med {wikidata}", "id": "Sesuai dengan {wikidata}", - "pt": "Corresponde a {wikidata}" + "pt": "Corresponde a {wikidata}", + "hu": "Ez a megfelelő: {wikidata}" }, "freeform": { "key": "wikidata", diff --git a/assets/layers/barrier/barrier.json b/assets/layers/barrier/barrier.json index eb2ba836b2..6fa4a0cc8f 100644 --- a/assets/layers/barrier/barrier.json +++ b/assets/layers/barrier/barrier.json @@ -4,12 +4,16 @@ "en": "Barriers", "nl": "Barrières", "de": "Hindernisse", - "ru": "Препятствия" + "ru": "Препятствия", + "hu": "Akadályok", + "fr": "Barrières" }, "description": { "en": "Obstacles while cycling, such as bollards and cycle barriers", "nl": "Hindernissen tijdens het fietsen, zoals paaltjes en fietshekjes", - "de": "Hindernisse beim Fahrradfahren, wie zum Beispiel Poller und Fahrrad Barrieren" + "de": "Hindernisse beim Fahrradfahren, wie zum Beispiel Poller und Fahrrad Barrieren", + "hu": "Kerékpározás közbeni akadályok, például terelőoszlopok és kerékpárakadályok", + "fr": "Obstacles à vélo, tels que des potelets ou des barrières" }, "source": { "osmTags": { @@ -25,7 +29,8 @@ "en": "Barrier", "nl": "Barrière", "de": "Hindernis", - "ru": "Препятствие" + "ru": "Препятствие", + "fr": "Barrière" }, "mappings": [ { @@ -43,7 +48,8 @@ "then": { "en": "Cycling Barrier", "nl": "Fietshekjes", - "de": "Barriere für Radfahrer" + "de": "Barriere für Radfahrer", + "fr": "Barrière cyclable" } } ] @@ -55,7 +61,8 @@ "nl": "Paaltje", "de": "Poller", "ru": "Прикол", - "fr": "Bollard" + "fr": "Bollard", + "hu": "Terelőoszlop" }, "tags": [ "barrier=bollard" @@ -63,7 +70,9 @@ "description": { "en": "A bollard in the road", "nl": "Een paaltje in de weg", - "de": "Ein Poller auf der Straße" + "de": "Ein Poller auf der Straße", + "hu": "Terelőoszlop az úton", + "fr": "Un potelet sur le chemin" }, "preciseInput": { "preferredBackground": [ @@ -77,7 +86,9 @@ "title": { "en": "Cycle barrier", "nl": "Fietshekjes", - "de": "Fahrradhindernis" + "de": "Fahrradhindernis", + "hu": "Kerékpárakadály", + "fr": "Barrière cyclable" }, "tags": [ "barrier=cycle_barrier" @@ -85,7 +96,9 @@ "description": { "en": "Cycle barrier, slowing down cyclists", "nl": "Fietshekjes, voor het afremmen van fietsers", - "de": "Fahrradhindernis, das Radfahrer abbremst" + "de": "Fahrradhindernis, das Radfahrer abbremst", + "hu": "A kerékpáros sebességét csökkentő kerékpárakadály", + "fr": "Barrières cyclables, ralentissant les cyclistes" }, "preciseInput": { "preferredBackground": [ @@ -101,7 +114,8 @@ "question": { "en": "Can a bicycle go past this barrier?", "nl": "Kan een fietser langs deze barrière?", - "de": "Kann ein Radfahrer das Hindernis passieren?" + "de": "Kann ein Radfahrer das Hindernis passieren?", + "hu": "Át lehet-e menni rajta kerékpárral?" }, "mappings": [ { @@ -110,7 +124,8 @@ "en": "A cyclist can go past this.", "nl": "Een fietser kan hier langs.", "de": "Ein Radfahrer kann hindurchfahren.", - "fr": "Un cycliste peut franchir ceci." + "fr": "Un cycliste peut franchir ceci.", + "hu": "Kerékpárral át lehet hajtani." } }, { @@ -119,7 +134,8 @@ "en": "A cyclist can not go past this.", "nl": "Een fietser kan hier niet langs.", "de": "Ein Radfahrer kann nicht hindurchfahren.", - "fr": "Un cycliste ne peut pas franchir ceci." + "fr": "Un cycliste ne peut pas franchir ceci.", + "hu": "Kerékpárral nem lehet áthajtani." } } ], @@ -131,14 +147,17 @@ { "if": "barrier=bollard", "then": { - "en": "This is a single bollard in the road" + "en": "This is a single bollard in the road", + "hu": "Ez egyetlen oszlop az úton", + "nl": "Dit is een enkel paaltje in de weg" } }, { "if": "barrier=cycle_barrier", "then": { "en": "This is a cycle barrier slowing down cyclists", - "nl": "Dit zijn fietshekjes die fietsers afremmen" + "nl": "Dit zijn fietshekjes die fietsers afremmen", + "hu": "Ez egy kerékpárakadály, amely lelassítja a kerékpárosokat" } } ] @@ -148,7 +167,8 @@ "en": "What kind of bollard is this?", "nl": "Wat voor soort paal is dit?", "de": "Um was für einen Poller handelt es sich?", - "fr": "Quel est le type de bollard (borne) ?" + "fr": "Quel est le type de bollard (borne) ?", + "hu": "Milyen fajta terelőoszlop ez?" }, "condition": "barrier=bollard", "mappings": [ @@ -158,7 +178,8 @@ "en": "Removable bollard", "nl": "Verwijderbare paal", "de": "Entfernbarer Poller", - "fr": "Bollard amovible" + "fr": "Bollard amovible", + "hu": "Eltávolítható terelőoszlop" } }, { @@ -167,7 +188,8 @@ "en": "Fixed bollard", "nl": "Vaste paal", "de": "Feststehender Poller", - "fr": "Bollard fixe" + "fr": "Bollard fixe", + "hu": "Rögzített terelőoszlop" } }, { @@ -176,7 +198,8 @@ "en": "Bollard that can be folded down", "nl": "Paal die platgevouwen kan worden", "de": "Umlegbarer Poller", - "fr": "Bollard qui peut être couché" + "fr": "Bollard qui peut être couché", + "hu": "Lehajtható terelőoszlop" } }, { @@ -185,7 +208,8 @@ "en": "Flexible bollard, usually plastic", "nl": "Flexibele paal, meestal plastic", "de": "Flexibler Poller, meist aus Kunststoff", - "fr": "Bollard flexible, généralement en plastique" + "fr": "Bollard flexible, généralement en plastique", + "hu": "Rugalmas (általában műanyag) terelőoszlop" } }, { @@ -194,7 +218,8 @@ "en": "Rising bollard", "nl": "Verzonken poller", "de": "Ausfahrender Poller", - "fr": "Bollard rétractable" + "fr": "Bollard rétractable", + "hu": "Felemelkedő terelőoszlop" } } ], @@ -204,40 +229,50 @@ "question": { "en": "What kind of cycling barrier is this?", "nl": "Wat voor fietshekjes zijn dit?", - "de": "Um welche Art Fahrradhindernis handelt es sich?" + "de": "Um welche Art Fahrradhindernis handelt es sich?", + "hu": "Milyen fajta kerékpárakadály ez?", + "fr": "Quel est ce type de barrière cyclable ?" }, "condition": "barrier=cycle_barrier", "mappings": [ { - "if": "cycle_barrier:type=single", + "if": "cycle_barrier=single", "then": { "en": "Single, just two barriers with a space inbetween ", "nl": "Enkelvoudig, slechts twee hekjes met ruimte ertussen ", - "de": "Einfach, nur zwei Barrieren mit einem Zwischenraum " + "de": "Einfach, nur zwei Barrieren mit einem Zwischenraum ", + "hu": "Egyszeres: csak két korlát, közöttük térköz ", + "fr": "Simple, deux barrières côte à côte " } }, { - "if": "cycle_barrier:type=double", + "if": "cycle_barrier=double", "then": { "en": "Double, two barriers behind each other ", "nl": "Dubbel, twee hekjes achter elkaar ", - "de": "Doppelt, zwei Barrieren hintereinander " + "de": "Doppelt, zwei Barrieren hintereinander ", + "hu": "Kétszeres: két, egymáshoz képest eltolt korlát egymás után ", + "fr": "Double, deux barrières successives" } }, { - "if": "cycle_barrier:type=triple", + "if": "cycle_barrier=triple", "then": { "en": "Triple, three barriers behind each other ", "nl": "Drievoudig, drie hekjes achter elkaar ", - "de": "Dreifach, drei Barrieren hintereinander " + "de": "Dreifach, drei Barrieren hintereinander ", + "hu": "Háromszoros: három, egymáshoz képest eltolt korlát egymás után ", + "fr": "Triple, trois barrières successives " } }, { - "if": "cycle_barrier:type=squeeze", + "if": "cycle_barrier=squeeze", "then": { "en": "Squeeze gate, gap is smaller at top, than at the bottom ", "nl": "Knijppoort, ruimte is smaller aan de top, dan aan de bodem ", - "de": "Eine Durchfahrtsbeschränkung, Durchfahrtsbreite ist oben kleiner als unten " + "de": "Eine Durchfahrtsbeschränkung, Durchfahrtsbreite ist oben kleiner als unten ", + "hu": "Szűkítőkapu: a rés felül keskenyebb, mint alul ", + "fr": "Poire, l’espace en hauteur est plus faible qu’au sol " } } ], @@ -248,17 +283,20 @@ "en": "Maximum width: {maxwidth:physical} m", "nl": "Maximumbreedte: {maxwidth:physical} m", "de": "Maximale Durchfahrtsbreite: {maxwidth:physical} m", - "fr": "Largeur maximale: {maxwidth:physical} m" + "fr": "Largeur maximale: {maxwidth:physical} m", + "hu": "Legnagyobb szélesség: {maxwidth:physical} m" }, "question": { "en": "How wide is the gap left over besides the barrier?", "nl": "Hoe breed is de ruimte naast de barrière?", - "de": "Welche Durchfahrtsbreite hat das Hindernis?" + "de": "Welche Durchfahrtsbreite hat das Hindernis?", + "hu": "Milyen széles az akadályon az a rés, amelyen át lehet haladni?", + "fr": "Quelle est la largeur du passage ?" }, "condition": { "and": [ - "cycle_barrier:type!=double", - "cycle_barrier:type!=triple" + "cycle_barrier!=double", + "cycle_barrier!=triple" ] }, "freeform": { @@ -275,17 +313,21 @@ "render": { "en": "Space between barriers (along the length of the road): {width:separation} m", "nl": "Ruimte tussen barrières (langs de lengte van de weg): {width:separation} m", - "de": "Abstand zwischen den Barrieren (entlang der Straße): {width:separation} m" + "de": "Abstand zwischen den Barrieren (entlang der Straße): {width:separation} m", + "hu": "A korlátok közötti távolság (az út irányában): {width:separation} m", + "fr": "Espace entre deux barrières successives : {width:separation} m" }, "question": { "en": "How much space is there between the barriers (along the length of the road)?", "nl": "Hoeveel ruimte is er tussen de barrières (langs de lengte van de weg)?", - "de": "Wie groß ist der Abstand zwischen den Barrieren (entlang der Straße)?" + "de": "Wie groß ist der Abstand zwischen den Barrieren (entlang der Straße)?", + "hu": "Mekkora távolság van a korlátok között (az út irányában)?", + "fr": "Combien d’espace sépare deux barrières successives ?" }, "condition": { "or": [ - "cycle_barrier:type=double", - "cycle_barrier:type=triple" + "cycle_barrier=double", + "cycle_barrier=triple" ] }, "freeform": { @@ -303,17 +345,19 @@ "en": "Width of opening: {width:opening} m", "nl": "Breedte van de opening: {width:opening} m", "de": "Breite der Öffnung: {width:opening} m", - "fr": "Largeur de l'ouverture : {width:opening} m" + "fr": "Largeur de l'ouverture : {width:opening} m", + "hu": "Nyílás szélessége: {width:opening} m" }, "question": { "en": "How wide is the smallest opening next to the barriers?", "nl": "Hoe breed is de smalste opening naast de barrières?", - "de": "Wie breit ist die kleinste Öffnung neben den Barrieren?" + "de": "Wie breit ist die kleinste Öffnung neben den Barrieren?", + "hu": "Milyen széles a korlátok melletti legkisebb nyílás?" }, "condition": { "or": [ - "cycle_barrier:type=double", - "cycle_barrier:type=triple" + "cycle_barrier=double", + "cycle_barrier=triple" ] }, "freeform": { @@ -329,17 +373,21 @@ { "render": { "en": "Overlap: {overlap} m", - "de": "Überschneidung: {overlap} m" + "de": "Überschneidung: {overlap} m", + "hu": "Átfedés: {overlap} m", + "fr": "Chevauchement : {overlap} m" }, "question": { "en": "How much overlap do the barriers have?", "nl": "Hoeveel overlappen de barrières?", - "de": "Wie stark überschneiden sich die Barrieren?" + "de": "Wie stark überschneiden sich die Barrieren?", + "hu": "Mekkora a korlátok átfedése?", + "fr": "Quel est le chevauchement des barrières ?" }, "condition": { "or": [ - "cycle_barrier:type=double", - "cycle_barrier:type=triple" + "cycle_barrier=double", + "cycle_barrier=triple" ] }, "freeform": { diff --git a/assets/layers/barrier/barrier.svg b/assets/layers/barrier/barrier.svg index 479316583b..2ca9d9f0c0 100644 --- a/assets/layers/barrier/barrier.svg +++ b/assets/layers/barrier/barrier.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bench/bench.json b/assets/layers/bench/bench.json index 2f5e9dc3b6..0d88a0f893 100644 --- a/assets/layers/bench/bench.json +++ b/assets/layers/bench/bench.json @@ -54,7 +54,7 @@ "fr": "Dossier : Oui", "nl": "Heeft een rugleuning", "es": "Respaldo: Si", - "hu": "Háttámla: Igen", + "hu": "Háttámla van", "id": "Sandaran: Ya", "it": "Schienale: Sì", "ru": "Со спинкой", @@ -75,7 +75,7 @@ "fr": "Dossier : Non", "nl": "Rugleuning ontbreekt", "es": "Respaldo: No", - "hu": "Háttámla: Nem", + "hu": "Háttámla nincs", "id": "Sandaran: Tidak", "it": "Schienale: No", "ru": "Без спинки", @@ -95,7 +95,7 @@ "fr": "Ce banc dispose-t-il d'un dossier ?", "nl": "Heeft deze zitbank een rugleuning?", "es": "¿Este banco tiene un respaldo?", - "hu": "Van háttámlája ennek a padnak?", + "hu": "Van-e háttámlája ennek a padnak?", "id": "Apakah bangku ini memiliki sandaran?", "it": "Questa panchina ha lo schienale?", "ru": "Есть ли у этой скамейки спинка?", @@ -373,7 +373,7 @@ "de": "Welche Farbe hat diese Sitzbank?", "fr": "Quelle est la couleur de ce banc ?", "nl": "Welke kleur heeft deze zitbank?", - "hu": "Milyen színű a pad?", + "hu": "Milyen színű ez a pad?", "it": "Di che colore è questa panchina?", "ru": "Какого цвета скамейка?", "zh_Hans": "这个长椅是什么颜色的?", @@ -633,7 +633,7 @@ "mapRendering": [ { "icon": { - "render": "circle:#FE6F32;./assets/layers/bench/bench.svg" + "render": "./assets/layers/bench/bench.svg" }, "iconSize": { "render": "35,35,center" diff --git a/assets/layers/bench/bench.svg b/assets/layers/bench/bench.svg index a26380a4ba..8c02d12595 100644 --- a/assets/layers/bench/bench.svg +++ b/assets/layers/bench/bench.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bench_at_pt/bench_at_pt.json b/assets/layers/bench_at_pt/bench_at_pt.json index 9e574cc3a7..2131cbe0b8 100644 --- a/assets/layers/bench_at_pt/bench_at_pt.json +++ b/assets/layers/bench_at_pt/bench_at_pt.json @@ -128,7 +128,8 @@ "then": { "en": "There is a normal, sit-down bench here", "fr": "Il y a un banc normal pour s'asseoir ici", - "de": "Hier gibt es eine normale Sitzbank" + "de": "Hier gibt es eine normale Sitzbank", + "nl": "Er is hier een normale zitbank" } }, { @@ -149,7 +150,8 @@ "then": { "en": "There is no bench here", "fr": "Il n'y a pas de banc ici", - "de": "Hier gibt es keine Bank" + "de": "Hier gibt es keine Bank", + "nl": "Er is hier geen bank" } } ] diff --git a/assets/layers/bicycle_library/bicycle_library.svg b/assets/layers/bicycle_library/bicycle_library.svg index 3cf31e2915..d4330c7010 100644 --- a/assets/layers/bicycle_library/bicycle_library.svg +++ b/assets/layers/bicycle_library/bicycle_library.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json b/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json index 5027b90c35..f5e743672a 100644 --- a/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json +++ b/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json @@ -101,7 +101,7 @@ "en": "This vending machine works", "nl": "Deze verkoopsautomaat werkt", "fr": "Le distributeur automatique fonctionne", - "hu": "Az automata működik", + "hu": "Ez az automata működik", "it": "Il distributore automatico funziona", "ru": "Этот торговый автомат работает", "zh_Hans": "这个借还机正常工作", @@ -117,7 +117,7 @@ "en": "This vending machine is broken", "nl": "Deze verkoopsautomaat is kapot", "fr": "Le distributeur automatique est en panne", - "hu": "Az automata elromlott", + "hu": "Ez az automata elromlott", "it": "Il distributore automatico è guasto", "ru": "Этот торговый автомат сломан", "zh_Hans": "这个借还机已经损坏", @@ -133,7 +133,7 @@ "en": "This vending machine is closed", "nl": "Deze verkoopsautomaat is uitgeschakeld", "fr": "Le distributeur automatique est fermé", - "hu": "Az automata zárva van", + "hu": "Ez az automata zárva van", "it": "Il distributore automatico è spento", "ru": "Этот торговый автомат закрыт", "zh_Hans": "这个借还机被关闭了", diff --git a/assets/layers/bicycle_tube_vending_machine/pinIcon.svg b/assets/layers/bicycle_tube_vending_machine/pinIcon.svg index 0521b92605..6ebaa9e1ab 100644 --- a/assets/layers/bicycle_tube_vending_machine/pinIcon.svg +++ b/assets/layers/bicycle_tube_vending_machine/pinIcon.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bicycle_tube_vending_machine/tube.svg b/assets/layers/bicycle_tube_vending_machine/tube.svg index eac8be74e5..c39c1a856c 100644 --- a/assets/layers/bicycle_tube_vending_machine/tube.svg +++ b/assets/layers/bicycle_tube_vending_machine/tube.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_cleaning/bike_cleaning.svg b/assets/layers/bike_cleaning/bike_cleaning.svg index f140ee853a..81e2afeee5 100644 --- a/assets/layers/bike_cleaning/bike_cleaning.svg +++ b/assets/layers/bike_cleaning/bike_cleaning.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_cleaning/bike_cleaning_icon.svg b/assets/layers/bike_cleaning/bike_cleaning_icon.svg index 20e2b88050..7283c43589 100644 --- a/assets/layers/bike_cleaning/bike_cleaning_icon.svg +++ b/assets/layers/bike_cleaning/bike_cleaning_icon.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_parking/bike_parking.json b/assets/layers/bike_parking/bike_parking.json index 2ef6650e91..d98379b06a 100644 --- a/assets/layers/bike_parking/bike_parking.json +++ b/assets/layers/bike_parking/bike_parking.json @@ -6,7 +6,7 @@ "fr": "Parking à vélo", "gl": "Aparcadoiro de bicicletas", "de": "Fahrrad-Parkplätze", - "hu": "Kerékpáros parkoló", + "hu": "Kerékpártároló", "it": "Parcheggio bici", "zh_Hant": "單車停車場", "ru": "Велопарковка", @@ -30,7 +30,7 @@ "fr": "Parking à vélo", "gl": "Aparcadoiro de bicicletas", "de": "Fahrrad-Parkplätze", - "hu": "Kerékpáros parkoló", + "hu": "Kerékpártároló", "it": "Parcheggio bici", "zh_Hant": "單車停車場", "ru": "Велопарковка", @@ -50,7 +50,7 @@ "fr": "Parking à vélo", "gl": "Aparcadoiro de bicicletas", "de": "Fahrrad-Parkplätze", - "hu": "Kerékpáros parkoló", + "hu": "Kerékpártároló", "it": "Parcheggio bici", "zh_Hant": "單車停車場", "ru": "Велопарковка", @@ -68,7 +68,7 @@ "fr": "Quel type de parking à vélos est-ce ?", "gl": "Que tipo de aparcadoiro de bicicletas é?", "de": "Was ist die Art dieses Fahrrad-Parkplatzes?", - "hu": "Milyen típusú ez a kerékpáros parkoló?", + "hu": "Milyen típusú ez a kerékpártároló?", "it": "Di che tipo di parcheggio bici si tratta?", "ru": "К какому типу относится эта велопарковка?", "zh_Hant": "這是那種類型的單車停車場?", @@ -82,7 +82,7 @@ "fr": "Ceci est un parking à vélo de type {bicycle_parking}", "gl": "Este é un aparcadoiro de bicicletas do tipo: {bicycle_parking}", "de": "Dies ist ein Fahrrad-Parkplatz der Art: {bicycle_parking}", - "hu": "Ez egy {bicycle_parking} típusú kerékpáros parkoló", + "hu": "Ez egy {bicycle_parking} típusú kerékpártároló", "it": "È un parcheggio bici del tipo: {bicycle_parking}", "zh_Hant": "這個單車停車場的類型是:{bicycle_parking}", "ru": "Это велопарковка типа {bicycle_parking}", @@ -105,7 +105,7 @@ "fr": "Arceaux ", "gl": "De roda (Stands) ", "de": "Fahrradbügel ", - "hu": "\"U\" ", + "hu": "Korlát ", "it": "Archetti ", "zh_Hant": "單車架 " } @@ -118,7 +118,7 @@ "fr": "Pinces-roues ", "gl": "Aros ", "de": "Metallgestänge ", - "hu": "Kengyeles ", + "hu": "Kerékbefogó hurok ", "it": "Scolapiatti ", "zh_Hant": "車輪架/圓圈 " } @@ -298,7 +298,7 @@ "gl": "Este aparcadoiro está cuberto? Tamén escolle \"cuberto\" para aparcadoiros interiores.", "de": "Ist dieser Parkplatz überdacht? Wählen Sie auch \"überdacht\" für Innenparkplätze.", "fr": "Ce parking est-il couvert ? Sélectionnez aussi \"couvert\" pour les parkings en intérieur.", - "hu": "Fedett ez a parkoló? (Beltéri parkoló esetén is válaszd a \"fedett\" opciót.)", + "hu": "Fedett-e ez a parkoló? Beltéri parkolónál is válaszd a „fedett” opciót.", "it": "È un parcheggio coperto? Indicare “coperto” per parcheggi all’interno.", "zh_Hant": "這個停車場是否有車棚?如果是室內停車場也請選擇\"遮蔽\"。", "pt_BR": "Este estacionamento é coberto? Também selecione \"coberto\" para estacionamentos internos.", @@ -319,7 +319,7 @@ "gl": "Este aparcadoiro está cuberto (ten un teito)", "de": "Dieser Parkplatz ist überdacht (er hat ein Dach)", "fr": "Ce parking est couvert (il a un toit)", - "hu": "A parkoló fedett", + "hu": "Ez a parkoló fedett", "it": "È un parcheggio coperto (ha un tetto)", "zh_Hant": "這個停車場有遮蔽 (有屋頂)", "ru": "Это крытая парковка (есть крыша/навес)", @@ -335,7 +335,7 @@ "gl": "Este aparcadoiro non está cuberto", "de": "Dieser Parkplatz ist nicht überdacht", "fr": "Ce parking n'est pas couvert", - "hu": "A parkoló nem fedett", + "hu": "Ez a parkoló nem fedett", "it": "Non è un parcheggio coperto", "zh_Hant": "這個停車場沒有遮蔽", "ru": "Это открытая парковка", diff --git a/assets/layers/bike_parking/bollard.svg b/assets/layers/bike_parking/bollard.svg index 9c9f44e7e2..fea2ba923f 100644 --- a/assets/layers/bike_parking/bollard.svg +++ b/assets/layers/bike_parking/bollard.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_parking/handlebar_holder.svg b/assets/layers/bike_parking/handlebar_holder.svg index b2d376e2fc..2f2e080a46 100644 --- a/assets/layers/bike_parking/handlebar_holder.svg +++ b/assets/layers/bike_parking/handlebar_holder.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_parking/rack.svg b/assets/layers/bike_parking/rack.svg index a4a8b4f7a9..ee84be5f13 100644 --- a/assets/layers/bike_parking/rack.svg +++ b/assets/layers/bike_parking/rack.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_parking/shed.svg b/assets/layers/bike_parking/shed.svg index 381d8bcd13..5c3ec483e1 100644 --- a/assets/layers/bike_parking/shed.svg +++ b/assets/layers/bike_parking/shed.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_parking/staple.svg b/assets/layers/bike_parking/staple.svg index 31e6a9f3c7..deec75798d 100644 --- a/assets/layers/bike_parking/staple.svg +++ b/assets/layers/bike_parking/staple.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_parking/two_tier.svg b/assets/layers/bike_parking/two_tier.svg index 338edaed26..8a9923be4f 100644 --- a/assets/layers/bike_parking/two_tier.svg +++ b/assets/layers/bike_parking/two_tier.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_parking/wall_loops.svg b/assets/layers/bike_parking/wall_loops.svg index 9af6285530..fb7a6497e2 100644 --- a/assets/layers/bike_parking/wall_loops.svg +++ b/assets/layers/bike_parking/wall_loops.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_repair_station/bike_pump.svg b/assets/layers/bike_repair_station/bike_pump.svg index 1280333960..13ed4a20ac 100644 --- a/assets/layers/bike_repair_station/bike_pump.svg +++ b/assets/layers/bike_repair_station/bike_pump.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_repair_station/bike_repair_station.json b/assets/layers/bike_repair_station/bike_repair_station.json index e668507023..558456c486 100644 --- a/assets/layers/bike_repair_station/bike_repair_station.json +++ b/assets/layers/bike_repair_station/bike_repair_station.json @@ -771,6 +771,7 @@ } ], "description": { - "en": "A layer showing bicycle pumps and bicycle repair tool stands" + "en": "A layer showing bicycle pumps and bicycle repair tool stands", + "nl": "Deze laag toont fietspompen en herstelpunten voor fietsen" } } \ No newline at end of file diff --git a/assets/layers/bike_repair_station/broken_pump_2.svg b/assets/layers/bike_repair_station/broken_pump_2.svg index 873c5919e2..ce3f9b1c12 100644 --- a/assets/layers/bike_repair_station/broken_pump_2.svg +++ b/assets/layers/bike_repair_station/broken_pump_2.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/bike_themed_object/other_services.svg b/assets/layers/bike_themed_object/other_services.svg index 6c6242b0ee..4e0720beaf 100644 --- a/assets/layers/bike_themed_object/other_services.svg +++ b/assets/layers/bike_themed_object/other_services.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/binocular/telescope.svg b/assets/layers/binocular/telescope.svg index 72872cd083..3cf4a66bca 100644 --- a/assets/layers/binocular/telescope.svg +++ b/assets/layers/binocular/telescope.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/birdhide/birdhide.svg b/assets/layers/birdhide/birdhide.svg index a1b82a3c9e..6c653e19e5 100644 --- a/assets/layers/birdhide/birdhide.svg +++ b/assets/layers/birdhide/birdhide.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/birdhide/birdshelter.svg b/assets/layers/birdhide/birdshelter.svg index ce2e1b2853..442b9b00a5 100644 --- a/assets/layers/birdhide/birdshelter.svg +++ b/assets/layers/birdhide/birdshelter.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/cafe_pub/cafe.svg b/assets/layers/cafe_pub/cafe.svg index 8c5c3e4e1c..c71f9f0737 100644 --- a/assets/layers/cafe_pub/cafe.svg +++ b/assets/layers/cafe_pub/cafe.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/cafe_pub/cafe_pub.json b/assets/layers/cafe_pub/cafe_pub.json index 3ae4e64f53..4b3f30f205 100644 --- a/assets/layers/cafe_pub/cafe_pub.json +++ b/assets/layers/cafe_pub/cafe_pub.json @@ -5,7 +5,8 @@ "en": "Cafés and pubs", "de": "Cafés und Kneipen", "fr": "Cafés et pubs", - "zh_Hant": "咖啡廳與酒吧" + "zh_Hant": "咖啡廳與酒吧", + "hu": "Kávézók és kocsmák" }, "source": { "osmTags": { @@ -26,7 +27,8 @@ "en": "pub", "nl": "bruin cafe of kroeg", "de": "Kneipe", - "ru": "паб" + "ru": "паб", + "hu": "kocsma" }, "description": { "nl": "Dit is een bruin café of een kroeg waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk " @@ -43,7 +45,8 @@ "en": "bar", "nl": "bar", "de": "Bar", - "ru": "бар" + "ru": "бар", + "hu": "bár" }, "description": { "nl": "Dit is een bar waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek" @@ -60,7 +63,8 @@ "en": "cafe", "nl": "cafe", "de": "Café", - "ru": "кафе" + "ru": "кафе", + "hu": "kávézó" }, "description": { "nl": "Dit is een cafe - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen." @@ -97,13 +101,15 @@ "nl": "Wat is de naam van dit café?", "en": "What is the name of this pub?", "de": "Wie heißt diese Kneipe?", - "fr": "Quel est le nom de ce pub ?" + "fr": "Quel est le nom de ce pub ?", + "hu": "Mi a neve ennek a kocsmának?" }, "render": { "nl": "De naam van dit café is {name}", "en": "This pub is named {name}", "de": "Diese Kneipe heißt {name}", - "fr": "Ce pub se nomme {name}" + "fr": "Ce pub se nomme {name}", + "hu": "A kocsma neve: {name}" }, "freeform": { "key": "name" @@ -114,7 +120,8 @@ "question": { "en": "What kind of cafe is this", "nl": "Welk soort café is dit?", - "de": "Was ist das für ein Café" + "de": "Was ist das für ein Café", + "hu": "Milyen fajta kávézó ez?" }, "mappings": [ { @@ -169,7 +176,8 @@ "en": "Opened now", "nl": "Nu geopened", "de": "Jetzt geöffnet", - "fr": "Ouvert maintenant" + "fr": "Ouvert maintenant", + "hu": "Most nyitva van" }, "osmTags": "_isOpen=yes" } @@ -217,6 +225,7 @@ } ], "description": { - "en": "A layer showing cafés and pubs where one can gather around a drink. The layer asks for some relevant questions" + "en": "A layer showing cafés and pubs where one can gather around a drink. The layer asks for some relevant questions", + "hu": "Egy olyan réteg, amely kávézókat és kocsmákat jelenít meg, ahol össze lehet gyűlni egy ital köré. A réteg néhány lényeges kérdést tesz fel" } } \ No newline at end of file diff --git a/assets/layers/cafe_pub/pub.svg b/assets/layers/cafe_pub/pub.svg index d0716db50c..15b89b3fc5 100644 --- a/assets/layers/cafe_pub/pub.svg +++ b/assets/layers/cafe_pub/pub.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/CEE7_4F.svg b/assets/layers/charging_station/CEE7_4F.svg index 270a001087..942df3a3c7 100644 --- a/assets/layers/charging_station/CEE7_4F.svg +++ b/assets/layers/charging_station/CEE7_4F.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/Chademo_type4.svg b/assets/layers/charging_station/Chademo_type4.svg index ebf917992e..980ad164ed 100644 --- a/assets/layers/charging_station/Chademo_type4.svg +++ b/assets/layers/charging_station/Chademo_type4.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/Tesla-hpwc-model-s.svg b/assets/layers/charging_station/Tesla-hpwc-model-s.svg index 1b34894872..2959fca836 100644 --- a/assets/layers/charging_station/Tesla-hpwc-model-s.svg +++ b/assets/layers/charging_station/Tesla-hpwc-model-s.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/Type1_J1772.svg b/assets/layers/charging_station/Type1_J1772.svg index 66a9fdbcdd..b82ff6fad3 100644 --- a/assets/layers/charging_station/Type1_J1772.svg +++ b/assets/layers/charging_station/Type1_J1772.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/Type2_CCS.svg b/assets/layers/charging_station/Type2_CCS.svg index afd780e89e..6fac6d0b1e 100644 --- a/assets/layers/charging_station/Type2_CCS.svg +++ b/assets/layers/charging_station/Type2_CCS.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/Type2_socket.svg b/assets/layers/charging_station/Type2_socket.svg index d6702eaf42..bf583a767d 100644 --- a/assets/layers/charging_station/Type2_socket.svg +++ b/assets/layers/charging_station/Type2_socket.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/Type2_tethered.svg b/assets/layers/charging_station/Type2_tethered.svg index 29d80fc52f..bec4ba77b6 100644 --- a/assets/layers/charging_station/Type2_tethered.svg +++ b/assets/layers/charging_station/Type2_tethered.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/Type3c.svg b/assets/layers/charging_station/Type3c.svg index 7d8059a2d8..f881a6b076 100644 --- a/assets/layers/charging_station/Type3c.svg +++ b/assets/layers/charging_station/Type3c.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/TypeE.svg b/assets/layers/charging_station/TypeE.svg index 3444946870..b5548d49d9 100644 --- a/assets/layers/charging_station/TypeE.svg +++ b/assets/layers/charging_station/TypeE.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/bosch-3pin.svg b/assets/layers/charging_station/bosch-3pin.svg index a12e8a18c9..c5ae175e5b 100644 --- a/assets/layers/charging_station/bosch-3pin.svg +++ b/assets/layers/charging_station/bosch-3pin.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/bosch-5pin.svg b/assets/layers/charging_station/bosch-5pin.svg index 0a562e250e..7cb71f3199 100644 --- a/assets/layers/charging_station/bosch-5pin.svg +++ b/assets/layers/charging_station/bosch-5pin.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/under_construction.svg b/assets/layers/charging_station/under_construction.svg index bddd23d598..c9128cbecc 100644 --- a/assets/layers/charging_station/under_construction.svg +++ b/assets/layers/charging_station/under_construction.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/charging_station/usb_port.svg b/assets/layers/charging_station/usb_port.svg index b28e922abb..2b600c1754 100644 --- a/assets/layers/charging_station/usb_port.svg +++ b/assets/layers/charging_station/usb_port.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/crab_address/housenumber_blank.svg b/assets/layers/crab_address/housenumber_blank.svg index 71f278958f..206227d522 100644 --- a/assets/layers/crab_address/housenumber_blank.svg +++ b/assets/layers/crab_address/housenumber_blank.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/crossings/Belgian_road_sign_B22.svg b/assets/layers/crossings/Belgian_road_sign_B22.svg index 1bdeb9f3a4..e2d4fa1fb8 100644 --- a/assets/layers/crossings/Belgian_road_sign_B22.svg +++ b/assets/layers/crossings/Belgian_road_sign_B22.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/crossings/Belgian_road_sign_B23.svg b/assets/layers/crossings/Belgian_road_sign_B23.svg index cacfe41c5f..dd99779911 100644 --- a/assets/layers/crossings/Belgian_road_sign_B23.svg +++ b/assets/layers/crossings/Belgian_road_sign_B23.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/crossings/crossings.json b/assets/layers/crossings/crossings.json index 0de0f52f3c..2c1fb4b6a8 100644 --- a/assets/layers/crossings/crossings.json +++ b/assets/layers/crossings/crossings.json @@ -3,12 +3,14 @@ "name": { "en": "Crossings", "nl": "Oversteekplaatsen", - "de": "Kreuzungen" + "de": "Kreuzungen", + "fr": "Traversée" }, "description": { "en": "Crossings for pedestrians and cyclists", "nl": "Oversteekplaatsen voor voetgangers en fietsers", - "de": "Übergänge für Fußgänger und Radfahrer" + "de": "Übergänge für Fußgänger und Radfahrer", + "fr": "Traversée pour piétons et cyclistes" }, "source": { "osmTags": { @@ -23,7 +25,8 @@ "render": { "en": "Crossing", "nl": "Oversteekplaats", - "de": "Kreuzung" + "de": "Kreuzung", + "fr": "Traversée" }, "mappings": [ { @@ -32,7 +35,8 @@ "en": "Traffic signal", "nl": "Verkeerslicht", "ru": "Светофор", - "de": "Ampel" + "de": "Ampel", + "fr": "Feu de signalisation" } }, { @@ -40,7 +44,8 @@ "then": { "en": "Crossing with traffic signals", "nl": "Oversteektplaats met verkeerslichten", - "de": "Kreuzung mit Ampeln" + "de": "Kreuzung mit Ampeln", + "fr": "Traversée avec feu de signalisation" } } ] @@ -50,7 +55,8 @@ "title": { "en": "Crossing", "nl": "Oversteekplaats", - "de": "Kreuzung" + "de": "Kreuzung", + "fr": "Traversée" }, "tags": [ "highway=crossing" @@ -58,7 +64,8 @@ "description": { "en": "Crossing for pedestrians and/or cyclists", "nl": "Oversteekplaats voor voetgangers en/of fietsers", - "de": "Kreuzung für Fußgänger und/oder Radfahrer" + "de": "Kreuzung für Fußgänger und/oder Radfahrer", + "fr": "Traversée pour piétons et/ou cyclistes" }, "preciseInput": { "preferredBackground": [ @@ -73,7 +80,8 @@ "en": "Traffic signal", "nl": "Verkeerslicht", "ru": "Светофор", - "de": "Ampel" + "de": "Ampel", + "fr": "Feu de signalisation" }, "tags": [ "highway=traffic_signals" @@ -81,7 +89,8 @@ "description": { "en": "Traffic signal on a road", "nl": "Verkeerslicht op een weg", - "de": "Ampel an einer Straße" + "de": "Ampel an einer Straße", + "fr": "Feu de signalisation sur la voie" }, "preciseInput": { "preferredBackground": [ @@ -126,6 +135,13 @@ "de": "Zebrastreifen" }, "hideInAnswer": true + }, + { + "if": "crossing=unmarked", + "then": { + "en": "Crossing without crossing markings", + "nl": "Oversteekplaats zonder kruispuntmarkeringen" + } } ] }, diff --git a/assets/layers/crossings/pedestrian_crossing.svg b/assets/layers/crossings/pedestrian_crossing.svg index 8951d12a74..bfd5532088 100644 --- a/assets/layers/crossings/pedestrian_crossing.svg +++ b/assets/layers/crossings/pedestrian_crossing.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/crossings/traffic_lights.svg b/assets/layers/crossings/traffic_lights.svg index d86a65cdab..be2c64cc88 100644 --- a/assets/layers/crossings/traffic_lights.svg +++ b/assets/layers/crossings/traffic_lights.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/cycleways_and_roads/cycleways_and_roads.json b/assets/layers/cycleways_and_roads/cycleways_and_roads.json index ccc5f9dfee..e0812d68fe 100644 --- a/assets/layers/cycleways_and_roads/cycleways_and_roads.json +++ b/assets/layers/cycleways_and_roads/cycleways_and_roads.json @@ -3,7 +3,8 @@ "name": { "en": "Cycleways and roads", "nl": "Fietspaden, straten en wegen", - "de": "Radwege und Straßen" + "de": "Radwege und Straßen", + "fr": "Pistes cyclables et routes" }, "minzoom": 16, "source": { @@ -33,7 +34,8 @@ "en": "Cycleways", "nl": "Fietspaden", "de": "Radwege", - "ru": "Велосипедные дорожки" + "ru": "Велосипедные дорожки", + "fr": "Pistes cyclables" }, "mappings": [ { @@ -47,7 +49,8 @@ "nl": "Fietsweg", "en": "Cycleway", "de": "Radweg", - "ru": "Велосипедная дорожка" + "ru": "Велосипедная дорожка", + "fr": "Piste cyclable" } }, { @@ -55,7 +58,8 @@ "then": { "nl": "Fietssuggestiestrook", "en": "Shared lane", - "de": "Gemeinsame Fahrspur" + "de": "Gemeinsame Fahrspur", + "fr": "Voie partagée" } }, { @@ -63,7 +67,8 @@ "then": { "nl": "Fietsstrook", "en": "Bike lane", - "de": "Fahrradspur" + "de": "Fahrradspur", + "fr": "Bande cyclable" } }, { @@ -71,7 +76,8 @@ "then": { "en": "Cycleway next to the road", "nl": "Fietsweg naast de weg", - "de": "Radweg neben der Straße" + "de": "Radweg neben der Straße", + "fr": "Piste cyclable séparée de la route" } }, { @@ -79,7 +85,8 @@ "then": { "nl": "Fietsstraat", "en": "Cyclestreet", - "de": "Fahrradstraße" + "de": "Fahrradstraße", + "fr": "Vélorue" } } ] diff --git a/assets/layers/defibrillator/aed_checked.svg b/assets/layers/defibrillator/aed_checked.svg index 3456cae2b5..246aab1e2e 100644 --- a/assets/layers/defibrillator/aed_checked.svg +++ b/assets/layers/defibrillator/aed_checked.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/drinking_water/drinking_water.json b/assets/layers/drinking_water/drinking_water.json index 67253cc246..22c659bcfe 100644 --- a/assets/layers/drinking_water/drinking_water.json +++ b/assets/layers/drinking_water/drinking_water.json @@ -8,7 +8,8 @@ "de": "Trinkwasserstelle", "it": "Acqua potabile", "ru": "Питьевая вода", - "id": "Air minum" + "id": "Air minum", + "hu": "Ivóvíz" }, "title": { "render": { @@ -19,7 +20,8 @@ "de": "Trinkwasserstelle", "it": "Acqua potabile", "ru": "Питьевая вода", - "id": "Air minum" + "id": "Air minum", + "hu": "Ivóvíz" } }, "source": { @@ -47,7 +49,8 @@ "de": "trinkwasser", "it": "acqua potabile", "ru": "питьевая вода", - "id": "air minum" + "id": "air minum", + "hu": "ivóvíz" }, "tags": [ "amenity=drinking_water" @@ -62,14 +65,16 @@ "nl": "Is deze drinkwaterkraan nog steeds werkende?", "it": "Questo punto di acqua potabile è sempre funzionante?", "fr": "Ce point d'eau potable est-il toujours opérationnel ?", - "de": "Ist diese Trinkwasserstelle noch in Betrieb?" + "de": "Ist diese Trinkwasserstelle noch in Betrieb?", + "hu": "Működik-e még ez az ivóvíznyerő hely?" }, "render": { "en": "The operational status is {operational_status}", "nl": "Deze waterkraan-status is {operational_status}", "it": "Lo stato operativo è {operational_status}", "fr": "L'état opérationnel est {operational_status}", - "de": "Der Betriebsstatus ist {operational_status}" + "de": "Der Betriebsstatus ist {operational_status}", + "hu": "Működési állapota: {operational_status}" }, "freeform": { "key": "operational_status" @@ -82,7 +87,8 @@ "nl": "Deze drinkwaterfontein werkt", "it": "La fontanella funziona", "fr": "Cette fontaine fonctionne", - "de": "Diese Trinkwasserstelle funktioniert" + "de": "Diese Trinkwasserstelle funktioniert", + "hu": "Ez az ivóvízkút működik" } }, { @@ -92,7 +98,8 @@ "nl": "Deze drinkwaterfontein is kapot", "it": "La fontanella è guasta", "fr": "Cette fontaine est cassée", - "de": "Diese Trinkwasserstelle ist kaputt" + "de": "Diese Trinkwasserstelle ist kaputt", + "hu": "Ez az ivóvízkút elromlott" } }, { @@ -102,7 +109,8 @@ "nl": "Deze drinkwaterfontein is afgesloten", "it": "La fontanella è chiusa", "fr": "Cette fontaine est fermée", - "de": "Diese Trinkwasserstelle wurde geschlossen" + "de": "Diese Trinkwasserstelle wurde geschlossen", + "hu": "Ez az ivóvízkút el van zárva" } } ], @@ -114,7 +122,8 @@ "nl": "Hoe gemakkelijk is het om drinkbussen bij te vullen?", "de": "Wie einfach ist es, Wasserflaschen zu füllen?", "it": "Quanto è facile riempire d’acqua le bottiglie?", - "fr": "Est-il facile de remplir des bouteilles d'eau ?" + "fr": "Est-il facile de remplir des bouteilles d'eau ?", + "hu": "Mennyire könnyű itt vizespalackot tölteni?" }, "mappings": [ { @@ -124,7 +133,8 @@ "nl": "Een drinkbus bijvullen gaat makkelijk", "de": "Es ist einfach, Wasserflaschen nachzufüllen", "it": "È facile riempire d’acqua le bottiglie", - "fr": "Il est facile de remplir les bouteilles d'eau" + "fr": "Il est facile de remplir les bouteilles d'eau", + "hu": "Könnyen lehet vizespalackot tölteni" } }, { @@ -134,7 +144,8 @@ "nl": "Een drinkbus past moeilijk", "de": "Wasserflaschen passen möglicherweise nicht", "it": "Le bottiglie d’acqua potrebbero non entrare", - "fr": "Les bouteilles d'eau peuvent ne pas passer" + "fr": "Les bouteilles d'eau peuvent ne pas passer", + "hu": "Lehet, hogy nem fér alá egy vizespalack" } } ], @@ -147,7 +158,8 @@ "nl": "Er bevindt zich een ander drinkwaterpunt op {_closest_other_drinking_water_distance} meter", "it": "C’è un’altra fontanella a {_closest_other_drinking_water_distance} metri", "de": "Ein weiterer Trinkwasserbrunnen befindet sich in {_closest_other_drinking_water_distance} Meter", - "fr": "Une autre source d’eau potable est à {_closest_other_drinking_water_distance} mètres a>" + "fr": "Une autre source d’eau potable est à {_closest_other_drinking_water_distance} mètres a>", + "hu": "Van egy másik ivóvízkút {_closest_other_drinking_water_distance} méter távolságra" }, "condition": "_closest_other_drinking_water_id~*" } @@ -190,6 +202,7 @@ ], "description": { "en": "A layer showing drinking water fountains", - "nl": "Deze laag toont drinkwaterpunten" + "nl": "Deze laag toont drinkwaterpunten", + "hu": "Ivóvizet adó kutakat megjelenítő réteg" } } \ No newline at end of file diff --git a/assets/layers/entrance/door.svg b/assets/layers/entrance/door.svg index 4327618996..4720d93d98 100644 --- a/assets/layers/entrance/door.svg +++ b/assets/layers/entrance/door.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/entrance/emergency_door.svg b/assets/layers/entrance/emergency_door.svg index 1dc5b486cf..56e05be0f7 100644 --- a/assets/layers/entrance/emergency_door.svg +++ b/assets/layers/entrance/emergency_door.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/etymology/logo.svg b/assets/layers/etymology/logo.svg index 64ceefb737..43c9971669 100644 --- a/assets/layers/etymology/logo.svg +++ b/assets/layers/etymology/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/food/Vegetarian-mark.svg b/assets/layers/food/Vegetarian-mark.svg index 22f11fd4ba..9ec14b57a4 100644 --- a/assets/layers/food/Vegetarian-mark.svg +++ b/assets/layers/food/Vegetarian-mark.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/food/fastfood.svg b/assets/layers/food/fastfood.svg index ea5eb4ed92..6e3fd193e5 100644 --- a/assets/layers/food/fastfood.svg +++ b/assets/layers/food/fastfood.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/food/fries.svg b/assets/layers/food/fries.svg index 3803dc8f3b..763c73b697 100644 --- a/assets/layers/food/fries.svg +++ b/assets/layers/food/fries.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/food/restaurant.svg b/assets/layers/food/restaurant.svg index f2a1d0d468..ef20328706 100644 --- a/assets/layers/food/restaurant.svg +++ b/assets/layers/food/restaurant.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/ghost_bike/ghost_bike.json b/assets/layers/ghost_bike/ghost_bike.json index f10c0810aa..98697e3e92 100644 --- a/assets/layers/ghost_bike/ghost_bike.json +++ b/assets/layers/ghost_bike/ghost_bike.json @@ -10,7 +10,7 @@ "es": "Bicicleta blanca", "fi": "Haamupyörä", "gl": "Bicicleta pantasma", - "hu": "Emlékkerékpár", + "hu": "Emlékkerékpárok", "ja": "ゴーストバイク", "nb_NO": "Spøkelsessykler", "pl": "Duch roweru", diff --git a/assets/layers/ghost_bike/ghost_bike.svg b/assets/layers/ghost_bike/ghost_bike.svg index ee6f9e6c30..f5ece04543 100644 --- a/assets/layers/ghost_bike/ghost_bike.svg +++ b/assets/layers/ghost_bike/ghost_bike.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/information_board/board.svg b/assets/layers/information_board/board.svg index 7c8d52d2c4..435cb4c0f0 100644 --- a/assets/layers/information_board/board.svg +++ b/assets/layers/information_board/board.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/nature_reserve/groen_logo.svg b/assets/layers/nature_reserve/groen_logo.svg index 79e8791fd0..6d33010762 100644 --- a/assets/layers/nature_reserve/groen_logo.svg +++ b/assets/layers/nature_reserve/groen_logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/nature_reserve/nature_reserve.svg b/assets/layers/nature_reserve/nature_reserve.svg index af9e812c2f..97d700ba9f 100644 --- a/assets/layers/nature_reserve/nature_reserve.svg +++ b/assets/layers/nature_reserve/nature_reserve.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/note/note.json b/assets/layers/note/note.json new file mode 100644 index 0000000000..63c4475709 --- /dev/null +++ b/assets/layers/note/note.json @@ -0,0 +1,206 @@ +{ + "id": "note", + "name": { + "en": "OpenStreetMap notes" + }, + "description": "This layer shows notes on OpenStreetMap. Having this layer in your theme will trigger the 'add new note' functionality in the 'addNewPoint'-popup (or if your theme has no presets, it'll enable adding notes)", + "source": { + "osmTags": "id~*", + "geoJson": "https://api.openstreetmap.org/api/0.6/notes.json?closed=7&bbox={x_min},{y_min},{x_max},{y_max}", + "geoJsonZoomLevel": 12, + "maxCacheAge": 0 + }, + "minzoom": 10, + "title": { + "render": { + "en": "Note" + }, + "mappings": [ + { + "if": "closed_at~*", + "then": { + "en": "Closed note" + } + } + ] + }, + "calculatedTags": [ + "_first_comment:=feat.get('comments')[0].text.toLowerCase()", + "_opened_by_anonymous_user:=feat.get('comments')[0].user === undefined", + "_first_user:=feat.get('comments')[0].user", + "_first_user_lc:=feat.get('comments')[0].user?.toLowerCase()", + "_first_user_id:=feat.get('comments')[0].uid" + ], + "titleIcons": [ + { + "render": "" + } + ], + "tagRenderings": [ + { + "id": "conversation", + "render": "{visualize_note_comments()}" + }, + { + "id": "add_image", + "render": "{add_image_to_note()}" + }, + { + "id": "comment", + "render": "{add_note_comment()}" + }, + { + "id": "report-contributor", + "render": { + "en": "Report {_first_user} as spam" + }, + "condition": "_opened_by_anonymous_user=false" + }, + { + "id": "report-note", + "render": { + "en": "Report this note as spam or inappropriate" + } + } + ], + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "./assets/svg/note.svg", + "mappings": [ + { + "if": "closed_at~*", + "then": "./assets/svg/resolved.svg" + } + ] + }, + "iconSize": "40,40,bottom" + } + ], + "filter": [ + { + "id": "search", + "options": [ + { + "osmTags": "_first_comment~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Should mention {search} in the first comment" + } + } + ] + }, + { + "id": "not", + "options": [ + { + "osmTags": "_first_comment!~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Should not mention {search} in the first comment" + } + } + ] + }, + { + "id": "opened_by", + "options": [ + { + "osmTags": "_first_user_lc~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Opened by {search}" + } + } + ] + }, + { + "id": "not_opened_by", + "options": [ + { + "osmTags": "_first_user_lc!~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Not opened by {search}" + } + } + ] + }, + { + "id": "opened_before", + "options": [ + { + "osmTags": "date_created<{search}", + "fields": [ + { + "name": "search", + "type": "date" + } + ], + "question": { + "en": "Opened before {search}" + } + } + ] + }, + { + "id": "opened_after", + "options": [ + { + "osmTags": "date_created>{search}", + "fields": [ + { + "name": "search", + "type": "date" + } + ], + "question": { + "en": "Opened after {search}" + } + } + ] + }, + { + "id": "anonymous", + "options": [ + { + "osmTags": "_opened_by_anonymous_user=true", + "question": { + "en": "Opened by anonymous user" + } + } + ] + }, + { + "id": "is_open", + "options": [ + { + "osmTags": "closed_at=", + "question": { + "en": "Only show open notes" + } + } + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/note_import/note_import.json b/assets/layers/note_import/note_import.json new file mode 100644 index 0000000000..acb25411a6 --- /dev/null +++ b/assets/layers/note_import/note_import.json @@ -0,0 +1,85 @@ +{ + "id": "note_import", + "name": { + "en": "Possible bookcases" + }, + "description": "Template for note note imports.", + "source": { + "osmTags": { + "and": [ + "id~*" + ] + }, + "geoJson": "https://api.openstreetmap.org/api/0.6/notes.json?closed=0&bbox={x_min},{y_min},{x_max},{y_max}", + "geoJsonZoomLevel": 12, + "maxCacheAge": 0 + }, + "minzoom": 10, + "title": { + "render": { + "en": "Possible feature" + } + }, + "calculatedTags": [ + "_first_comment:=feat.get('comments')[0].text.toLowerCase()", + "_trigger_index:=(() => {const lines = feat.properties['_first_comment'].split('\\n'); const matchesMapCompleteURL = lines.map(l => l.match(\".*https://mapcomplete.osm.be/\\([a-zA-Z_-]+\\)\\(.html\\).*#import\")); const matchedIndexes = matchesMapCompleteURL.map((doesMatch, i) => [doesMatch !== null, i]).filter(v => v[0]).map(v => v[1]); return matchedIndexes[0] })()", + "_intro:=(() => {const lines = feat.properties['_first_comment'].split('\\n'); lines.splice(feat.get('_trigger_index')-1, lines.length); return lines.map(l => l == '' ? '
' : l).join('');})()", + "_tags:=(() => {let lines = feat.properties['_first_comment'].split('\\n').map(l => l.trim()); lines.splice(0, feat.get('_trigger_index') + 1); lines = lines.filter(l => l != ''); return lines.join(';');})()" + ], + "isShown": { + "render": "yes", + "mappings": [ + { + "if": "_trigger_index=", + "then": "no" + } + ] + }, + "titleIcons": [ + { + "render": "" + } + ], + "tagRenderings": [ + { + "id": "conversation", + "render": "{visualize_note_comments(comments,1)}" + }, + { + "id": "Intro", + "render": "{_intro}" + }, + { + "id": "import", + "render": "{import_button(public_bookcase, _tags, There might be a public bookcase here,./assets/svg/addSmall.svg,,,id)}" + }, + { + "id": "close_note_", + "render": "{close_note(Does not exist
, ./assets/svg/close.svg, id, This feature does not exist)}" + }, + { + "id": "close_note_mapped", + "render": "{close_note(Already mapped, ./assets/svg/checkmark.svg, id, Already mapped)}" + }, + { + "id": "comment", + "render": "{add_note_comment()}" + }, + { + "id": "add_image", + "render": "{add_image_to_note()}" + } + ], + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "teardrop:#3333cc" + }, + "iconSize": "40,40,bottom" + } + ] +} \ No newline at end of file diff --git a/assets/layers/observation_tower/Tower_observation.svg b/assets/layers/observation_tower/Tower_observation.svg index d159eb0150..e60d4ff561 100644 --- a/assets/layers/observation_tower/Tower_observation.svg +++ b/assets/layers/observation_tower/Tower_observation.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/parking/parking.svg b/assets/layers/parking/parking.svg index 9983d9fcca..1369443d9d 100644 --- a/assets/layers/parking/parking.svg +++ b/assets/layers/parking/parking.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/picnic_table/picnic_table.svg b/assets/layers/picnic_table/picnic_table.svg index d852949556..c6211ab54e 100644 --- a/assets/layers/picnic_table/picnic_table.svg +++ b/assets/layers/picnic_table/picnic_table.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/play_forest/icon.svg b/assets/layers/play_forest/icon.svg index 868df8d674..83c51bef85 100644 --- a/assets/layers/play_forest/icon.svg +++ b/assets/layers/play_forest/icon.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/public_bookcase/public_bookcase.json b/assets/layers/public_bookcase/public_bookcase.json index ee829ff834..82fa6f1299 100644 --- a/assets/layers/public_bookcase/public_bookcase.json +++ b/assets/layers/public_bookcase/public_bookcase.json @@ -6,7 +6,8 @@ "de": "Bücherschränke", "fr": "Microbibliothèque", "ru": "Книжные шкафы", - "it": "Microbiblioteche" + "it": "Microbiblioteche", + "hu": "Könyvespolcok" }, "description": { "en": "A streetside cabinet with books, accessible to anyone", @@ -14,7 +15,8 @@ "de": "Ein Bücherschrank am Straßenrand mit Büchern, für jedermann zugänglich", "fr": "Une armoire ou une boite contenant des livres en libre accès", "it": "Una vetrinetta ai bordi della strada contenente libri, aperta al pubblico", - "ru": "Уличный шкаф с книгами, доступными для всех" + "ru": "Уличный шкаф с книгами, доступными для всех", + "hu": "Egy utcai szekrény könyvekkel, amelyet bárki használhat" }, "source": { "osmTags": "amenity=public_bookcase" @@ -27,7 +29,8 @@ "de": "Bücherschrank", "fr": "Microbibliothèque", "ru": "Книжный шкаф", - "it": "Microbiblioteca" + "it": "Microbiblioteca", + "hu": "Könyvespolc" }, "mappings": [ { @@ -38,7 +41,8 @@ "de": "Öffentlicher Bücherschrank {name}", "fr": "Microbibliothèque {name}", "ru": "Общественный книжный шкаф {name}", - "it": "Microbiblioteca pubblica {name}" + "it": "Microbiblioteca pubblica {name}", + "hu": "A nyilvános könyvespolc neve: {name}" } } ] @@ -51,7 +55,8 @@ "de": "Bücherschrank", "fr": "Microbibliothèque", "ru": "Книжный шкаф", - "it": "Microbiblioteca" + "it": "Microbiblioteca", + "hu": "Könyvespolc" }, "tags": [ "amenity=public_bookcase" @@ -74,7 +79,8 @@ "de": "Der Name dieses Bücherschrank lautet {name}", "fr": "Le nom de cette microbibliothèque est {name}", "ru": "Название книжного шкафа — {name}", - "it": "Questa microbiblioteca si chiama {name}" + "it": "Questa microbiblioteca si chiama {name}", + "hu": "Ennek a könyvespolcnak a neve: {name}" }, "question": { "en": "What is the name of this public bookcase?", @@ -82,7 +88,8 @@ "de": "Wie heißt dieser öffentliche Bücherschrank?", "fr": "Quel est le nom de cette microbibliothèque ?", "ru": "Как называется этот общественный книжный шкаф?", - "it": "Come si chiama questa microbiblioteca pubblica?" + "it": "Come si chiama questa microbiblioteca pubblica?", + "hu": "Mi a neve ennek a nyilvános könyvespolcnak?" }, "freeform": { "key": "name" @@ -101,7 +108,8 @@ "de": "Dieser Bücherschrank hat keinen Namen", "fr": "Cette microbibliothèque n'a pas de nom", "ru": "У этого книжного шкафа нет названия", - "it": "Questa microbiblioteca non ha un nome proprio" + "it": "Questa microbiblioteca non ha un nome proprio", + "hu": "Ennek a könyvespolcnak nincs neve" } } ], @@ -114,7 +122,8 @@ "de": "{capacity} Bücher passen in diesen Bücherschrank", "fr": "{capacity} livres peuvent entrer dans cette microbibliothèque", "it": "Questa microbiblioteca può contenere fino a {capacity} libri", - "ru": "{capacity} книг помещается в этот книжный шкаф" + "ru": "{capacity} книг помещается в этот книжный шкаф", + "hu": "Ezen a könyvespolcon {capacity} könyv fér el" }, "question": { "en": "How many books fit into this public bookcase?", @@ -122,7 +131,8 @@ "de": "Wie viele Bücher passen in diesen öffentlichen Bücherschrank?", "fr": "Combien de livres peuvent entrer dans cette microbibliothèque ?", "ru": "Сколько книг помещается в этом общественном книжном шкафу?", - "it": "Quanti libri può contenere questa microbiblioteca?" + "it": "Quanti libri può contenere questa microbiblioteca?", + "hu": "Hány könyv fér el ezen a nyilvános könyvespolcon?" }, "freeform": { "key": "capacity", @@ -139,7 +149,8 @@ "de": "Welche Art von Büchern sind in diesem öffentlichen Bücherschrank zu finden?", "fr": "Quel type de livres peut-on dans cette microbibliothèque ?", "it": "Che tipo di libri si possono trovare in questa microbiblioteca?", - "ru": "Какие книги можно найти в этом общественном книжном шкафу?" + "ru": "Какие книги можно найти в этом общественном книжном шкафу?", + "hu": "Milyen fajta könyvek találhatók ezen a közösségi könyvespolcon?" }, "mappings": [ { @@ -150,7 +161,8 @@ "de": "Vorwiegend Kinderbücher", "fr": "Livres pour enfants", "ru": "В основном детские книги", - "it": "Principalmente libri per l'infanzia" + "it": "Principalmente libri per l'infanzia", + "hu": "Többnyire gyermekkönyvek" } }, { @@ -161,7 +173,8 @@ "de": "Vorwiegend Bücher für Erwachsene", "fr": "Livres pour les adultes", "ru": "В основном книги для взрослых", - "it": "Principalmente libri per persone in età adulta" + "it": "Principalmente libri per persone in età adulta", + "hu": "Többnyire felnőtteknek szóló könyvek" } }, { @@ -172,7 +185,8 @@ "de": "Sowohl Bücher für Kinder als auch für Erwachsene", "fr": "Livres pour enfants et adultes également", "it": "Sia libri per l'infanzia, sia per l'età adulta", - "ru": "Книги и для детей, и для взрослых" + "ru": "Книги и для детей, и для взрослых", + "hu": "Gyerekeknek és felnőtteknek szóló könyvek egyaránt" } } ] @@ -184,7 +198,8 @@ "nl": "Staat dit boekenruilkastje binnen of buiten?", "de": "Befindet sich dieser Bücherschrank im Freien?", "fr": "Cette microbiliothèque est-elle en extérieur ?", - "it": "Questa microbiblioteca si trova all'aperto?" + "it": "Questa microbiblioteca si trova all'aperto?", + "hu": "A szabadban van-e ez a könyvespolc?" }, "mappings": [ { @@ -193,7 +208,8 @@ "nl": "Dit boekenruilkastje staat binnen", "de": "Dieser Bücherschrank befindet sich im Innenbereich", "fr": "Cette microbibliothèque est en intérieur", - "it": "Questa microbiblioteca si trova al chiuso" + "it": "Questa microbiblioteca si trova al chiuso", + "hu": "Ez a könyvespolc beltérben található" }, "if": "indoor=yes" }, @@ -203,7 +219,8 @@ "nl": "Dit boekenruilkastje staat buiten", "de": "Dieser Bücherschrank befindet sich im Freien", "fr": "Cette microbibliothèque est en extérieur", - "it": "Questa microbiblioteca si trova all'aperto" + "it": "Questa microbiblioteca si trova all'aperto", + "hu": "Ez a könyvespolc a szabadban van" }, "if": "indoor=no" }, @@ -213,7 +230,8 @@ "nl": "Dit boekenruilkastje staat buiten", "de": "Dieser Bücherschrank befindet sich im Freien", "fr": "Cette microbibliothèque est en extérieur", - "it": "Questa microbiblioteca si trova all'aperto" + "it": "Questa microbiblioteca si trova all'aperto", + "hu": "Ez a könyvszekrény a szabadban van" }, "if": "indoor=", "hideInAnswer": true @@ -228,7 +246,8 @@ "de": "Ist dieser öffentliche Bücherschrank frei zugänglich?", "fr": "Cette microbibliothèque est-elle librement accèssible ?", "it": "Questa microbiblioteca è ad accesso libero?", - "ru": "Имеется ли свободный доступ к этому общественному книжному шкафу?" + "ru": "Имеется ли свободный доступ к этому общественному книжному шкафу?", + "hu": "Szabadon hozzáférhető-e ez a közösségi könyvespolc?" }, "condition": "indoor=yes", "mappings": [ @@ -239,7 +258,8 @@ "de": "Öffentlich zugänglich", "fr": "Accèssible au public", "it": "È ad accesso libero", - "ru": "Свободный доступ" + "ru": "Свободный доступ", + "hu": "Nyilvánosan használható" }, "if": "access=yes" }, @@ -249,7 +269,8 @@ "nl": "Enkel toegankelijk voor klanten", "de": "Nur für Kunden zugänglich", "fr": "Accèssible aux clients", - "it": "L'accesso è riservato ai clienti" + "it": "L'accesso è riservato ai clienti", + "hu": "Csak ügyfelek használhatják" }, "if": "access=customers" } @@ -261,14 +282,16 @@ "nl": "Wie is verantwoordelijk voor dit boekenruilkastje?", "de": "Wer unterhält diesen öffentlichen Bücherschrank?", "fr": "Qui entretien cette microbibliothèque ?", - "it": "Chi mantiene questa microbiblioteca?" + "it": "Chi mantiene questa microbiblioteca?", + "hu": "Ki tartja fenn ezt a nyilvános könyvespolcot?" }, "render": { "en": "Operated by {operator}", "nl": "Onderhouden door {operator}", "de": "Betrieben von {operator}", "fr": "Entretenue par {operator}", - "it": "È gestita da {operator}" + "it": "È gestita da {operator}", + "hu": "Üzemeltető: {operator}" }, "freeform": { "type": "string", @@ -282,14 +305,16 @@ "nl": "Is dit boekenruilkastje deel van een netwerk?", "de": "Ist dieser öffentliche Bücherschrank Teil eines größeren Netzwerks?", "fr": "Cette microbibliothèque fait-elle partie d'un réseau/groupe ?", - "it": "Questa microbiblioteca fa parte di una rete?" + "it": "Questa microbiblioteca fa parte di una rete?", + "hu": "Része-e egy nagyobb hálózatnak ez a nyilvános könyvespolc?" }, "render": { "en": "This public bookcase is part of {brand}", "nl": "Dit boekenruilkastje is deel van het netwerk {brand}", "de": "Dieser Bücherschrank ist Teil von {brand}", "fr": "Cette microbibliothèque fait partie du groupe {brand}", - "it": "Questa microbiblioteca fa parte di {brand}" + "it": "Questa microbiblioteca fa parte di {brand}", + "hu": "Ez a nyilvános könyvespolc a(z) {brand} része" }, "condition": "ref=", "freeform": { @@ -302,7 +327,8 @@ "nl": "Deel van het netwerk 'Little Free Library'", "de": "Teil des Netzwerks 'Little Free Library'", "fr": "Fait partie du réseau Little Free Library", - "it": "Fa parte della rete 'Little Free Library'" + "it": "Fa parte della rete 'Little Free Library'", + "hu": "A „Little Free Library” hálózat része" }, "if": { "and": [ @@ -326,7 +352,8 @@ "nl": "Dit boekenruilkastje maakt geen deel uit van een netwerk", "de": "Dieser öffentliche Bücherschrank ist nicht Teil eines größeren Netzwerks", "fr": "Cette microbibliothèque ne fait pas partie d'un réseau/groupe", - "it": "Questa microbiblioteca non fa parte di una rete" + "it": "Questa microbiblioteca non fa parte di una rete", + "hu": "Ez a nyilvános könyvespolc nem része egy nagyobb hálózatnak" } } ], @@ -338,14 +365,16 @@ "nl": "Het referentienummer binnen {brand} is {ref}", "de": "Die Referenznummer dieses öffentlichen Bücherschranks innerhalb {brand} lautet {ref}", "fr": "Cette microbibliothèque du réseau {brand} possède le numéro {ref}", - "it": "Il numero identificativo di questa microbiblioteca nella rete {brand} è {ref}" + "it": "Il numero identificativo di questa microbiblioteca nella rete {brand} è {ref}", + "hu": "A(z) {brand} márkanéven belül ennek a nyilvános könyvespolcnak az azonosító száma: {ref}" }, "question": { "en": "What is the reference number of this public bookcase?", "nl": "Wat is het referentienummer van dit boekenruilkastje?", "de": "Wie lautet die Referenznummer dieses öffentlichen Bücherschranks?", "fr": "Quelle est le numéro de référence de cette microbibliothèque ?", - "it": "Qual è il numero identificativo di questa microbiblioteca?" + "it": "Qual è il numero identificativo di questa microbiblioteca?", + "hu": "Mi az azonosító száma ennek a nyilvános könyvespolcnak?" }, "condition": "brand~*", "freeform": { @@ -358,7 +387,8 @@ "nl": "Dit boekenruilkastje maakt geen deel uit van een netwerk", "de": "Dieser Bücherschrank ist nicht Teil eines größeren Netzwerks", "fr": "Cette microbibliothèque ne fait pas partie d'un réseau/groupe", - "it": "Questa microbiblioteca non fa parte di una rete" + "it": "Questa microbiblioteca non fa parte di una rete", + "hu": "Ez a könyvespolc nem része egy nagyobb hálózatnak" }, "if": { "and": [ @@ -378,7 +408,8 @@ "de": "Wann wurde dieser öffentliche Bücherschrank installiert?", "fr": "Quand a été installée cette microbibliothèque ?", "it": "Quando è stata inaugurata questa microbiblioteca?", - "ru": "Когда был установлен этот общественный книжный шкаф?" + "ru": "Когда был установлен этот общественный книжный шкаф?", + "hu": "Mikor állították fel ezt a nyilvános könyvespolcot?" }, "render": { "en": "Installed on {start_date}", @@ -386,7 +417,8 @@ "de": "Installiert am {start_date}", "fr": "Installée le {start_date}", "it": "È stata inaugurata il {start_date}", - "ru": "Установлен {start_date}" + "ru": "Установлен {start_date}", + "hu": "Telepítés dátuma: {start_date}" }, "freeform": { "key": "start_date", @@ -401,7 +433,8 @@ "de": "Weitere Informationen auf der Webseite", "fr": "Plus d'infos sur le site web", "ru": "Более подробная информация на сайте", - "it": "Maggiori informazioni sul sito web" + "it": "Maggiori informazioni sul sito web", + "hu": "További információ ezen a weboldalon." }, "question": { "en": "Is there a website with more information about this public bookcase?", @@ -409,7 +442,8 @@ "de": "Gibt es eine Website mit weiteren Informationen über diesen öffentlichen Bücherschrank?", "fr": "Y a-t-il un site web avec plus d'informations sur cette microbibliothèque ?", "it": "C'è un sito web con maggiori informazioni su questa microbiblioteca?", - "ru": "Есть ли веб-сайт с более подробной информацией об этом общественном книжном шкафе?" + "ru": "Есть ли веб-сайт с более подробной информацией об этом общественном книжном шкафе?", + "hu": "Van-e olyan weboldal, ahol további információ található erről a nyilvános könyvespolcról?" }, "freeform": { "key": "website", @@ -454,7 +488,8 @@ "question": { "nl": "Binnen of buiten", "en": "Indoor or outdoor", - "de": "Innen oder Außen" + "de": "Innen oder Außen", + "hu": "Beltéri vagy kültéri" } }, { diff --git a/assets/layers/slow_roads/slow_road.svg b/assets/layers/slow_roads/slow_road.svg index d620e9552d..a633590771 100644 --- a/assets/layers/slow_roads/slow_road.svg +++ b/assets/layers/slow_roads/slow_road.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/slow_roads/woonerf.svg b/assets/layers/slow_roads/woonerf.svg index fa465c2f82..c026fa216c 100644 --- a/assets/layers/slow_roads/woonerf.svg +++ b/assets/layers/slow_roads/woonerf.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/baseball.svg b/assets/layers/sport_pitch/baseball.svg index ca35a82c8e..b4ee679708 100644 --- a/assets/layers/sport_pitch/baseball.svg +++ b/assets/layers/sport_pitch/baseball.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/basketball.svg b/assets/layers/sport_pitch/basketball.svg index 6f5528e1b4..e67ae7f64e 100644 --- a/assets/layers/sport_pitch/basketball.svg +++ b/assets/layers/sport_pitch/basketball.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/beachvolleyball.svg b/assets/layers/sport_pitch/beachvolleyball.svg index f495e36a00..e61a0003d3 100644 --- a/assets/layers/sport_pitch/beachvolleyball.svg +++ b/assets/layers/sport_pitch/beachvolleyball.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/boules.svg b/assets/layers/sport_pitch/boules.svg index f4c7fcd89c..d5790a7e21 100644 --- a/assets/layers/sport_pitch/boules.svg +++ b/assets/layers/sport_pitch/boules.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/lock.svg b/assets/layers/sport_pitch/lock.svg index 3af727b6b3..2d4e2c0324 100644 --- a/assets/layers/sport_pitch/lock.svg +++ b/assets/layers/sport_pitch/lock.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/skateboard.svg b/assets/layers/sport_pitch/skateboard.svg index ea2e066789..895237f488 100644 --- a/assets/layers/sport_pitch/skateboard.svg +++ b/assets/layers/sport_pitch/skateboard.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/soccer.svg b/assets/layers/sport_pitch/soccer.svg index eca4910e13..454cc841ad 100644 --- a/assets/layers/sport_pitch/soccer.svg +++ b/assets/layers/sport_pitch/soccer.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/sport_pitch.svg b/assets/layers/sport_pitch/sport_pitch.svg index 1b8645b2d9..8252ab908e 100644 --- a/assets/layers/sport_pitch/sport_pitch.svg +++ b/assets/layers/sport_pitch/sport_pitch.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/table_tennis.svg b/assets/layers/sport_pitch/table_tennis.svg index 9439391be7..3c233754b3 100644 --- a/assets/layers/sport_pitch/table_tennis.svg +++ b/assets/layers/sport_pitch/table_tennis.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/tennis.svg b/assets/layers/sport_pitch/tennis.svg index 6e249f41cb..83a32373e3 100644 --- a/assets/layers/sport_pitch/tennis.svg +++ b/assets/layers/sport_pitch/tennis.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/sport_pitch/volleyball.svg b/assets/layers/sport_pitch/volleyball.svg index f495e36a00..e61a0003d3 100644 --- a/assets/layers/sport_pitch/volleyball.svg +++ b/assets/layers/sport_pitch/volleyball.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/street_lamps/bent_pole_1.svg b/assets/layers/street_lamps/bent_pole_1.svg index be0fcf8aed..80db7bd068 100644 --- a/assets/layers/street_lamps/bent_pole_1.svg +++ b/assets/layers/street_lamps/bent_pole_1.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/street_lamps/bent_pole_2.svg b/assets/layers/street_lamps/bent_pole_2.svg index 89b03f22da..6368637091 100644 --- a/assets/layers/street_lamps/bent_pole_2.svg +++ b/assets/layers/street_lamps/bent_pole_2.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/street_lamps/straight_pole.svg b/assets/layers/street_lamps/straight_pole.svg index de064d04eb..e0e849d465 100644 --- a/assets/layers/street_lamps/straight_pole.svg +++ b/assets/layers/street_lamps/straight_pole.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/toilet/toilets.svg b/assets/layers/toilet/toilets.svg index 0d9aa98ae0..02ade60d58 100644 --- a/assets/layers/toilet/toilets.svg +++ b/assets/layers/toilet/toilets.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/toilet/urinal.svg b/assets/layers/toilet/urinal.svg index bddb75ed01..0b6579e1f5 100644 --- a/assets/layers/toilet/urinal.svg +++ b/assets/layers/toilet/urinal.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/toilet/wheelchair.svg b/assets/layers/toilet/wheelchair.svg index c9c373ebee..e6ccd1d1a3 100644 --- a/assets/layers/toilet/wheelchair.svg +++ b/assets/layers/toilet/wheelchair.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/trail/pushchair.svg b/assets/layers/trail/pushchair.svg index db1e7973b0..4f3ca7261e 100644 --- a/assets/layers/trail/pushchair.svg +++ b/assets/layers/trail/pushchair.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/trail/trail.json b/assets/layers/trail/trail.json index 4ff87d1053..72e9452136 100644 --- a/assets/layers/trail/trail.json +++ b/assets/layers/trail/trail.json @@ -4,7 +4,8 @@ "en": "Trails", "nl": "Wandeltochten", "ru": "Тропы", - "de": "Wanderwege" + "de": "Wanderwege", + "fr": "Sentiers" }, "minzoom": 12, "source": { @@ -25,7 +26,8 @@ "en": "Trail", "nl": "Wandeltocht", "ru": "Тропа", - "de": "Wanderweg" + "de": "Wanderweg", + "fr": "Sentier" }, "mappings": [ { diff --git a/assets/layers/trail/trail.svg b/assets/layers/trail/trail.svg index a5cdf8954b..678c600c5e 100644 --- a/assets/layers/trail/trail.svg +++ b/assets/layers/trail/trail.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/trail/wheelchair.svg b/assets/layers/trail/wheelchair.svg index c9f991a3f3..719c5fd260 100644 --- a/assets/layers/trail/wheelchair.svg +++ b/assets/layers/trail/wheelchair.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg b/assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg index 54f9b2700d..a9d033bab6 100644 --- a/assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg +++ b/assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/viewpoint/viewpoint.svg b/assets/layers/viewpoint/viewpoint.svg index 1b21bae667..720cb95a6b 100644 --- a/assets/layers/viewpoint/viewpoint.svg +++ b/assets/layers/viewpoint/viewpoint.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/layers/visitor_information_centre/visitor_information_centre.json b/assets/layers/visitor_information_centre/visitor_information_centre.json index 8275a78c61..499c6e1a76 100644 --- a/assets/layers/visitor_information_centre/visitor_information_centre.json +++ b/assets/layers/visitor_information_centre/visitor_information_centre.json @@ -24,7 +24,8 @@ "en": "{name}", "de": "{name}", "ru": "{name}", - "eo": "{name}" + "eo": "{name}", + "fr": "{name}" }, "mappings": [ { @@ -48,7 +49,8 @@ "en": "{name}", "de": "{name}", "ru": "{name}", - "eo": "{name}" + "eo": "{name}", + "fr": "{name}" } } ] diff --git a/assets/layers/watermill/watermill.json b/assets/layers/watermill/watermill.json index 2654f82325..1e885ee8ee 100644 --- a/assets/layers/watermill/watermill.json +++ b/assets/layers/watermill/watermill.json @@ -5,7 +5,8 @@ "en": "Watermill", "de": "Wassermühle", "ru": "Водяная мельница", - "id": "Kincir Air" + "id": "Kincir Air", + "fr": "Moulin à eau" }, "minzoom": 12, "source": { diff --git a/assets/layers/watermill/watermill.svg b/assets/layers/watermill/watermill.svg index 2bd09dbb7c..86c14d61da 100644 --- a/assets/layers/watermill/watermill.svg +++ b/assets/layers/watermill/watermill.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/add.svg b/assets/svg/add.svg index 8e115b2914..e0ec8b41a0 100644 --- a/assets/svg/add.svg +++ b/assets/svg/add.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/addSmall.svg b/assets/svg/addSmall.svg index 6a20dfd65a..91d6a9156d 100644 --- a/assets/svg/addSmall.svg +++ b/assets/svg/addSmall.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/add_pin.svg b/assets/svg/add_pin.svg index ccb00d8cb7..9963cbdf35 100644 --- a/assets/svg/add_pin.svg +++ b/assets/svg/add_pin.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/ampersand.svg b/assets/svg/ampersand.svg index 56b8a09af7..1b5cbf7d45 100644 --- a/assets/svg/ampersand.svg +++ b/assets/svg/ampersand.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/back.svg b/assets/svg/back.svg index 5b4df40aae..2536cfc299 100644 --- a/assets/svg/back.svg +++ b/assets/svg/back.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/blocked.svg b/assets/svg/blocked.svg index 2e34057d1a..4d2914f4cc 100644 --- a/assets/svg/blocked.svg +++ b/assets/svg/blocked.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/bug.svg b/assets/svg/bug.svg index 7c1c5da281..ac79e84e30 100644 --- a/assets/svg/bug.svg +++ b/assets/svg/bug.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/camera-plus.svg b/assets/svg/camera-plus.svg index 73663f6bd3..38168e90d6 100644 --- a/assets/svg/camera-plus.svg +++ b/assets/svg/camera-plus.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/checkbox-empty.svg b/assets/svg/checkbox-empty.svg index 51681cb8c8..2cf245bf1a 100644 --- a/assets/svg/checkbox-empty.svg +++ b/assets/svg/checkbox-empty.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/checkbox-filled.svg b/assets/svg/checkbox-filled.svg index 67d9380a45..1684232e41 100644 --- a/assets/svg/checkbox-filled.svg +++ b/assets/svg/checkbox-filled.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/checkmark.svg b/assets/svg/checkmark.svg index 6ee35b94b4..34ae82a765 100644 --- a/assets/svg/checkmark.svg +++ b/assets/svg/checkmark.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/circle.svg b/assets/svg/circle.svg index 455f629eed..2cfde629fa 100644 --- a/assets/svg/circle.svg +++ b/assets/svg/circle.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/clock.svg b/assets/svg/clock.svg index 64b5407642..afca6d9ad9 100644 --- a/assets/svg/clock.svg +++ b/assets/svg/clock.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/close.svg b/assets/svg/close.svg index 54740512f7..d092683841 100644 --- a/assets/svg/close.svg +++ b/assets/svg/close.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/copyright.svg b/assets/svg/copyright.svg index 52b4bcd895..786af75a29 100644 --- a/assets/svg/copyright.svg +++ b/assets/svg/copyright.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/cross_bottom_right.svg b/assets/svg/cross_bottom_right.svg index ac930d487b..0b4c0e2f84 100644 --- a/assets/svg/cross_bottom_right.svg +++ b/assets/svg/cross_bottom_right.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/crosshair-blue-center.svg b/assets/svg/crosshair-blue-center.svg index 0a7aae18f2..15f86df086 100644 --- a/assets/svg/crosshair-blue-center.svg +++ b/assets/svg/crosshair-blue-center.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/crosshair-blue.svg b/assets/svg/crosshair-blue.svg index c8da096c97..c2ba4364bc 100644 --- a/assets/svg/crosshair-blue.svg +++ b/assets/svg/crosshair-blue.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/crosshair-empty.svg b/assets/svg/crosshair-empty.svg index 233b03f6a8..54528d8b0f 100644 --- a/assets/svg/crosshair-empty.svg +++ b/assets/svg/crosshair-empty.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/crosshair-locked.svg b/assets/svg/crosshair-locked.svg index 61a7caaece..6c528f58f4 100644 --- a/assets/svg/crosshair-locked.svg +++ b/assets/svg/crosshair-locked.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/crosshair.svg b/assets/svg/crosshair.svg index 1d899b072b..a1d12eb224 100644 --- a/assets/svg/crosshair.svg +++ b/assets/svg/crosshair.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/delete_icon.svg b/assets/svg/delete_icon.svg index fc996a42c9..c9f1bc15f2 100644 --- a/assets/svg/delete_icon.svg +++ b/assets/svg/delete_icon.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/delete_not_allowed.svg b/assets/svg/delete_not_allowed.svg index 6251285460..2f7913bc57 100644 --- a/assets/svg/delete_not_allowed.svg +++ b/assets/svg/delete_not_allowed.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/direction_stroke.svg b/assets/svg/direction_stroke.svg index 33033c6ebb..521b40b0d3 100644 --- a/assets/svg/direction_stroke.svg +++ b/assets/svg/direction_stroke.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/download.svg b/assets/svg/download.svg index ca8a20f495..95998b9296 100644 --- a/assets/svg/download.svg +++ b/assets/svg/download.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/envelope.svg b/assets/svg/envelope.svg index c7d92dc21d..1e324366a1 100644 --- a/assets/svg/envelope.svg +++ b/assets/svg/envelope.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/eye.svg b/assets/svg/eye.svg index 5aedf73fd3..0321ac0e71 100644 --- a/assets/svg/eye.svg +++ b/assets/svg/eye.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/filter.svg b/assets/svg/filter.svg index 0b79791f01..a4448913e4 100644 --- a/assets/svg/filter.svg +++ b/assets/svg/filter.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/gear.svg b/assets/svg/gear.svg index 72c7429c2c..6d9fba7176 100644 --- a/assets/svg/gear.svg +++ b/assets/svg/gear.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/gender_bi.svg b/assets/svg/gender_bi.svg index 8c24c52e69..5e09e2fe87 100644 --- a/assets/svg/gender_bi.svg +++ b/assets/svg/gender_bi.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/gender_female.svg b/assets/svg/gender_female.svg index 2dddced667..5d5e12ae8d 100644 --- a/assets/svg/gender_female.svg +++ b/assets/svg/gender_female.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/gender_inter.svg b/assets/svg/gender_inter.svg index 1180065fce..7aa50c45e6 100644 --- a/assets/svg/gender_inter.svg +++ b/assets/svg/gender_inter.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/gender_male.svg b/assets/svg/gender_male.svg index 9433a37dd0..692e49c1f8 100644 --- a/assets/svg/gender_male.svg +++ b/assets/svg/gender_male.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/gender_queer.svg b/assets/svg/gender_queer.svg index 8c5d8e7616..3e742c2adf 100644 --- a/assets/svg/gender_queer.svg +++ b/assets/svg/gender_queer.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/gender_trans.svg b/assets/svg/gender_trans.svg index 64d9358e52..a41e21ce54 100644 --- a/assets/svg/gender_trans.svg +++ b/assets/svg/gender_trans.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/generic_map.svg b/assets/svg/generic_map.svg index e6901b246f..5dfe67b7e3 100644 --- a/assets/svg/generic_map.svg +++ b/assets/svg/generic_map.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/hand.svg b/assets/svg/hand.svg index 8257efbbab..7a4525224e 100644 --- a/assets/svg/hand.svg +++ b/assets/svg/hand.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/help.svg b/assets/svg/help.svg index 92cfefc660..7515e07381 100644 --- a/assets/svg/help.svg +++ b/assets/svg/help.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/home.svg b/assets/svg/home.svg index f214e84e73..c151ae16eb 100644 --- a/assets/svg/home.svg +++ b/assets/svg/home.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/layers.svg b/assets/svg/layers.svg index 5b4e7c4a18..0fc110faaa 100644 --- a/assets/svg/layers.svg +++ b/assets/svg/layers.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/length-crosshair.svg b/assets/svg/length-crosshair.svg index b3f8c37dc2..fe2cd33625 100644 --- a/assets/svg/length-crosshair.svg +++ b/assets/svg/length-crosshair.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/liberapay.svg b/assets/svg/liberapay.svg index 0aadfc671e..ce5b50b28b 100644 --- a/assets/svg/liberapay.svg +++ b/assets/svg/liberapay.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/license_info.json b/assets/svg/license_info.json index c66e826965..2d7f5689bb 100644 --- a/assets/svg/license_info.json +++ b/assets/svg/license_info.json @@ -823,6 +823,14 @@ "authors": [], "sources": [] }, + { + "path": "note.svg", + "license": "CC0", + "authors": [ + "Pieter Vander Vennet" + ], + "sources": [] + }, { "path": "osm-logo-us.svg", "license": "Logo", @@ -965,6 +973,14 @@ ], "sources": [] }, + { + "path": "resolved.svg", + "license": "CC0", + "authors": [ + "Pieter Vander Vennet" + ], + "sources": [] + }, { "path": "ring.svg", "license": "CC0; trivial", diff --git a/assets/svg/loading.svg b/assets/svg/loading.svg index 6f5cf9c809..7bb6275a1f 100644 --- a/assets/svg/loading.svg +++ b/assets/svg/loading.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/location-empty.svg b/assets/svg/location-empty.svg index 35c2e97d9a..e15d6f45f2 100644 --- a/assets/svg/location-empty.svg +++ b/assets/svg/location-empty.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/location-refused.svg b/assets/svg/location-refused.svg index 8d20fe6c96..20d0f2f1ed 100644 --- a/assets/svg/location-refused.svg +++ b/assets/svg/location-refused.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/location.svg b/assets/svg/location.svg index 1f8f3cf650..d289b6960c 100644 --- a/assets/svg/location.svg +++ b/assets/svg/location.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/location_locked.svg b/assets/svg/location_locked.svg index b02b73406b..9d74a0a6d5 100644 --- a/assets/svg/location_locked.svg +++ b/assets/svg/location_locked.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/location_unlocked.svg b/assets/svg/location_unlocked.svg index 1267c8f727..2aa0774036 100644 --- a/assets/svg/location_unlocked.svg +++ b/assets/svg/location_unlocked.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/logo.svg b/assets/svg/logo.svg index 1227eed20a..b51870735b 100644 --- a/assets/svg/logo.svg +++ b/assets/svg/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/logout.svg b/assets/svg/logout.svg index 204625da0e..35af5e5508 100644 --- a/assets/svg/logout.svg +++ b/assets/svg/logout.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/mapillary.svg b/assets/svg/mapillary.svg index 7c640e4728..31d6f8b023 100644 --- a/assets/svg/mapillary.svg +++ b/assets/svg/mapillary.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/mapillary_black.svg b/assets/svg/mapillary_black.svg index be6612f9b4..93f0d1dacf 100644 --- a/assets/svg/mapillary_black.svg +++ b/assets/svg/mapillary_black.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/min.svg b/assets/svg/min.svg index f312bbbd54..e153377704 100644 --- a/assets/svg/min.svg +++ b/assets/svg/min.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/move-arrows.svg b/assets/svg/move-arrows.svg index f843f670c7..ff0adf9704 100644 --- a/assets/svg/move-arrows.svg +++ b/assets/svg/move-arrows.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/move.svg b/assets/svg/move.svg index 25e62ca7ba..56eb488d26 100644 --- a/assets/svg/move.svg +++ b/assets/svg/move.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/move_confirm.svg b/assets/svg/move_confirm.svg index fd550699e1..88b386a6ec 100644 --- a/assets/svg/move_confirm.svg +++ b/assets/svg/move_confirm.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/move_not_allowed.svg b/assets/svg/move_not_allowed.svg index 93ce4b552c..a44e090710 100644 --- a/assets/svg/move_not_allowed.svg +++ b/assets/svg/move_not_allowed.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/no_checkmark.svg b/assets/svg/no_checkmark.svg index 45fb94f7b9..7c6392c8d5 100644 --- a/assets/svg/no_checkmark.svg +++ b/assets/svg/no_checkmark.svg @@ -1,4 +1,4 @@ - + \ No newline at end of file diff --git a/assets/svg/none.svg b/assets/svg/none.svg index 5da0dbc856..5adcc79f0a 100644 --- a/assets/svg/none.svg +++ b/assets/svg/none.svg @@ -1,4 +1,4 @@ - + \ No newline at end of file diff --git a/assets/svg/note.svg b/assets/svg/note.svg new file mode 100644 index 0000000000..d4b0cb5f45 --- /dev/null +++ b/assets/svg/note.svg @@ -0,0 +1,45 @@ + + + + + + + + + diff --git a/assets/svg/osm-logo-us.svg b/assets/svg/osm-logo-us.svg index bace7be208..68523bc305 100644 --- a/assets/svg/osm-logo-us.svg +++ b/assets/svg/osm-logo-us.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/pencil.svg b/assets/svg/pencil.svg index 07609a41dc..24e22f4e51 100644 --- a/assets/svg/pencil.svg +++ b/assets/svg/pencil.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/phone.svg b/assets/svg/phone.svg index d441f37201..6e139aa9de 100644 --- a/assets/svg/phone.svg +++ b/assets/svg/phone.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/pin.svg b/assets/svg/pin.svg index 7fdfc62d52..0675ec07ab 100644 --- a/assets/svg/pin.svg +++ b/assets/svg/pin.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/plus.svg b/assets/svg/plus.svg index 5e754ea362..a97b5494e5 100644 --- a/assets/svg/plus.svg +++ b/assets/svg/plus.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/pop-out.svg b/assets/svg/pop-out.svg index 3740e529a2..f32e3cf647 100644 --- a/assets/svg/pop-out.svg +++ b/assets/svg/pop-out.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/reload.svg b/assets/svg/reload.svg index ed8cb9a238..66573348f3 100644 --- a/assets/svg/reload.svg +++ b/assets/svg/reload.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/relocation.svg b/assets/svg/relocation.svg index 6c387ee5d6..d95f3f5090 100644 --- a/assets/svg/relocation.svg +++ b/assets/svg/relocation.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/resolved.svg b/assets/svg/resolved.svg new file mode 100644 index 0000000000..cf8530a90d --- /dev/null +++ b/assets/svg/resolved.svg @@ -0,0 +1,46 @@ + + + + + + + + + diff --git a/assets/svg/ring.svg b/assets/svg/ring.svg index 44eb7a0788..7eb25721e2 100644 --- a/assets/svg/ring.svg +++ b/assets/svg/ring.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/robot.svg b/assets/svg/robot.svg index d7ac11d7eb..eb4c176c0e 100644 --- a/assets/svg/robot.svg +++ b/assets/svg/robot.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/satellite.svg b/assets/svg/satellite.svg index 7af205b816..506a593bfb 100644 --- a/assets/svg/satellite.svg +++ b/assets/svg/satellite.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/scissors.svg b/assets/svg/scissors.svg index 97d5eac026..597cd419ce 100644 --- a/assets/svg/scissors.svg +++ b/assets/svg/scissors.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/search.svg b/assets/svg/search.svg index fe76b700a1..3bfbb3010f 100644 --- a/assets/svg/search.svg +++ b/assets/svg/search.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/send_email.svg b/assets/svg/send_email.svg index c32e61fa11..9a720b802b 100644 --- a/assets/svg/send_email.svg +++ b/assets/svg/send_email.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/share.svg b/assets/svg/share.svg index 1e100e0173..9483764813 100644 --- a/assets/svg/share.svg +++ b/assets/svg/share.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/square.svg b/assets/svg/square.svg index 03e201f559..0bad670ff2 100644 --- a/assets/svg/square.svg +++ b/assets/svg/square.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/star.svg b/assets/svg/star.svg index cb0a78730d..d7148bcef4 100644 --- a/assets/svg/star.svg +++ b/assets/svg/star.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/star_half.svg b/assets/svg/star_half.svg index 0c7101c1eb..7765c28726 100644 --- a/assets/svg/star_half.svg +++ b/assets/svg/star_half.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/star_outline.svg b/assets/svg/star_outline.svg index f53adff908..859b7539c7 100644 --- a/assets/svg/star_outline.svg +++ b/assets/svg/star_outline.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/star_outline_half.svg b/assets/svg/star_outline_half.svg index 82e581dbc3..8c08c6cdab 100644 --- a/assets/svg/star_outline_half.svg +++ b/assets/svg/star_outline_half.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/statistics.svg b/assets/svg/statistics.svg index 51b1441efa..4895984cd6 100644 --- a/assets/svg/statistics.svg +++ b/assets/svg/statistics.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/teardrop.svg b/assets/svg/teardrop.svg index 9294e9f2c2..efed7c4eb1 100644 --- a/assets/svg/teardrop.svg +++ b/assets/svg/teardrop.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/teardrop_with_hole_green.svg b/assets/svg/teardrop_with_hole_green.svg index bce9cdaddd..a173f54bc5 100644 --- a/assets/svg/teardrop_with_hole_green.svg +++ b/assets/svg/teardrop_with_hole_green.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/translate.svg b/assets/svg/translate.svg index 977859d859..cfcc7316d9 100644 --- a/assets/svg/translate.svg +++ b/assets/svg/translate.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/up.svg b/assets/svg/up.svg index 499f83cb7b..ed57d9b96a 100644 --- a/assets/svg/up.svg +++ b/assets/svg/up.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/upload.svg b/assets/svg/upload.svg index d80a69509f..6342032c91 100644 --- a/assets/svg/upload.svg +++ b/assets/svg/upload.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/wikidata.svg b/assets/svg/wikidata.svg index 170ece2f35..0c609ce56b 100644 --- a/assets/svg/wikidata.svg +++ b/assets/svg/wikidata.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/svg/wikimedia-commons-white.svg b/assets/svg/wikimedia-commons-white.svg index ad1688e1c5..a0c8bc772c 100644 --- a/assets/svg/wikimedia-commons-white.svg +++ b/assets/svg/wikimedia-commons-white.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/tagRenderings/icons.json b/assets/tagRenderings/icons.json index 06b97f81ad..864f275397 100644 --- a/assets/tagRenderings/icons.json +++ b/assets/tagRenderings/icons.json @@ -1,11 +1,14 @@ { - "defaultIcons": ["phonelink", - "emaillink", - "wikipedialink", - "osmlink", - "sharelink" - ], - + "defaults": { + "builtin": [ + "phonelink", + "emaillink", + "wikipedialink", + "osmlink", + "sharelink" + ], + "override": {} + }, "wikipedialink": { "render": "WP", "condition": { diff --git a/assets/tagRenderings/questions.json b/assets/tagRenderings/questions.json index 43c91199b1..b0fb106526 100644 --- a/assets/tagRenderings/questions.json +++ b/assets/tagRenderings/questions.json @@ -37,7 +37,8 @@ "fr": "Pas encore de lien vers une page Wikipedia", "ca": "No hi ha cap enllaça a Viquipèdia encara", "sv": "Ingen Wikipedia-sida har länkats än", - "zh_Hant": "還沒有連結到維基百科頁面" + "zh_Hant": "還沒有連結到維基百科頁面", + "ru": "Никакой страницы на Википедии не было прикреплено" }, "hideInAnswer": true } @@ -109,7 +110,8 @@ "nb_NO": "Hva er respektivt element på Wikipedia?", "ca": "Quin és l'ítem a Viquipèdia?", "sv": "Vad är det motsvarande objektet på Wikipedia?", - "zh_Hant": "維基百科上對應的項目是什麼?" + "zh_Hant": "維基百科上對應的項目是什麼?", + "fr": "Quel est l’élément Wikipédia correspondant ?" }, "mappings": [ { @@ -239,7 +241,8 @@ "fr": "Cet endroit est spécialement adapté pour les usagers de fauteuils roulants", "ca": "Aquest lloc està especialment adaptat per a les cadires de rodes", "sv": "Det här stället är speciellt anpassat för rullstolsburna användare", - "zh_Hant": "這個地方有特別設計給輪椅使用者" + "zh_Hant": "這個地方有特別設計給輪椅使用者", + "ru": "Это место подходит для людей на инвалидной коляске" } }, { @@ -260,7 +263,8 @@ "fr": "Cet endroit est facilement accessible avec un fauteuil roulant", "ca": "És facilment arribable amb cadira de rodes", "sv": "Denna plats är lätt att nå med rullstol", - "zh_Hant": "這個地方坐輪椅很容易到達" + "zh_Hant": "這個地方坐輪椅很容易到達", + "ru": "До этого места легко добраться на инвалидной коляске" } }, { @@ -281,7 +285,8 @@ "nb_NO": "Det er mulig å besøke dette stedet i rullestol, men det er ikke lett", "ca": "És possible fer servir cadira de rodes a aquest lloc però no és fàcil", "sv": "Det är möjligt att nå den här platsen i en rullstol, men det är inte lätt", - "zh_Hant": "這個地方可以坐輪椅到達,但並不容易" + "zh_Hant": "這個地方可以坐輪椅到達,但並不容易", + "ru": "До этого места можно добраться, но не просто" } }, { @@ -319,7 +324,8 @@ "nb_NO": "Tillates hunder i denne forretningen?", "ca": "S'accepten gossos en aquest negoci?", "sv": "Tillåts hundar i den här affären?", - "zh_Hant": "這間商業空間是否允許犬隻?" + "zh_Hant": "這間商業空間是否允許犬隻?", + "ru": "Впускают ли собак в это здание?" }, "mappings": [ { @@ -354,7 +360,9 @@ "nb_NO": "Hunder tillates ikke", "ca": "No s'accepten gossos", "sv": "Hundar tillåts inte", - "zh_Hant": "允許犬隻" + "zh_Hant": "允許犬隻", + "pl": "Psom wstęp wzbroniony", + "ru": "С собаками не впускают" } }, { @@ -370,7 +378,8 @@ "nb_NO": "Hunder tillates, men de må være i bånd", "ca": "S'accepten gossos però lligats", "sv": "Hundar tillåts, men de måste vara kopplade", - "zh_Hant": "允許犬隻,但需要掛牽繩" + "zh_Hant": "允許犬隻,但需要掛牽繩", + "ru": "Собак впускают, но на поводке" } }, { @@ -386,7 +395,8 @@ "nb_NO": "Hunder tillates og kan gå fritt", "ca": "S'accepten gossos lliures", "sv": "Hundar tillåts och får springa fritt omkring", - "zh_Hant": "允許犬隻而且可以自由跑動" + "zh_Hant": "允許犬隻而且可以自由跑動", + "ru": "Собак свободно впускают" } } ] @@ -461,7 +471,9 @@ "ca": "Aquest servei té endolls elèctrics, disponibles pels clients quan hi són dins?", "de": "Gibt es an dieser Einrichtung Steckdosen, an denen Kunden ihre Geräte laden können?", "sv": "Har den här bekvämligheten eluttag tillgängliga för kunder när de är inne?", - "zh_Hant": "這個便利設施有電器設備,能給客戶使用嗎?" + "zh_Hant": "這個便利設施有電器設備,能給客戶使用嗎?", + "hu": "Van-e ebben a létesítményben olyan konnektor, amely a bent tartózkodó ügyfelek rendelkezésére áll?", + "fr": "Des prises sont elles à disposition des client·e·s en intérieur ?" }, "mappings": [ { @@ -472,7 +484,9 @@ "ca": "Està ple d'endolls pels clients de dins, on es poden carregar els aparells electrònics", "de": "Für Kunden stehen im Innenraum viele Steckdosen zur Verfügung, an denen sie ihre Geräte laden können", "sv": "Det finns gott om hushållsuttag tillgängliga för kunder som sitter inomhus, där de kan ladda sin elektronik", - "zh_Hant": "這邊的客戶座位有不少個室內插座,而且可以為電器充電" + "zh_Hant": "這邊的客戶座位有不少個室內插座,而且可以為電器充電", + "hu": "Számos konnektor áll a belső térben ügyfelek rendelkezésére, ahol elektromos készülékeiket tölthetik", + "fr": "Il y a suffisamment de prises disponibles pour les client·e·s en intérieur souhaitant recharger leurs appareils" }, "if": "service:electricity=yes" }, @@ -484,7 +498,9 @@ "ca": "Hi ha aslguns endolls disponibles per als clients de dins, on es poden carregar els aparells electrònics", "de": "Für Kunden stehen im Innenraum wenig Steckdosen zur Verfügung, an denen sie ihre Geräte laden können", "sv": "Det finns ett fåtal hushållsuttag tillgängliga för kunder som sitter inomhus, där de kan ladda sin elektronik", - "zh_Hant": "這邊客戶座位有一些室內插座,可以為電器充電" + "zh_Hant": "這邊客戶座位有一些室內插座,可以為電器充電", + "hu": "Csupán néhány konnektor áll a belső térben ügyfelek rendelkezésére, ahol elektromos készülékeiket tölthetik", + "fr": "Il y a peu de prises disponibles pour les client·e·s en intérieur souhaitant recharger leurs appareils" }, "if": "service:electricity=limited" }, @@ -497,7 +513,8 @@ "ca": "No hi ha endolls disponibles per als clients però es pot carregar si es demana als responsables", "de": "Für Kunden stehen im Innenraum keine Steckdosen zur Verfügung, aber Laden von Geräte könnte möglich sein, wenn das Personal gefragt wird", "sv": "Det finns inga uttag tillgängliga inomhus för kunder, men att ladda kan vara möjligt om personalen tillfrågas", - "zh_Hant": "這邊沒有給客戶用的插座,因此可能需要詢問員工是否能充電" + "zh_Hant": "這邊沒有給客戶用的插座,因此可能需要詢問員工是否能充電", + "hu": "A belső térben nincs konnektor az ügyfeleknek, de lehetséges, hogy a személyzet segítségével lehet elektromos eszközt tölteni" }, "if": "service:electricity=ask" }, @@ -510,7 +527,8 @@ "ca": "No hi ha endolls disponibles per als clients", "de": "Für Kunden stehen im Innenraum keine Steckdosen zur Verfügung", "sv": "Det finns inga hushållsuttag tillgängliga för kunder som sitter inomhus", - "zh_Hant": "這裡客戶座位沒有室內插座" + "zh_Hant": "這裡客戶座位沒有室內插座", + "hu": "A belső térben ülő ügyfeleknek nem áll rendelkezésére konnektor" }, "if": "service:electricity=no" } @@ -530,7 +548,9 @@ "nb_NO": "Hvilke betalingsmetoder godtas her?", "ca": "Quins mètodes de pagament s'accepten aquí?", "sv": "Vilka betalningsmetoder accepteras här?", - "zh_Hant": "這邊接受那種付款方式?" + "zh_Hant": "這邊接受那種付款方式?", + "pl": "Jakie metody płatności są tutaj dostępne?", + "ru": "Какие способы оплаты здесь принимают?" }, "multiAnswer": true, "mappings": [ @@ -550,7 +570,9 @@ "nb_NO": "Kontanter godtas her", "ca": "S'accepten diners", "sv": "Pengar accepteras här", - "zh_Hant": "這邊接受現金" + "zh_Hant": "這邊接受現金", + "pl": "Płatność gotówkowa jest tutaj dostępna", + "ru": "Здесь принимают наличными" } }, { @@ -569,7 +591,9 @@ "nb_NO": "Betalingskort godtas her", "ca": "S'accepten targetes de crèdit", "sv": "Betalningskort accepteras här", - "zh_Hant": "這邊接受現金卡" + "zh_Hant": "這邊接受現金卡", + "pl": "Płatność kartą jest tutaj dostępna", + "ru": "Здесь принимают банковские карты" } } ] @@ -612,7 +636,7 @@ "sv": "Ligger på {level}:e våningen", "pt": "Está no {level}º andar", "eo": "En la {level}a etaĝo", - "hu": "{level}. emeleten található", + "hu": "A(z) {level}. emeleten", "it": "Si trova al piano numero {level}", "ca": "Situat a la planta {level}" }, @@ -634,7 +658,7 @@ "sv": "Ligger under jorden", "pt": "Está no subsolo", "de": "Unterirdisch gelegen", - "hu": "A föld alatt található", + "hu": "A föld alatt", "it": "Si trova sotto il livello stradale", "nb_NO": "Under bakken", "ca": "Situat a planta subterrani" @@ -655,7 +679,7 @@ "sv": "Ligger på bottenvåningen", "pt": "Está ao nível do rés-do-chão", "eo": "En la teretaĝo", - "hu": "A földszinten található", + "hu": "A földszinten", "it": "Si trova al pianoterra", "nb_NO": "På gateplan", "ca": "Situat a planta zero" @@ -676,7 +700,7 @@ "sv": "Ligger på bottenvåningen", "pt": "Está ao nível do rés-do-chão", "eo": "En la teretaĝo", - "hu": "A földszinten található", + "hu": "A földszinten", "it": "Si trova al pianoterra", "nb_NO": "På gateplan", "ca": "Situat a planta zero" @@ -697,7 +721,7 @@ "pt": "Está no primeiro andar", "id": "Berlokasi di lantai pertama", "eo": "En la unua etaĝo", - "hu": "Az első emeleten található", + "hu": "Az első emeleten", "it": "Si trova al primo piano", "nb_NO": "I andre etasje", "ca": "Situat a primera planta" diff --git a/assets/themes/aed/aed.json b/assets/themes/aed/aed.json index 78513e08bc..9fb237ebe6 100644 --- a/assets/themes/aed/aed.json +++ b/assets/themes/aed/aed.json @@ -7,7 +7,7 @@ "fr": "Carte des défibrillateurs (DAE)", "nl": "Open AED-kaart", "de": "AED-Karte öffnen", - "hu": "Nyílt AED Térkép", + "hu": "Defibrillátor-térkép", "id": "Buka Peta AED", "it": "Mappa dei defibrillatori (DAE)", "ru": "Открытая карта АВД (Автоматизированных внешних дефибрилляторов)", @@ -35,7 +35,8 @@ "sv": "På denna karta kan man hitta och markera närliggande defibrillatorer", "pl": "Na tej mapie można znaleźć i oznaczyć defibrylatory w okolicy", "pt_BR": "Neste mapa, pode-se encontrar e marcar desfibriladores próximos", - "nb_NO": "Defibrillatorer i nærheten" + "nb_NO": "Defibrillatorer i nærheten", + "hu": "Ezen a térképen a közeli defibrillátorokat lehet megtalálni és feltüntetni" }, "language": [ "en", diff --git a/assets/themes/aed/aed.svg b/assets/themes/aed/aed.svg index c3bbfd6779..3ab3f88404 100644 --- a/assets/themes/aed/aed.svg +++ b/assets/themes/aed/aed.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/artwork/artwork.json b/assets/themes/artwork/artwork.json index 80d4f23728..96bb1079d4 100644 --- a/assets/themes/artwork/artwork.json +++ b/assets/themes/artwork/artwork.json @@ -6,7 +6,7 @@ "nl": "Open kunstwerken-kaart", "fr": "Carte ouverte des œuvres d'art", "de": "Freie Kunstwerk-Karte", - "hu": "Nyít Műalkotás Térkép", + "hu": "Műalkotástérkép", "id": "Buka Peta Karya Seni", "it": "Mappa libera delle opere d'arte", "ru": "Открытая карта произведений искусства", @@ -26,7 +26,9 @@ "es": "Bienvenido a Open Artwork Map, un mapa de estatuas, bustos, grafitis y otras obras de arte de todo el mundo", "ja": "オープン アートワーク マップへようこそ。世界中の銅像や胸像、壁の落書きなどのアートワークの地図です", "zh_Hant": "歡迎來到開放藝術品地圖,這份地圖會顯示全世界的雕像、半身像、塗鴉以及其他類型的藝術品", - "nb_NO": "Velkommen til det åpne kunstverkskartet, et kart over statuer, byster, grafitti, og andre kunstverk i verden" + "nb_NO": "Velkommen til det åpne kunstverkskartet, et kart over statuer, byster, grafitti, og andre kunstverk i verden", + "hu": "Isten hozott a nyílt műalkotástérképen, a világ minden táján megtalálható szobrok, mellszobrok, grafittik és más műalkotások térképén", + "pl": "Witaj w Open Artwork Map, mapie pomników, popierś, graffitti i innych dzieł sztuki z całego świata" }, "language": [ "en", diff --git a/assets/themes/artwork/artwork.svg b/assets/themes/artwork/artwork.svg index 685275a24c..8dd4f697c7 100644 --- a/assets/themes/artwork/artwork.svg +++ b/assets/themes/artwork/artwork.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/benches/bench_poi.svg b/assets/themes/benches/bench_poi.svg index a26380a4ba..8c02d12595 100644 --- a/assets/themes/benches/bench_poi.svg +++ b/assets/themes/benches/bench_poi.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/benches/bench_public_transport.svg b/assets/themes/benches/bench_public_transport.svg index 2053c42211..d8a6150205 100644 --- a/assets/themes/benches/bench_public_transport.svg +++ b/assets/themes/benches/bench_public_transport.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/bicyclelib/bicyclelib.json b/assets/themes/bicyclelib/bicyclelib.json index 8e5d817a15..5d8d3b2ade 100644 --- a/assets/themes/bicyclelib/bicyclelib.json +++ b/assets/themes/bicyclelib/bicyclelib.json @@ -12,7 +12,8 @@ "zh_Hant", "nb_NO", "de", - "pt_BR" + "pt_BR", + "pl" ], "title": { "en": "Bicycle libraries", @@ -24,7 +25,8 @@ "zh_Hant": "單車圖書館", "nb_NO": "Sykkelbibliotek", "de": "Fahrradbibliothek", - "pt_BR": "Bibliotecas de bicicletas" + "pt_BR": "Bibliotecas de bicicletas", + "pl": "Wypożyczalnie rowerów" }, "description": { "nl": "Een fietsbibliotheek is een plaats waar men een fiets kan lenen, vaak voor een klein bedrag per jaar. Een typisch voorbeeld zijn kinderfietsbibliotheken, waar men een fiets op maat van het kind kan lenen. Is het kind de fiets ontgroeid, dan kan het te kleine fietsje omgeruild worden voor een grotere.", @@ -37,7 +39,6 @@ "de": "Fahrradbibliotheken sind Orte, um Fahrräder auszuleihen, oft gegen eine geringe Gebühr. Ein wichtiger Anwendungsfall sind Fahrradbibliotheken für Kinder, die es ihnen ermöglichen, auf ein größeres Fahrrad umzusteigen, wenn sie aus ihrem aktuellen Fahrrad herausgewachsen sind" }, "icon": "./assets/themes/bicyclelib/logo.svg", - "socialImage": null, "startLat": 0, "startLon": 0, "startZoom": 1, diff --git a/assets/themes/bicyclelib/logo.svg b/assets/themes/bicyclelib/logo.svg index 48fa85301f..92a6c880e9 100644 --- a/assets/themes/bicyclelib/logo.svg +++ b/assets/themes/bicyclelib/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/bookcases/bookcase.svg b/assets/themes/bookcases/bookcase.svg index ad216c21cd..a49c40b27a 100644 --- a/assets/themes/bookcases/bookcase.svg +++ b/assets/themes/bookcases/bookcase.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/bookcases/bookcases.json b/assets/themes/bookcases/bookcases.json index 252f510485..7dfab95430 100644 --- a/assets/themes/bookcases/bookcases.json +++ b/assets/themes/bookcases/bookcases.json @@ -27,7 +27,7 @@ "nb_NO": "Kart over åpne bokhyller" }, "description": { - "en": "A public bookcase is a small streetside cabinet, box, old phone boot or some other objects where books are stored. Everyone can place or take a book. This map aims to collect all these bookcases. You can discover new bookcases nearby and, with a free OpenStreetMap account, quickly add your favourite bookcases.", + "en": "A public bookcase is a small streetside cabinet, box, old phone booth or some other objects where books are stored. Everyone can place or take a book. This map aims to collect all these bookcases. You can discover new bookcases nearby and, with a free OpenStreetMap account, quickly add your favourite bookcases.", "nl": "Een boekenruilkast is een kastje waar iedereen een boek kan nemen of achterlaten. Op deze kaart kan je deze boekenruilkasten terugvinden en met een gratis OpenStreetMap-account, ook boekenruilkasten toevoegen of informatie verbeteren", "de": "Bücherschränke sind alte Schaltschränke, Telefonzellen oder andere Einrichtungen, zur Aufbewahrung von Büchern. Jeder kann Bücher abstellen oder mitnehmen. Die Karte zielt darauf ab, alle Orte mit Bücherschränken zu sammeln. Sie können neue Bücherschränke in der Nähe entdecken und mit einem kostenlosen OpenStreetMap-Konto schnell Ihre Lieblingsbücherschränke hinzufügen.", "fr": "Une microbibliothèques, également appelée boite à livre, est un élément de mobilier urbain (étagère, armoire, etc) dans lequel sont stockés des livres et autres objets en accès libre. Découvrez les boites à livres prêt de chez vous, ou ajouter en une nouvelle à l'aide de votre compte OpenStreetMap.", @@ -37,7 +37,6 @@ "it": "Una minibiblioteca è una piccola cabina a lato della strada, una scatola, una vecchia cabina telefonica o qualche altro contenitore che ospita libri. Tutti può lasciare o prendere un libro. Questa mappa punta a rappresentarle tutte. Puoi facilmente scoprire nuove minibiblioteche nelle tue vicinanze e, con un account gratuito su OpenStreetMap, puoi aggiungerne altre." }, "icon": "./assets/themes/bookcases/bookcase.svg", - "socialImage": null, "startLat": 0, "startLon": 0, "startZoom": 1, diff --git a/assets/themes/buurtnatuur/forest.svg b/assets/themes/buurtnatuur/forest.svg index 8f9e7ec471..c003758469 100644 --- a/assets/themes/buurtnatuur/forest.svg +++ b/assets/themes/buurtnatuur/forest.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/buurtnatuur/groen_logo.svg b/assets/themes/buurtnatuur/groen_logo.svg index 79e8791fd0..6d33010762 100644 --- a/assets/themes/buurtnatuur/groen_logo.svg +++ b/assets/themes/buurtnatuur/groen_logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/buurtnatuur/nature_reserve.svg b/assets/themes/buurtnatuur/nature_reserve.svg index af9e812c2f..97d700ba9f 100644 --- a/assets/themes/buurtnatuur/nature_reserve.svg +++ b/assets/themes/buurtnatuur/nature_reserve.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/buurtnatuur/park.svg b/assets/themes/buurtnatuur/park.svg index 749f61d8f5..fb42bcc613 100644 --- a/assets/themes/buurtnatuur/park.svg +++ b/assets/themes/buurtnatuur/park.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/campersite/campersite.json b/assets/themes/campersite/campersite.json index 61ba13a4dc..dae4e86338 100644 --- a/assets/themes/campersite/campersite.json +++ b/assets/themes/campersite/campersite.json @@ -335,7 +335,8 @@ "fr": "Cet endroit offre-t-il un accès à Internet ?", "zh_Hant": "這個地方有提網路連線嗎?", "pt_BR": "Este lugar fornece acesso a internet?", - "de": "Ist an diesem Ort ein Internetzugang vorhanden?" + "de": "Ist an diesem Ort ein Internetzugang vorhanden?", + "nl": "Biedt deze plaats internettoegang?" }, "mappings": [ { @@ -393,7 +394,8 @@ "zh_Hant": "這裡沒有網路連線", "fr": "Il n’y a pas d’accès internet", "pt_BR": "Não há acesso à internet", - "de": "Kein Internetzugang vorhanden" + "de": "Kein Internetzugang vorhanden", + "nl": "Er is geen internettoegang" } } ] @@ -463,7 +465,8 @@ "nb_NO": "Har dette stedet toaletter?", "fr": "Y-a-t’il des toilettes sur le site ?", "pt_BR": "Este lugar tem banheiros?", - "de": "Verfügt dieser Ort über Toiletten?" + "de": "Verfügt dieser Ort über Toiletten?", + "nl": "Heeft deze plaats toiletten?" }, "mappings": [ { @@ -482,7 +485,8 @@ "nb_NO": "Dette stedet har toalettfasiliteter", "fr": "Ce site a des toilettes", "pt_BR": "Este lugar tem banheiros", - "de": "Dieser Ort verfügt über Toiletten" + "de": "Dieser Ort verfügt über Toiletten", + "nl": "Deze plaats heeft toiletten" } }, { @@ -501,7 +505,8 @@ "nb_NO": "Dette stedet har ikke toalettfasiliteter", "fr": "Ce site n’a pas de toilettes", "pt_BR": "Este lugar não tem banheiros", - "de": "Dieser Ort verfügt nicht über Toiletten" + "de": "Dieser Ort verfügt nicht über Toiletten", + "nl": "Deze plaats heeft geen toiletten" } } ] @@ -534,7 +539,8 @@ "zh_Hant": "這個地方有網站嗎?", "fr": "Ce lieu a-t’il un site internet ?", "pt_BR": "Este lugar tem um website?", - "de": "Hat dieser Ort eine Webseite?" + "de": "Hat dieser Ort eine Webseite?", + "nl": "Heeft deze plaats een website?" }, "id": "caravansites-website" }, diff --git a/assets/themes/campersite/caravan.svg b/assets/themes/campersite/caravan.svg index dff85ca554..45d06e4dc6 100644 --- a/assets/themes/campersite/caravan.svg +++ b/assets/themes/campersite/caravan.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/campersite/caravan_green.svg b/assets/themes/campersite/caravan_green.svg index 3237535896..af80ec8578 100644 --- a/assets/themes/campersite/caravan_green.svg +++ b/assets/themes/campersite/caravan_green.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/campersite/sanitary_dump_station.svg b/assets/themes/campersite/sanitary_dump_station.svg index ec58eaad82..b3c2c45f47 100644 --- a/assets/themes/campersite/sanitary_dump_station.svg +++ b/assets/themes/campersite/sanitary_dump_station.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/charging_stations/bicycle.svg b/assets/themes/charging_stations/bicycle.svg index 7b78c8c2ee..e2bdb47f0e 100644 --- a/assets/themes/charging_stations/bicycle.svg +++ b/assets/themes/charging_stations/bicycle.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/charging_stations/car.svg b/assets/themes/charging_stations/car.svg index d6128f17d6..97b04cd4f1 100644 --- a/assets/themes/charging_stations/car.svg +++ b/assets/themes/charging_stations/car.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/charging_stations/logo.svg b/assets/themes/charging_stations/logo.svg index 6d90202cbb..fc4c5f9ebc 100644 --- a/assets/themes/charging_stations/logo.svg +++ b/assets/themes/charging_stations/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/charging_stations/plug.svg b/assets/themes/charging_stations/plug.svg index 7ca76d044d..6d0cd0c35e 100644 --- a/assets/themes/charging_stations/plug.svg +++ b/assets/themes/charging_stations/plug.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/climbing/carabiner.svg b/assets/themes/climbing/carabiner.svg index 1f811f6981..06682ab128 100644 --- a/assets/themes/climbing/carabiner.svg +++ b/assets/themes/climbing/carabiner.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/climbing/climbing_gym.svg b/assets/themes/climbing/climbing_gym.svg index 5b5c68d90b..c437e8da62 100644 --- a/assets/themes/climbing/climbing_gym.svg +++ b/assets/themes/climbing/climbing_gym.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/climbing/climbing_icon.svg b/assets/themes/climbing/climbing_icon.svg index 9e098579c2..d68108e511 100644 --- a/assets/themes/climbing/climbing_icon.svg +++ b/assets/themes/climbing/climbing_icon.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/climbing/climbing_no_rope.svg b/assets/themes/climbing/climbing_no_rope.svg index adee00dbe1..22afca58d3 100644 --- a/assets/themes/climbing/climbing_no_rope.svg +++ b/assets/themes/climbing/climbing_no_rope.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/climbing/climbing_rope.svg b/assets/themes/climbing/climbing_rope.svg index 7ec867009c..29ad63d1db 100644 --- a/assets/themes/climbing/climbing_rope.svg +++ b/assets/themes/climbing/climbing_rope.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/climbing/climbing_route.svg b/assets/themes/climbing/climbing_route.svg index 1803dcd000..9a5dafe74c 100644 --- a/assets/themes/climbing/climbing_route.svg +++ b/assets/themes/climbing/climbing_route.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/climbing/club.svg b/assets/themes/climbing/club.svg index 1912b69ab9..dbe630c9ab 100644 --- a/assets/themes/climbing/club.svg +++ b/assets/themes/climbing/club.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/climbing/height.svg b/assets/themes/climbing/height.svg index 86a349f25b..ce9f59fb4f 100644 --- a/assets/themes/climbing/height.svg +++ b/assets/themes/climbing/height.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_highways/fietssnelwegen-logo.svg b/assets/themes/cycle_highways/fietssnelwegen-logo.svg index bf9e612a8f..52810e3aaa 100644 --- a/assets/themes/cycle_highways/fietssnelwegen-logo.svg +++ b/assets/themes/cycle_highways/fietssnelwegen-logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Belgian_road_sign_D07.svg b/assets/themes/cycle_infra/Belgian_road_sign_D07.svg index ef8345fce6..d5a7af7a4d 100644 --- a/assets/themes/cycle_infra/Belgian_road_sign_D07.svg +++ b/assets/themes/cycle_infra/Belgian_road_sign_D07.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Belgian_road_sign_D09.svg b/assets/themes/cycle_infra/Belgian_road_sign_D09.svg index 2aa99b5662..54f014cdc2 100644 --- a/assets/themes/cycle_infra/Belgian_road_sign_D09.svg +++ b/assets/themes/cycle_infra/Belgian_road_sign_D09.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Belgian_road_sign_D10.svg b/assets/themes/cycle_infra/Belgian_road_sign_D10.svg index 74e042fded..4eef09fd46 100644 --- a/assets/themes/cycle_infra/Belgian_road_sign_D10.svg +++ b/assets/themes/cycle_infra/Belgian_road_sign_D10.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg index 2bce1c7179..c7d097e205 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg index ba8285fbc2..1c9716eca8 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg index 046ff78823..e8ef24e560 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg index 9db585d0e2..fe0dbd38ca 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg index e06dba7d80..e60d661cc3 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg index fa3c4a2855..c533ae6ce3 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Cycle_barrier_double.svg b/assets/themes/cycle_infra/Cycle_barrier_double.svg index 9c665aff83..4fbc0d832b 100644 --- a/assets/themes/cycle_infra/Cycle_barrier_double.svg +++ b/assets/themes/cycle_infra/Cycle_barrier_double.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Cycle_barrier_double_length.svg b/assets/themes/cycle_infra/Cycle_barrier_double_length.svg index 4f3b8d5e88..289a645ed4 100644 --- a/assets/themes/cycle_infra/Cycle_barrier_double_length.svg +++ b/assets/themes/cycle_infra/Cycle_barrier_double_length.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Cycle_barrier_double_overlap.svg b/assets/themes/cycle_infra/Cycle_barrier_double_overlap.svg index db33697dbf..f82e706d38 100644 --- a/assets/themes/cycle_infra/Cycle_barrier_double_overlap.svg +++ b/assets/themes/cycle_infra/Cycle_barrier_double_overlap.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Cycle_barrier_double_template.svg b/assets/themes/cycle_infra/Cycle_barrier_double_template.svg index 5276a646f6..fc196865b4 100644 --- a/assets/themes/cycle_infra/Cycle_barrier_double_template.svg +++ b/assets/themes/cycle_infra/Cycle_barrier_double_template.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/Cycle_barrier_double_width.svg b/assets/themes/cycle_infra/Cycle_barrier_double_width.svg index a9bfa60a94..ee732b5116 100644 --- a/assets/themes/cycle_infra/Cycle_barrier_double_width.svg +++ b/assets/themes/cycle_infra/Cycle_barrier_double_width.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/bicycleway.svg b/assets/themes/cycle_infra/bicycleway.svg index 289f399a67..fcc31cb70e 100644 --- a/assets/themes/cycle_infra/bicycleway.svg +++ b/assets/themes/cycle_infra/bicycleway.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/cycle-infra.svg b/assets/themes/cycle_infra/cycle-infra.svg index 04d1dddf98..abd6dea01a 100644 --- a/assets/themes/cycle_infra/cycle-infra.svg +++ b/assets/themes/cycle_infra/cycle-infra.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cycle_infra/street.svg b/assets/themes/cycle_infra/street.svg index b0d793960c..693b858174 100644 --- a/assets/themes/cycle_infra/street.svg +++ b/assets/themes/cycle_infra/street.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cyclestreets/F111.svg b/assets/themes/cyclestreets/F111.svg index 637ffbc619..5187f3692e 100644 --- a/assets/themes/cyclestreets/F111.svg +++ b/assets/themes/cyclestreets/F111.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cyclofix/cyclofix.json b/assets/themes/cyclofix/cyclofix.json index 23a2adb324..4fb30eea91 100644 --- a/assets/themes/cyclofix/cyclofix.json +++ b/assets/themes/cyclofix/cyclofix.json @@ -36,7 +36,7 @@ ], "maintainer": "MapComplete", "credits": "Originally created during Open Summer of Code by Pieter Fiers, Thibault Declercq, Pierre Barban, Joost Schouppe and Pieter Vander Vennet", - "icon": "assets/themes/cyclofix/logo.svg", + "icon": "./assets/themes/cyclofix/logo.svg", "version": "0", "startLat": 0, "defaultBackgroundId": "CartoDB.Voyager", diff --git a/assets/themes/cyclofix/fietsambassade_gent_logo.svg b/assets/themes/cyclofix/fietsambassade_gent_logo.svg index aae60ee388..42714a138b 100644 --- a/assets/themes/cyclofix/fietsambassade_gent_logo.svg +++ b/assets/themes/cyclofix/fietsambassade_gent_logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cyclofix/fietsambassade_gent_logo_small.svg b/assets/themes/cyclofix/fietsambassade_gent_logo_small.svg index 5308c42e75..258b3daf6e 100644 --- a/assets/themes/cyclofix/fietsambassade_gent_logo_small.svg +++ b/assets/themes/cyclofix/fietsambassade_gent_logo_small.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/cyclofix/logo.svg b/assets/themes/cyclofix/logo.svg index f338707f79..0e9e260d34 100644 --- a/assets/themes/cyclofix/logo.svg +++ b/assets/themes/cyclofix/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/entrances/entrances.json b/assets/themes/entrances/entrances.json index 50d6192246..0767dc4a37 100644 --- a/assets/themes/entrances/entrances.json +++ b/assets/themes/entrances/entrances.json @@ -1,17 +1,21 @@ { "id": "entrances", "title": { - "en": "Entrances" + "en": "Entrances", + "zh_Hant": "出入口" }, "icon": "./assets/layers/entrance/door.svg", "description": { - "en": "A map showing all entrances, which surveys for important aspects for wheelchair users" + "en": "A map showing all entrances, which surveys for important aspects for wheelchair users", + "zh_Hant": "顯示所有出入口的地圖,勘查對輪椅使用者重要的資訊" }, "shortDescription": { - "en": "Survey entrances to help wheelchair routing" + "en": "Survey entrances to help wheelchair routing", + "zh_Hant": "幫助輪椅導航來勘查出入口" }, "language": [ - "en" + "en", + "zh_Hant" ], "version": "2021-12-04", "maintainer": "MapComplete", diff --git a/assets/themes/facadegardens/bloei.svg b/assets/themes/facadegardens/bloei.svg index 5cbdab3e06..94bf0494af 100644 --- a/assets/themes/facadegardens/bloei.svg +++ b/assets/themes/facadegardens/bloei.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/facadegardens/bodembedekker.svg b/assets/themes/facadegardens/bodembedekker.svg index 88abd37b88..aa2d4a0b18 100644 --- a/assets/themes/facadegardens/bodembedekker.svg +++ b/assets/themes/facadegardens/bodembedekker.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/facadegardens/eetbaar.svg b/assets/themes/facadegardens/eetbaar.svg index ca608b7ecc..855a250ef0 100644 --- a/assets/themes/facadegardens/eetbaar.svg +++ b/assets/themes/facadegardens/eetbaar.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/facadegardens/gevelton.svg b/assets/themes/facadegardens/gevelton.svg index 885796c1d5..ee58806d05 100644 --- a/assets/themes/facadegardens/gevelton.svg +++ b/assets/themes/facadegardens/gevelton.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/facadegardens/geveltuin.svg b/assets/themes/facadegardens/geveltuin.svg index 10624d15fa..42c61fa02a 100644 --- a/assets/themes/facadegardens/geveltuin.svg +++ b/assets/themes/facadegardens/geveltuin.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/facadegardens/halfzon.svg b/assets/themes/facadegardens/halfzon.svg index 543312dada..6d3b158612 100644 --- a/assets/themes/facadegardens/halfzon.svg +++ b/assets/themes/facadegardens/halfzon.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/facadegardens/klimplant.svg b/assets/themes/facadegardens/klimplant.svg index fa2d9b7c19..f6e185cb81 100644 --- a/assets/themes/facadegardens/klimplant.svg +++ b/assets/themes/facadegardens/klimplant.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/facadegardens/schaduw.svg b/assets/themes/facadegardens/schaduw.svg index c43b836af9..961b83e050 100644 --- a/assets/themes/facadegardens/schaduw.svg +++ b/assets/themes/facadegardens/schaduw.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/facadegardens/struik.svg b/assets/themes/facadegardens/struik.svg index 4d164460d9..501f5093fc 100644 --- a/assets/themes/facadegardens/struik.svg +++ b/assets/themes/facadegardens/struik.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/facadegardens/zon.svg b/assets/themes/facadegardens/zon.svg index 038a170640..48c7d40b8e 100644 --- a/assets/themes/facadegardens/zon.svg +++ b/assets/themes/facadegardens/zon.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/fritures/Vegetarian-mark.svg b/assets/themes/fritures/Vegetarian-mark.svg index 22f11fd4ba..9ec14b57a4 100644 --- a/assets/themes/fritures/Vegetarian-mark.svg +++ b/assets/themes/fritures/Vegetarian-mark.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/fritures/fries.svg b/assets/themes/fritures/fries.svg index 3803dc8f3b..763c73b697 100644 --- a/assets/themes/fritures/fries.svg +++ b/assets/themes/fritures/fries.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/fritures/logo.svg b/assets/themes/fritures/logo.svg index eed466277f..6847b46183 100644 --- a/assets/themes/fritures/logo.svg +++ b/assets/themes/fritures/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/fruit_trees/fruit_tree.svg b/assets/themes/fruit_trees/fruit_tree.svg index 69b12e6380..e5cce675ec 100644 --- a/assets/themes/fruit_trees/fruit_tree.svg +++ b/assets/themes/fruit_trees/fruit_tree.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/ghostbikes/ghostbikes.json b/assets/themes/ghostbikes/ghostbikes.json index 9dc192b8ae..e8912328c2 100644 --- a/assets/themes/ghostbikes/ghostbikes.json +++ b/assets/themes/ghostbikes/ghostbikes.json @@ -33,7 +33,7 @@ "es": "Bicicleta blanca", "fi": "Haamupyörä", "gl": "Bicicleta pantasma", - "hu": "Emlékkerékpár", + "hu": "Emlékkerékpárok", "it": "Bici fantasma", "pl": "Duch roweru", "pt_BR": "Bicicleta fantasma", diff --git a/assets/themes/ghostbikes/logo.svg b/assets/themes/ghostbikes/logo.svg index 5b5451cd78..1965038959 100644 --- a/assets/themes/ghostbikes/logo.svg +++ b/assets/themes/ghostbikes/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/grb_import/grb.json b/assets/themes/grb_import/grb.json index 46cafc6cec..7fcaf70e9c 100644 --- a/assets/themes/grb_import/grb.json +++ b/assets/themes/grb_import/grb.json @@ -30,28 +30,6 @@ "minzoom": 19 }, "layers": [ - { - "builtin": "current_view", - "override": { - "+mapRendering": [ - { - "location": [ - "point" - ], - "icon": { - "render": "./assets/svg/robot.svg" - }, - "iconSize": "15,15,center" - } - ], - "tagRenderings": [ - { - "id": "hw", - "render": "Beep boop! I'm a bot!" - } - ] - } - }, { "builtin": "type_node", "override": { diff --git a/assets/themes/grb_import/housenumber_blank.svg b/assets/themes/grb_import/housenumber_blank.svg index 31813a679e..c8f1a7f011 100644 --- a/assets/themes/grb_import/housenumber_blank.svg +++ b/assets/themes/grb_import/housenumber_blank.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/hackerspaces/glider.svg b/assets/themes/hackerspaces/glider.svg index 77a5fc6921..3f75487628 100644 --- a/assets/themes/hackerspaces/glider.svg +++ b/assets/themes/hackerspaces/glider.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/hailhydrant/Twemoji12_1f692.svg b/assets/themes/hailhydrant/Twemoji12_1f692.svg index 4000107d05..97ee5e448b 100644 --- a/assets/themes/hailhydrant/Twemoji12_1f692.svg +++ b/assets/themes/hailhydrant/Twemoji12_1f692.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/hailhydrant/Twemoji12_1f9ef.svg b/assets/themes/hailhydrant/Twemoji12_1f9ef.svg index 0010dfbbf1..775a7ba497 100644 --- a/assets/themes/hailhydrant/Twemoji12_1f9ef.svg +++ b/assets/themes/hailhydrant/Twemoji12_1f9ef.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/hailhydrant/Twemoji12_26d1.svg b/assets/themes/hailhydrant/Twemoji12_26d1.svg index 69c219e767..880a5537af 100644 --- a/assets/themes/hailhydrant/Twemoji12_26d1.svg +++ b/assets/themes/hailhydrant/Twemoji12_26d1.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/hailhydrant/Twemoji_1f691.svg b/assets/themes/hailhydrant/Twemoji_1f691.svg index e98d41bcec..1adc8a0921 100644 --- a/assets/themes/hailhydrant/Twemoji_1f691.svg +++ b/assets/themes/hailhydrant/Twemoji_1f691.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/hailhydrant/hydrant_pillar.svg b/assets/themes/hailhydrant/hydrant_pillar.svg index a852a7cf46..d6a301fc13 100644 --- a/assets/themes/hailhydrant/hydrant_pillar.svg +++ b/assets/themes/hailhydrant/hydrant_pillar.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/hailhydrant/hydrant_underground.svg b/assets/themes/hailhydrant/hydrant_underground.svg index 68a7c94fe4..a71848681f 100644 --- a/assets/themes/hailhydrant/hydrant_underground.svg +++ b/assets/themes/hailhydrant/hydrant_underground.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/hailhydrant/hydrant_unknown.svg b/assets/themes/hailhydrant/hydrant_unknown.svg index d2e1cc25c1..90eec0cc32 100644 --- a/assets/themes/hailhydrant/hydrant_unknown.svg +++ b/assets/themes/hailhydrant/hydrant_unknown.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/hailhydrant/logo.svg b/assets/themes/hailhydrant/logo.svg index 0c3c36c42c..087d13d4b6 100644 --- a/assets/themes/hailhydrant/logo.svg +++ b/assets/themes/hailhydrant/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.json new file mode 100644 index 0000000000..392eabd718 --- /dev/null +++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.json @@ -0,0 +1,398 @@ +{ + "id": "mapcomplete-changes", + "title": { + "en": "Changes made with MapComplete" + }, + "shortDescription": { + "en": "Shows changes made by MapComplete" + }, + "description": { + "en": "This maps shows all the changes made with MapComplete" + }, + "language": [ + "en" + ], + "maintainer": "", + "icon": "./assets/svg/logo.svg", + "hideFromOverview": true, + "version": "0", + "startLat": 0, + "startLon": 0, + "startZoom": 1, + "widenFactor": 0.05, + "clustering": false, + "layers": [ + { + "id": "mapcomplete-changes", + "name": { + "en": "Changeset centers" + }, + "minzoom": 0, + "source": { + "osmTags": "editor~*", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/mapcomplete-changes/tile_{z}_{x}_{y}.geojson", + "geoJsonZoomLevel": 8, + "maxCacheAge": 0 + }, + "calculatedTags": [ + "_last_edit:contributor:lc:=feat.properties['_last_edit:contributor'].toLowerCase()" + ], + "title": { + "render": { + "en": "Changeset for {theme}" + } + }, + "description": { + "en": "Shows all MapComplete changes" + }, + "tagRenderings": [ + { + "id": "render_id", + "render": { + "en": "Changeset {id}" + } + }, + { + "id": "contributor", + "render": { + "en": "Change made by {_last_edit:contributor}" + } + }, + { + "id": "theme", + "render": { + "en": "Change with theme {theme}" + }, + "mappings": [ + { + "if": "theme~http.*", + "then": { + "en": "Change with unofficial theme {theme}" + } + } + ] + } + ], + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "teardrop:#00cc00", + "mappings": [ + { + "if": "theme=aed", + "then": "./assets/themes/aed/logo.svg" + }, + { + "if": "theme=aed_brugge", + "then": "./assets/themes/aed/logo.svg" + }, + { + "if": "theme=artwork", + "then": "./assets/themes/artwork/artwork.svg" + }, + { + "if": "theme=benches", + "then": "./assets/themes/benches/bench_poi.svg" + }, + { + "if": "theme=bicyclelib", + "then": "./assets/themes/bicyclelib/logo.svg" + }, + { + "if": "theme=binoculars", + "then": "./assets/layers/binocular/telescope.svg" + }, + { + "if": "theme=bookcases", + "then": "./assets/themes/bookcases/bookcase.svg" + }, + { + "if": "theme=buurtnatuur", + "then": "./assets/themes/buurtnatuur/groen_logo.svg" + }, + { + "if": "theme=cafes_and_pubs", + "then": "./assets/layers/cafe_pub/pub.svg" + }, + { + "if": "theme=campersite", + "then": "./assets/themes/campersite/caravan.svg" + }, + { + "if": "theme=charging_stations", + "then": "./assets/themes/charging_stations/logo.svg" + }, + { + "if": "theme=climbing", + "then": "./assets/themes/climbing/climbing_icon.svg" + }, + { + "if": "theme=cycle_highways", + "then": "./assets/themes/cycle_highways/fietssnelwegen-logo.svg" + }, + { + "if": "theme=cycle_infra", + "then": "./assets/themes/cycle_infra/cycle-infra.svg" + }, + { + "if": "theme=cyclenodes", + "then": "./assets/themes/cyclenodes/logo.svg" + }, + { + "if": "theme=cyclestreets", + "then": "./assets/themes/cyclestreets/F111.svg" + }, + { + "if": "theme=cyclofix", + "then": "./assets/themes/cyclofix/logo.svg" + }, + { + "if": "theme=drinking_water", + "then": "./assets/themes/drinking_water/logo.svg" + }, + { + "if": "theme=entrances", + "then": "./assets/layers/entrance/door.svg" + }, + { + "if": "theme=etymology", + "then": "./assets/layers/etymology/logo.svg" + }, + { + "if": "theme=facadegardens", + "then": "./assets/themes/facadegardens/geveltuin.svg" + }, + { + "if": "theme=food", + "then": "./assets/layers/food/restaurant.svg" + }, + { + "if": "theme=fritures", + "then": "./assets/themes/fritures/logo.svg" + }, + { + "if": "theme=fruit_trees", + "then": "./assets/themes/fruit_trees/fruit_tree.svg" + }, + { + "if": "theme=ghostbikes", + "then": "./assets/themes/ghostbikes/logo.svg" + }, + { + "if": "theme=grb", + "then": "./assets/themes/grb_import/housenumber_blank.svg" + }, + { + "if": "theme=grb_fixme", + "then": "./assets/svg/bug.svg" + }, + { + "if": "theme=missing_streets", + "then": "./assets/svg/robot.svg" + }, + { + "if": "theme=hackerspaces", + "then": "./assets/themes/hackerspaces/glider.svg" + }, + { + "if": "theme=hailhydrant", + "then": "./assets/themes/hailhydrant/logo.svg" + }, + { + "if": "theme=mapcomplete-changes", + "then": "./assets/svg/logo.svg" + }, + { + "if": "theme=maps", + "then": "./assets/themes/maps/logo.svg" + }, + { + "if": "theme=nature", + "then": "./assets/themes/nature/logo.svg" + }, + { + "if": "theme=natuurpunt", + "then": "./assets/themes/natuurpunt/natuurpunt.png" + }, + { + "if": "theme=notes", + "then": "./assets/svg/resolved.svg" + }, + { + "if": "theme=observation_towers", + "then": "./assets/layers/observation_tower/Tower_observation.svg" + }, + { + "if": "theme=openwindpowermap", + "then": "./assets/themes/openwindpowermap/wind_turbine.svg" + }, + { + "if": "theme=parkings", + "then": "./assets/themes/parkings/parkings.svg" + }, + { + "if": "theme=personal", + "then": "./assets/svg/addSmall.svg" + }, + { + "if": "theme=play_forests", + "then": "./assets/layers/play_forest/icon.svg" + }, + { + "if": "theme=playgrounds", + "then": "./assets/themes/playgrounds/playground.svg" + }, + { + "if": "theme=postal_codes", + "then": "./assets/themes/postal_codes/townhall.svg" + }, + { + "if": "theme=postboxes", + "then": "./assets/themes/postboxes/postbox.svg" + }, + { + "if": "theme=shops", + "then": "./assets/themes/shops/shop.svg" + }, + { + "if": "theme=sidewalks", + "then": "./assets/svg/bug.svg" + }, + { + "if": "theme=speelplekken", + "then": "./assets/themes/speelplekken/logo.svg" + }, + { + "if": "theme=sport_pitches", + "then": "./assets/layers/sport_pitch/table_tennis.svg" + }, + { + "if": "theme=street_lighting", + "then": "./assets/layers/street_lamps/street_lamp.svg" + }, + { + "if": "theme=street_lighting_assen", + "then": "./assets/layers/street_lamps/street_lamp.svg" + }, + { + "if": "theme=surveillance", + "then": "./assets/themes/surveillance/logo.svg" + }, + { + "if": "theme=toerisme_vlaanderen", + "then": "./assets/svg/teardrop_with_hole_green.svg" + }, + { + "if": "theme=toilets", + "then": "./assets/themes/toilets/toilets.svg" + }, + { + "if": "theme=trees", + "then": "./assets/themes/trees/logo.svg" + }, + { + "if": "theme=uk_addresses", + "then": "./assets/themes/uk_addresses/housenumber_unknown.svg" + }, + { + "if": "theme=waste_basket", + "then": "./assets/themes/waste_basket/waste_basket.svg" + } + ] + }, + "iconSize": "30,30,center" + } + ], + "filter": [ + { + "id": "theme-search", + "options": [ + { + "osmTags": "theme~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Themename contains {search}" + } + } + ] + }, + { + "id": "created_by", + "options": [ + { + "osmTags": "_last_edit:contributor:lc~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Made by contributor {search}" + } + } + ] + }, + { + "id": "not_created_by", + "options": [ + { + "osmTags": "_last_edit:contributor:lc!~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Not made by contributor {search}" + } + } + ] + } + ] + }, + { + "builtin": "current_view", + "override": { + "title": "Statistics on changesets in the current view", + "tagRenderings": [ + { + "id": "link_to_more", + "render": { + "en": "More statistics can be found here" + } + }, + { + "id": "hist_themes", + "render": "{histogram(_embedded_cs:themes, Themename, Number of changesets)}" + }, + { + "id": "hist_themes", + "render": "{histogram(_embedded_cs:users, Contributor, Number of changesets)}" + } + ], + "calculatedTags": [ + "_embedded_cs=feat.overlapWith('mapcomplete-changes').map(f => f.feat.properties)", + "_embedded_cs:themes=feat.get('_embedded_cs').map(cs => cs.theme)", + "_embedded_cs:users=feat.get('_embedded_cs').map(cs => cs['_last_edit:contributor'])" + ], + "+mapRendering": [ + { + "location": [ + "point" + ], + "icon": "statistics:black", + "iconSize": "30,30,center" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json new file mode 100644 index 0000000000..290fd14169 --- /dev/null +++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json @@ -0,0 +1,176 @@ +{ + "id": "mapcomplete-changes", + "title": { + "en": "Changes made with MapComplete" + }, + "shortDescription": { + "en": "Shows changes made by MapComplete" + }, + "description": { + "en": "This maps shows all the changes made with MapComplete" + }, + "language": [ + "en" + ], + "maintainer": "", + "icon": "./assets/svg/logo.svg", + "hideFromOverview": true, + "version": "0", + "startLat": 0, + "startLon": 0, + "startZoom": 1, + "widenFactor": 0.05, + "clustering": false, + "layers": [ + { + "id": "mapcomplete-changes", + "name": { + "en": "Changeset centers" + }, + "minzoom": 0, + "source": { + "osmTags": "editor~*", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/mapcomplete-changes/tile_{z}_{x}_{y}.geojson", + "geoJsonZoomLevel": 8, + "maxCacheAge": 0 + }, + "calculatedTags": [ + "_last_edit:contributor:lc:=feat.properties['_last_edit:contributor'].toLowerCase()" + ], + "title": { + "render": { + "en": "Changeset for {theme}" + } + }, + "description": { + "en": "Shows all MapComplete changes" + }, + "tagRenderings": [ + { + "id": "render_id", + "render": { + "en": "Changeset {id}" + } + }, + { + "id": "contributor", + "render": { + "en": "Change made by {_last_edit:contributor}" + } + }, + { + "id": "theme", + "render": { + "en": "Change with theme {theme}" + }, + "mappings": [ + { + "if": "theme~http.*", + "then": { + "en": "Change with unofficial theme {theme}" + } + } + ] + } + ], + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "teardrop:#00cc00" + }, + "iconSize": "30,30,center" + } + ], + "filter": [ + { + "id": "theme-search", + "options": [ + { + "osmTags": "theme~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Themename contains {search}" + } + } + ] + }, + { + "id": "created_by", + "options": [ + { + "osmTags": "_last_edit:contributor:lc~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Made by contributor {search}" + } + } + ] + }, + { + "id": "not_created_by", + "options": [ + { + "osmTags": "_last_edit:contributor:lc!~.*{search}.*", + "fields": [ + { + "name": "search" + } + ], + "question": { + "en": "Not made by contributor {search}" + } + } + ] + } + ] + }, + { + "builtin": "current_view", + "override": { + "title": "Statistics on changesets in the current view", + "tagRenderings": [ + { + "id": "link_to_more", + "render": { + "en": "More statistics can be found here" + } + }, + { + "id": "hist_themes", + "render": "{histogram(_embedded_cs:themes, Themename, Number of changesets)}" + }, + { + "id": "hist_themes", + "render": "{histogram(_embedded_cs:users, Contributor, Number of changesets)}" + } + ], + "calculatedTags": [ + "_embedded_cs=feat.overlapWith('mapcomplete-changes').map(f => f.feat.properties)", + "_embedded_cs:themes=feat.get('_embedded_cs').map(cs => cs.theme)", + "_embedded_cs:users=feat.get('_embedded_cs').map(cs => cs['_last_edit:contributor'])" + ], + "+mapRendering": [ + { + "location": [ + "point" + ], + "icon": "statistics:black", + "iconSize": "30,30,center" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/assets/themes/maps/logo.svg b/assets/themes/maps/logo.svg index c0fea0253d..75f7d32728 100644 --- a/assets/themes/maps/logo.svg +++ b/assets/themes/maps/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/nature/logo.svg b/assets/themes/nature/logo.svg index a1b82a3c9e..6c653e19e5 100644 --- a/assets/themes/nature/logo.svg +++ b/assets/themes/nature/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/natuurpunt/bench.svg b/assets/themes/natuurpunt/bench.svg index 62492b05cc..716f736857 100644 --- a/assets/themes/natuurpunt/bench.svg +++ b/assets/themes/natuurpunt/bench.svg @@ -1,16 +1,16 @@ + width="254.98047" + height="119.35156" + viewBox="0 0 254.98047 119.35156" + version="1.1" + id="svg5" + sodipodi:docname="bench.svg" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + width="211.75177" + height="142.0576" + viewBox="0 0 211.75177 142.0576" + version="1.1" + id="svg5" + sodipodi:docname="birdhide.svg" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + width="151.85362" + height="165.0014" + viewBox="0 0 151.85362 165.0014" + version="1.1" + id="svg5" + sodipodi:docname="drips.svg" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + viewBox="-17.5 7 6.3699999 15.000459" + version="1.1" + id="svg10" + sodipodi:docname="information.svg" + width="6.3699999" + height="15.000459" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + width="199.53906" + height="149.26953" + viewBox="0 0 199.53906 149.26953" + version="1.1" + id="svg7" + sodipodi:docname="information_board.svg" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + width="143.75452" + height="178.10156" + viewBox="0 0 143.75452 178.10156" + version="1.1" + id="svg5" + sodipodi:docname="nature_reserve.svg" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + viewBox="-12.5 7 12.050868 16.002609" + version="1.1" + id="svg10" + sodipodi:docname="parking.svg" + width="12.050868" + height="16.002609" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + viewBox="-11 8 16.730312 19.004028" + version="1.1" + id="svg24" + sodipodi:docname="parkingbike.svg" + width="16.730312" + height="19.004028" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + viewBox="-23 6 17.859455 17.979752" + version="1.1" + id="svg11" + sodipodi:docname="parkingmotor.svg" + width="17.859455" + height="17.979752" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + viewBox="-24 7 13.266731 20.714458" + version="1.1" + id="svg12" + sodipodi:docname="parkingwheels.svg" + width="13.266731" + height="20.714458" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + viewBox="-7 5 22.07 12.9" + version="1.1" + id="svg16" + sodipodi:docname="picnic_table.svg" + width="22.07" + height="12.9" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + width="222.35574" + height="190.93405" + viewBox="0 0 222.35574 190.93405" + version="1.1" + id="svg838" + sodipodi:docname="pushchair.svg" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + width="247" + height="113.56189" + viewBox="0 0 247 113.56189" + version="1.1" + id="svg7" + sodipodi:docname="toilets.svg" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + viewBox="-10 8 11.976725 17.589441" + version="1.1" + id="svg14" + sodipodi:docname="trail.svg" + width="11.976725" + height="17.589441" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + width="157.30078" + height="203.94189" + viewBox="0 0 157.30078 203.94189" + version="1.1" + id="svg904" + sodipodi:docname="urinal.svg" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + viewBox="-8 8 25.386618 17.599442" + version="1.1" + id="svg985" + sodipodi:docname="walk_wheelchair.svg" + width="25.386618" + height="17.599442" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +> + viewBox="-10 8 15.18 19.74" + version="1.1" + id="svg1054" + sodipodi:docname="watermill.svg" + width="15.18" + height="19.74" + inkscape:version="1.1.1 (1:1.1+202109281949+c3084ef5ed)" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns="http://www.w3.org/2000/svg" +>
Make sure to checkout the filter view to search for users and text.", + "icon": "./assets/svg/resolved.svg", + "clustering": false, + "enableDownload": true, + "layers": [ + "note" + ] +} \ No newline at end of file diff --git a/assets/themes/openwindpowermap/wind_turbine.svg b/assets/themes/openwindpowermap/wind_turbine.svg index 58b73f811f..25496561a4 100644 --- a/assets/themes/openwindpowermap/wind_turbine.svg +++ b/assets/themes/openwindpowermap/wind_turbine.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/parkings/parkings.svg b/assets/themes/parkings/parkings.svg index 9983d9fcca..1369443d9d 100644 --- a/assets/themes/parkings/parkings.svg +++ b/assets/themes/parkings/parkings.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/personal/personal.json b/assets/themes/personal/personal.json index c39039d708..b5474cda13 100644 --- a/assets/themes/personal/personal.json +++ b/assets/themes/personal/personal.json @@ -48,8 +48,12 @@ "version": "0", "startLat": 0, "startLon": 0, - "startZoom": 16, + "startZoom": 0, "widenFactor": 1.2, - "overpassMaxZoom": 0, + "#note": "The 'overpassMaxZoom' should be exactly the same as or less then the overrideAll", + "overpassMaxZoom": 15, + "overrideAll": { + "minZoom": 16 + }, "layers": [] } \ No newline at end of file diff --git a/assets/themes/playgrounds/playground.svg b/assets/themes/playgrounds/playground.svg index b8054f607e..97e6a132a2 100644 --- a/assets/themes/playgrounds/playground.svg +++ b/assets/themes/playgrounds/playground.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/postal_codes/townhall.svg b/assets/themes/postal_codes/townhall.svg index 439ae16382..291c535e14 100644 --- a/assets/themes/postal_codes/townhall.svg +++ b/assets/themes/postal_codes/townhall.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/postboxes/post_office.svg b/assets/themes/postboxes/post_office.svg index 9fec26dcac..f9d52a9307 100644 --- a/assets/themes/postboxes/post_office.svg +++ b/assets/themes/postboxes/post_office.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/postboxes/postboxes.json b/assets/themes/postboxes/postboxes.json index bcb1848be9..979a72efaa 100644 --- a/assets/themes/postboxes/postboxes.json +++ b/assets/themes/postboxes/postboxes.json @@ -26,7 +26,7 @@ "zh_Hant", "ru" ], - "maintainer": "", + "maintainer": "nicolelaine", "icon": "./assets/themes/postboxes/postbox.svg", "version": "0", "startLat": 53.5511, diff --git a/assets/themes/shops/shop.svg b/assets/themes/shops/shop.svg index 4d81c6f1c9..fd8e78c608 100644 --- a/assets/themes/shops/shop.svg +++ b/assets/themes/shops/shop.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/sidewalks/sidewalks.json b/assets/themes/sidewalks/sidewalks.json index 7217099e88..c750c05fab 100644 --- a/assets/themes/sidewalks/sidewalks.json +++ b/assets/themes/sidewalks/sidewalks.json @@ -74,11 +74,11 @@ }, "renderings": [ { - "id": "sidewalk_minimap", + "id": "sidewalk_minimap_left|right", "render": "{sided_minimap(left|right):height:8rem;border-radius:0.5rem;overflow:hidden}" }, { - "id": "has_sidewalk", + "id": "has_sidewalk_left|right", "question": "Is there a sidewalk on this side of the road?", "mappings": [ { @@ -92,7 +92,7 @@ ] }, { - "id": "sidewalk_width", + "id": "sidewalk_width_left|right", "question": "What is the width of the sidewalk on this side of the road?", "render": "This sidewalk is {sidewalk:left|right:width}m wide", "condition": "sidewalk:left|right=yes", diff --git a/assets/themes/speelplekken/logo.svg b/assets/themes/speelplekken/logo.svg index 295238bb3e..dfc602362e 100644 --- a/assets/themes/speelplekken/logo.svg +++ b/assets/themes/speelplekken/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/speelplekken/speelbos.svg b/assets/themes/speelplekken/speelbos.svg index 99915c8e11..ac2e13ad1f 100644 --- a/assets/themes/speelplekken/speelbos.svg +++ b/assets/themes/speelplekken/speelbos.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/speelplekken/speelplekken.json b/assets/themes/speelplekken/speelplekken.json index 3646004ee4..adf40461a3 100644 --- a/assets/themes/speelplekken/speelplekken.json +++ b/assets/themes/speelplekken/speelplekken.json @@ -50,7 +50,6 @@ "geoJsonZoomLevel": 14, "isOsmCache": true }, - "icon": "./assets/themes/speelplekken/speelbos.svg", "minzoom": 12, "calculatedTags": [ "_is_shadowed=feat.overlapWith('shadow').length > 0 ? 'yes': ''", @@ -61,7 +60,6 @@ { "builtin": "playground", "override": { - "icon": "./assets/themes/speelplekken/speeltuin.svg", "minzoom": 14, "source": { "geoJsonLocal": "http://127.0.0.1:8080/speelplekken_{layer}_{z}_{x}_{y}.geojson", @@ -78,7 +76,6 @@ { "builtin": "village_green", "override": { - "icon": "./assets/themes/speelplekken/speelweide.svg", "minzoom": 14, "source": { "geoJsonLocal": "http://127.0.0.1:8080/speelplekken_{layer}_{z}_{x}_{y}.geojson", @@ -95,7 +92,6 @@ { "builtin": "grass_in_parks", "override": { - "icon": "./assets/themes/speelplekken/speelweide.svg", "minzoom": 14, "source": { "geoJsonLocal": "http://127.0.0.1:8080/speelplekken_{layer}_{z}_{x}_{y}.geojson", diff --git a/assets/themes/speelplekken/speeltuin.svg b/assets/themes/speelplekken/speeltuin.svg index 3c418339ea..da82683c81 100644 --- a/assets/themes/speelplekken/speeltuin.svg +++ b/assets/themes/speelplekken/speeltuin.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/speelplekken/speelweide.svg b/assets/themes/speelplekken/speelweide.svg index c52d2ceead..6aca3d4fd3 100644 --- a/assets/themes/speelplekken/speelweide.svg +++ b/assets/themes/speelplekken/speelweide.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/speelplekken/youtube.svg b/assets/themes/speelplekken/youtube.svg index f219bd970b..2b5ab752cb 100644 --- a/assets/themes/speelplekken/youtube.svg +++ b/assets/themes/speelplekken/youtube.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/surveillance/cam_left.svg b/assets/themes/surveillance/cam_left.svg index 584c828112..fa84415012 100644 --- a/assets/themes/surveillance/cam_left.svg +++ b/assets/themes/surveillance/cam_left.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/surveillance/cam_right.svg b/assets/themes/surveillance/cam_right.svg index 1566dd10c2..1a2abb09fe 100644 --- a/assets/themes/surveillance/cam_right.svg +++ b/assets/themes/surveillance/cam_right.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/surveillance/dome.svg b/assets/themes/surveillance/dome.svg index b9f2a498d8..ee2f0aef5f 100644 --- a/assets/themes/surveillance/dome.svg +++ b/assets/themes/surveillance/dome.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/surveillance/logo.svg b/assets/themes/surveillance/logo.svg index 6d9af345ba..918f904711 100644 --- a/assets/themes/surveillance/logo.svg +++ b/assets/themes/surveillance/logo.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/toerisme_vlaanderen/toerisme_vlaanderen.json b/assets/themes/toerisme_vlaanderen/toerisme_vlaanderen.json index 9f5f0c3cc4..daca2042b6 100644 --- a/assets/themes/toerisme_vlaanderen/toerisme_vlaanderen.json +++ b/assets/themes/toerisme_vlaanderen/toerisme_vlaanderen.json @@ -2,7 +2,7 @@ "id": "toerisme_vlaanderen", "credits": "Commissioned theme for Toerisme Vlaandere", "maintainer": "MapComplete", - "version": "0.0.1", + "version": "0.0.2", "customCss": "./assets/themes/toerisme_vlaanderen/custom.css", "language": [ "en", @@ -12,18 +12,18 @@ "nl" ], "title": { - "nl": "Toeristisch relevante info" + "nl": "Pin je punt" }, "shortDescription": { "nl": "Een kaart om toeristisch relevante info op aan te duiden" }, "description": { - "nl": "Op deze kaart kan je info zien die relevant is voor toerisme, zoals:
  • Eetgelegenheden
  • Cafés en bars
  • (Fiets)oplaadpunten
  • Fietspompen, fietserverhuur en fietswinkels
  • Uitkijktorens
  • ...
Zie je fouten op de kaart? Dan kan je zelf makkelijk aanpasingen maken, die zichtbaar zijn voor iedereen. Hiervoor dien je een gratis OpenStreetMap account voor te maken." + "nl": "

Pin je punt is een open toerismekaart waarin wandelaars en fietsers nuttige gegevens verzamelen die handig zijn voor andere wandelaars en fietsers.

We verzamelen 7 thematische lagen:

  1. Laadpunten voor e-bikes
  2. Openbare toiletten
  3. Zit- en picknickbankjes
  4. Uitkijkpunten, uitkijkplatformen en uitkijktorens
  5. Fietsherstelpunten
  6. Fietsverhuurpunten
  7. Speeltuinen

Klik op de exacte locatie op de kaart om een van deze 7 punten toe te voegen. Of corrigeer bestaande punten door erop te klikken.

" }, "descriptionTail": { - "nl": "Met de steun van Toerisme Vlaanderen" + "nl": "

Met de steun van Toerisme Vlaanderen

Meer informatie op toerismevlaaneren.be" }, - "icon": "./assets/svg/star.svg", + "icon": "./assets/svg/teardrop_with_hole_green.svg", "startZoom": 8, "startLat": 50.8536, "startLon": 4.433, @@ -31,13 +31,19 @@ "layers": [ { "builtin": [ - "charging_station", - "toilet" + "toilet", + "bench", + "picnic_table", + "observation_tower", + "bike_repair_station", + "playground", + "charging_station" ], "override": { "minzoom": 14 } } ], - "hideFromOverview": true + "hideFromOverview": true, + "enableMoreQuests": false } \ No newline at end of file diff --git a/assets/themes/toilets/toilets.svg b/assets/themes/toilets/toilets.svg index 0d9aa98ae0..02ade60d58 100644 --- a/assets/themes/toilets/toilets.svg +++ b/assets/themes/toilets/toilets.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/trees/trees.json b/assets/themes/trees/trees.json index 85b4a69bee..46102c2585 100644 --- a/assets/themes/trees/trees.json +++ b/assets/themes/trees/trees.json @@ -11,7 +11,8 @@ "pl": "Drzewa", "de": "Bäume", "nb_NO": "Trær", - "id": "Pohon" + "id": "Pohon", + "hu": "Fatérkép" }, "shortDescription": { "nl": "Breng bomen in kaart", @@ -23,7 +24,8 @@ "ru": "Карта деревьев", "pl": "Sporządzić mapę wszystkich drzew", "de": "Kartieren Sie alle Bäume", - "nb_NO": "Kartlegg alle trærne" + "nb_NO": "Kartlegg alle trærne", + "hu": "Az összes fa feltérképezése" }, "description": { "nl": "Breng bomen in kaart!", @@ -34,7 +36,8 @@ "zh_Hant": "繪製所有樹木!", "ru": "Нанесите все деревья на карту!", "de": "Kartieren Sie alle Bäume!", - "nb_NO": "Kartlegg trærne." + "nb_NO": "Kartlegg trærne.", + "hu": "Térképezzünk fel minden fát!" }, "language": [ "nl", @@ -47,7 +50,8 @@ "pl", "de", "nb_NO", - "id" + "id", + "hu" ], "maintainer": "Midgard", "icon": "./assets/themes/trees/logo.svg", diff --git a/assets/themes/uk_addresses/housenumber_add.svg b/assets/themes/uk_addresses/housenumber_add.svg index d2cd7f0d2b..c12c0c29e5 100644 --- a/assets/themes/uk_addresses/housenumber_add.svg +++ b/assets/themes/uk_addresses/housenumber_add.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/uk_addresses/housenumber_ok.svg b/assets/themes/uk_addresses/housenumber_ok.svg index 869670824a..aac6f685f6 100644 --- a/assets/themes/uk_addresses/housenumber_ok.svg +++ b/assets/themes/uk_addresses/housenumber_ok.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/uk_addresses/housenumber_text.svg b/assets/themes/uk_addresses/housenumber_text.svg index 029cd8a93f..6559a0be4a 100644 --- a/assets/themes/uk_addresses/housenumber_text.svg +++ b/assets/themes/uk_addresses/housenumber_text.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/uk_addresses/housenumber_unknown.svg b/assets/themes/uk_addresses/housenumber_unknown.svg index 6bf8e3f947..62ca190798 100644 --- a/assets/themes/uk_addresses/housenumber_unknown.svg +++ b/assets/themes/uk_addresses/housenumber_unknown.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/uk_addresses/housenumber_unknown_small.svg b/assets/themes/uk_addresses/housenumber_unknown_small.svg index 0798634e54..08f44c3cbe 100644 --- a/assets/themes/uk_addresses/housenumber_unknown_small.svg +++ b/assets/themes/uk_addresses/housenumber_unknown_small.svg @@ -1,5 +1,5 @@ - + diff --git a/assets/themes/uk_addresses/license_info.json b/assets/themes/uk_addresses/license_info.json index 4bcce8003e..cfad1b9d72 100644 --- a/assets/themes/uk_addresses/license_info.json +++ b/assets/themes/uk_addresses/license_info.json @@ -77,5 +77,15 @@ "Pieter Vander Vennet" ], "sources": [] + }, + { + "path": "stamp.jpg", + "license": "CC-BY 2.0", + "authors": [ + "Mark Morgan" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Queen_Elizabeth_II_Virgin_Islands_stamp.jpg" + ] } ] \ No newline at end of file diff --git a/assets/themes/uk_addresses/stamp.jpg b/assets/themes/uk_addresses/stamp.jpg new file mode 100644 index 0000000000..e54290b270 Binary files /dev/null and b/assets/themes/uk_addresses/stamp.jpg differ diff --git a/assets/themes/uk_addresses/uk_addresses.json b/assets/themes/uk_addresses/uk_addresses.json index 31d4ab4655..03486bd28f 100644 --- a/assets/themes/uk_addresses/uk_addresses.json +++ b/assets/themes/uk_addresses/uk_addresses.json @@ -24,6 +24,8 @@ "it", "id", "nl", + "zh_Hant", + "hu", "ru" ], "maintainer": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett", @@ -66,7 +68,7 @@ "calculatedTags": [ "_has_address=feat.overlapWith('address').length > 0" ], - "#mapRendering": [ + "mapRendering": [ { "width": 2, "color": { @@ -80,13 +82,21 @@ } } ], - "mapRendering": null + "shownByDefault": false, + "name": { + "en": "Inspire polygons" + } }, { "id": "to_import", "source": { "geoJson": "https://osm-uk-addresses.russss.dev/addresses/{z}/{x}/{y}.json", - "osmTags": "inspireid~*", + "osmTags": { + "and": [ + "ref:GB:inspire~*", + "id!~node/.*" + ] + }, "geoJsonZoomLevel": 16, "isOsmCache": false }, @@ -126,7 +136,7 @@ }, { "id": "uk_addresses_import_button", - "render": "{import_button(address,ref:inspireid=$inspireid, Add this address, ./assets/themes/uk_addresses/housenumber_add.svg)}" + "render": "{import_button(address,ref:GB:inspire=$ref:GB:inspire;ref:GB:uprn=$ref:GB:uprn$, Add this address, ./assets/themes/uk_addresses/housenumber_add.svg)}" } ], "calculatedTags": [ @@ -189,15 +199,46 @@ "description": "Alamat" }, { - "builtin": "address", - "override": { - "calculatedTags": [ - "_closest_3_street_names=feat.closestn('named_streets',3, 'name').map(f => f.feat.properties.name)", - "_closest_street:0:name=JSON.parse(feat.properties._closest_3_street_names)[0]", - "_closest_street:1:name=JSON.parse(feat.properties._closest_3_street_names)[1]", - "_closest_street:2:name=JSON.parse(feat.properties._closest_3_street_names)[2]" - ] + "id": "address", + "name": { + "en": "Known addresses in OSM", + "de": "Bekannte Adressen in OSM", + "zh_Hant": "OSM 上已知的地址", + "hu": "Ismert címek az OSM-en", + "nl": "Bekende adressen in OSM" }, + "minzoom": 18, + "source": { + "osmTags": { + "or": [ + "addr:housenumber~*", + "addr:street~*", + "ref:GB:inspire~*" + ] + } + }, + "title": { + "render": { + "en": "Known address", + "de": "Bekannte Adresse", + "hu": "Ismert cím", + "nl": "Bekend adres" + } + }, + "description": { + "en": "Addresses", + "nl": "Adressen", + "de": "Adressen", + "ru": "Адреса", + "zh_Hant": "地址", + "hu": "Címek" + }, + "calculatedTags": [ + "_closest_3_street_names=feat.closestn('named_streets',3, 'name').map(f => f.feat.properties.name)", + "_closest_street:0:name=JSON.parse(feat.properties._closest_3_street_names)[0]", + "_closest_street:1:name=JSON.parse(feat.properties._closest_3_street_names)[1]", + "_closest_street:2:name=JSON.parse(feat.properties._closest_3_street_names)[2]" + ], "tagRenderings": [ { "id": "uk_addresses_explanation_osm", @@ -254,6 +295,7 @@ "then": "This building has no housename" }, { + "#": "By adding nohousenumber!=yes, this option will trigger when first added, but will be untriggered if a housenumber is added, resulting in the question poping up!", "if": { "and": [ "addr:housename=", @@ -265,6 +307,28 @@ } ] }, + { + "id": "uk_addresses_unit", + "render": "The sub-part of this address is {addr:unit}", + "question": { + "en": "What is the unit indication of this address?
This is the letter or number of the letterbox here, if multiple letterboxes share the same street and housenumber. If there are multiple at the same location, add them here with a ; between them
" + }, + "freeform": { + "key": "addr:unit" + }, + "mappings": [ + { + "if": "addr:unit=", + "then": "This address has no subparts.
Subparts are e.g. appartment numbers, extra letters or numbers if there are multiple letterboxes, ...
" + } + ], + "condition": { + "or": [ + "addr:housenumber~*", + "addr:housename~*" + ] + } + }, { "id": "uk_addresses_street", "render": { @@ -281,31 +345,46 @@ "mappings": [ { "if": "addr:street:={_closest_street:0:name}", - "then": "Located in {_closest_street:0:name}", + "then": "This address is in street {_closest_street:0:name}", "hideInAnswer": "_closest_street:0:name=" }, { "if": "addr:street:={_closest_street:1:name}", - "then": "Located in {_closest_street:1:name}", + "then": "This address is in street {_closest_street:1:name}", "hideInAnswer": "_closest_street:1:name=" }, { "if": "addr:street:={_closest_street:2:name}", - "then": "Located in {_closest_street:2:name}", + "then": "This address is in street {_closest_street:2:name}", "hideInAnswer": "_closest_street:2:name=" } - ], - "condition": { - "and": [ - "nohousenumber!~yes" - ] - } + ] + }, + { + "id": "uk_addresses_placename", + "question": { + "en": "What is the place or locality?
This is additional information if the streetname alone isn't enough to find this address. Typical examples are 'Technology Park', 'XYZ Terrace', ...
" + }, + "render": { + "en": "The placename is {addr:place}" + }, + "freeform": { + "key": "addr:place" + }, + "mappings": [ + { + "if": "addr:place=", + "then": { + "en": "No extra placename is given or needed" + } + } + ] }, { "id": "fixme", - "render": "Fixme description{fixme}", + "render": "This address is complicated - therefore someone has given a description of what should be fixed:{fixme}", "question": { - "en": "What should be fixed here? Please explain" + "en": "What should be fixed here? Please explain what the address is" }, "freeform": { "key": "fixme" @@ -313,7 +392,7 @@ "mappings": [ { "if": "fixme=", - "then": "No fixme - write something here to explain complicated cases" + "then": "Is this address complicated? Write something here to explain this case. An experienced mapper will have a look at it" } ] }, @@ -323,6 +402,68 @@ "render": { "en": "{image_carousel(image:address)}
{image_upload(image:address, Add image of the address)}" } + }, + { + "id": "preview", + "render": { + "en": "To send a letter to this addres, you would write:
Name of the inhabitant
{addr:housename}
{addr:unit} {addr:housenumber} {addr:street}
{addr:place}
Suburb
Town
Postal code
" + } + } + ], + "mapRendering": [ + { + "label": { + "render": "
{addr:housenumber}
", + "condition": "addr:housenumber~*" + }, + "iconSize": "50,50,center", + "icon": { + "render": "./assets/layers/address/housenumber_blank.svg", + "mappings": [ + { + "if": { + "or": [ + { + "and": [ + "addr:housenumber=", + "nohousenumber!=yes" + ] + }, + "addr:street=" + ] + }, + "then": "./assets/themes/uk_addresses/housenumber_unknown.svg" + } + ] + }, + "location": [ + "point", + "centroid" + ] + }, + { + "color": { + "render": "#00f", + "mappings": [ + { + "if": { + "or": [ + { + "and": [ + "addr:housenumber=", + "nohousenumber!=yes" + ] + }, + "addr:street=" + ] + }, + "then": "#ff0" + } + ] + }, + "width": { + "render": "3" + } } ] }, diff --git a/assets/themes/waste_basket/waste_basket.json b/assets/themes/waste_basket/waste_basket.json index d7cea3028a..bdbfd2df40 100644 --- a/assets/themes/waste_basket/waste_basket.json +++ b/assets/themes/waste_basket/waste_basket.json @@ -5,28 +5,32 @@ "nl": "Vuilnisbak", "de": "Abfalleimer", "it": "Cestino dei rifiuti", - "zh_Hant": "垃圾筒" + "zh_Hant": "垃圾筒", + "hu": "Kukatérkép" }, "shortDescription": { "en": "A map with waste baskets", "nl": "Een kaart met vuilnisbakken", "de": "Eine Karte mit Abfalleimern", "it": "Una cartina dei cestini dei rifiuti", - "zh_Hant": "垃圾筒的地圖" + "zh_Hant": "垃圾筒的地圖", + "hu": "Szemeteskosarakat ábrázoló térkép" }, "description": { "en": "On this map, you'll find waste baskets near you. If a waste basket is missing on this map, you can add it yourself", "nl": "Op deze kaart vind je vuilnisbakken waar je afval in kan smijten. Ontbreekt er een vuilnisbak? Dan kan je die zelf toevoegen", "de": "Auf dieser Karte finden Sie Abfalleimer in Ihrer Nähe. Wenn ein Abfalleimer auf dieser Karte fehlt, können Sie ihn selbst hinzufügen", "it": "In questa cartina troverai i cestini dei rifiuti nei tuoi paraggi. Se manca un cestino, puoi inserirlo tu stesso", - "zh_Hant": "在這份地圖當中,你可以找到你附近的垃圾筒。如果地圖有遺漏垃圾筒,你可以自己加上去" + "zh_Hant": "在這份地圖當中,你可以找到你附近的垃圾筒。如果地圖有遺漏垃圾筒,你可以自己加上去", + "hu": "Ezen a térképen megtalálhatod a közeledben lévő szemeteskosarakat. Ha hiányzik egy kuka a térképről, te is felrajzolhatod" }, "language": [ "en", "nl", "de", "it", - "zh_Hant" + "zh_Hant", + "hu" ], "maintainer": "", "icon": "./assets/themes/waste_basket/waste_basket.svg", diff --git a/assets/themes/waste_basket/waste_basket.svg b/assets/themes/waste_basket/waste_basket.svg index 44a697d0a0..9487546401 100644 --- a/assets/themes/waste_basket/waste_basket.svg +++ b/assets/themes/waste_basket/waste_basket.svg @@ -1,5 +1,5 @@ - + diff --git a/css/index-tailwind-output.css b/css/index-tailwind-output.css index bcc28e6b25..1191b9bcba 100644 --- a/css/index-tailwind-output.css +++ b/css/index-tailwind-output.css @@ -716,18 +716,6 @@ video { left: 0px; } -.bottom-3 { - bottom: 0.75rem; -} - -.left-3 { - left: 0.75rem; -} - -.right-2 { - right: 0.5rem; -} - .left-24 { left: 6rem; } @@ -740,6 +728,18 @@ video { top: 14rem; } +.bottom-3 { + bottom: 0.75rem; +} + +.left-3 { + left: 0.75rem; +} + +.right-2 { + right: 0.5rem; +} + .top-2 { top: 0.5rem; } @@ -748,14 +748,14 @@ video { right: 0.75rem; } -.top-4 { - top: 1rem; -} - .bottom-0 { bottom: 0px; } +.top-4 { + top: 1rem; +} + .right-1\/3 { right: 33.333333%; } @@ -800,10 +800,6 @@ video { margin: 2rem; } -.m-11 { - margin: 2.75rem; -} - .m-1 { margin: 0.25rem; } @@ -812,6 +808,10 @@ video { margin: 1.25rem; } +.m-4 { + margin: 1rem; +} + .m-0\.5 { margin: 0.125rem; } @@ -824,10 +824,6 @@ video { margin: 0.75rem; } -.m-4 { - margin: 1rem; -} - .m-2 { margin: 0.5rem; } @@ -868,6 +864,10 @@ video { margin-top: 1rem; } +.mr-2 { + margin-right: 0.5rem; +} + .mt-1 { margin-top: 0.25rem; } @@ -892,10 +892,6 @@ video { margin-left: 2rem; } -.mr-2 { - margin-right: 0.5rem; -} - .mb-10 { margin-bottom: 2.5rem; } @@ -968,6 +964,38 @@ video { display: table; } +.table-caption { + display: table-caption; +} + +.table-cell { + display: table-cell; +} + +.table-column { + display: table-column; +} + +.table-column-group { + display: table-column-group; +} + +.table-footer-group { + display: table-footer-group; +} + +.table-header-group { + display: table-header-group; +} + +.table-row-group { + display: table-row-group; +} + +.table-row { + display: table-row; +} + .grid { display: grid; } @@ -976,6 +1004,10 @@ video { display: contents; } +.list-item { + display: list-item; +} + .hidden { display: none; } @@ -1036,6 +1068,10 @@ video { height: 12rem; } +.max-h-7 { + max-height: 1.75rem; +} + .max-h-20vh { max-height: 20vh; } @@ -1048,6 +1084,10 @@ video { max-height: 1rem; } +.max-h-8 { + max-height: 2rem; +} + .w-full { width: 100%; } @@ -1056,6 +1096,10 @@ video { width: 6rem; } +.w-6 { + width: 1.5rem; +} + .w-10 { width: 2.5rem; } @@ -1080,6 +1124,10 @@ video { width: 2.75rem; } +.w-4 { + width: 1rem; +} + .w-16 { width: 4rem; } @@ -1090,10 +1138,6 @@ video { width: min-content; } -.w-6 { - width: 1.5rem; -} - .w-max { width: -webkit-max-content; width: -moz-max-content; @@ -1126,6 +1170,10 @@ video { flex-shrink: 0; } +.flex-shrink { + flex-shrink: 1; +} + .flex-grow { flex-grow: 1; } @@ -1138,23 +1186,6 @@ video { transform: var(--tw-transform); } -@-webkit-keyframes spin { - to { - transform: rotate(360deg); - } -} - -@keyframes spin { - to { - transform: rotate(360deg); - } -} - -.animate-spin { - -webkit-animation: spin 1s linear infinite; - animation: spin 1s linear infinite; -} - @-webkit-keyframes pulse { 50% { opacity: .5; @@ -1172,6 +1203,23 @@ video { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; } +@-webkit-keyframes spin { + to { + transform: rotate(360deg); + } +} + +@keyframes spin { + to { + transform: rotate(360deg); + } +} + +.animate-spin { + -webkit-animation: spin 1s linear infinite; + animation: spin 1s linear infinite; +} + .cursor-pointer { cursor: pointer; } @@ -1240,6 +1288,10 @@ video { overflow: hidden; } +.overflow-scroll { + overflow: scroll; +} + .overflow-y-auto { overflow-y: auto; } @@ -1283,26 +1335,35 @@ video { border-radius: 0.25rem; } +.rounded-xl { + border-radius: 0.75rem; +} + .rounded-lg { border-radius: 0.5rem; } -.rounded-xl { - border-radius: 0.75rem; +.rounded-sm { + border-radius: 0.125rem; +} + +.rounded-l { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; } .border { border-width: 1px; } -.border-4 { - border-width: 4px; -} - .border-2 { border-width: 2px; } +.border-4 { + border-width: 4px; +} + .border-l-4 { border-left-width: 4px; } @@ -1511,19 +1572,19 @@ video { line-height: 1.75rem; } -.text-2xl { - font-size: 1.5rem; - line-height: 2rem; -} - .text-lg { font-size: 1.125rem; line-height: 1.75rem; } -.text-3xl { - font-size: 1.875rem; - line-height: 2.25rem; +.text-2xl { + font-size: 1.5rem; + line-height: 2rem; +} + +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; } .text-sm { @@ -1531,16 +1592,16 @@ video { line-height: 1.25rem; } +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} + .text-base { font-size: 1rem; line-height: 1.5rem; } -.text-4xl { - font-size: 2.25rem; - line-height: 2.5rem; -} - .font-bold { font-weight: 700; } @@ -1565,6 +1626,10 @@ video { text-transform: lowercase; } +.capitalize { + text-transform: capitalize; +} + .italic { font-style: italic; } @@ -1685,14 +1750,6 @@ video { transition-duration: 150ms; } -.\!transition { - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter !important; - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important; - transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter !important; - transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important; - transition-duration: 150ms !important; -} - .duration-500 { transition-duration: 500ms; } diff --git a/dependencies.svg b/dependencies.svg deleted file mode 100644 index dfbcce1185..0000000000 --- a/dependencies.svg +++ /dev/null @@ -1,7406 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/index.html b/index.html index 68e3f9fc4b..d7a2734e8c 100644 --- a/index.html +++ b/index.html @@ -77,7 +77,7 @@ Below
- + diff --git a/index.manifest b/index.manifest index 1eb1aec3ce..e9ccebb12a 100644 --- a/index.manifest +++ b/index.manifest @@ -58,9 +58,13 @@ "type": "image/png" }, { - "src": "./assets/svg/mapcomplete_logo.svg", + "src": "assets/svg/mapcomplete_logo.svg", "sizes": "513x513", "type": "image/svg" } + ], + "categories": [ + "map", + "navigation" ] } \ No newline at end of file diff --git a/index.ts b/index.ts index 8e84847cc3..024b40f795 100644 --- a/index.ts +++ b/index.ts @@ -1,5 +1,4 @@ import {FixedUiElement} from "./UI/Base/FixedUiElement"; -import {QueryParameters} from "./Logic/Web/QueryParameters"; import Combine from "./UI/Base/Combine"; import AvailableBaseLayers from "./Logic/Actors/AvailableBaseLayers"; import MinimapImplementation from "./UI/Base/MinimapImplementation"; @@ -18,19 +17,10 @@ MinimapImplementation.initialize() AvailableBaseLayers.implement(new AvailableBaseLayersImplementation()) ShowOverlayLayerImplementation.Implement(); // Miscelleanous - Utils.DisableLongPresses() -// --------------------- Special actions based on the parameters ----------------- -// @ts-ignore -if (location.href.startsWith("http://buurtnatuur.be")) { - // Reload the https version. This is important for the 'locate me' button - window.location.replace("https://buurtnatuur.be"); -} - - class Init { - public static Init(layoutToUse: LayoutConfig, encoded: string) { + public static Init(layoutToUse: LayoutConfig) { if (layoutToUse === null) { // Something went wrong, error message is already on screen @@ -43,40 +33,15 @@ class Init { return; } - // Workaround/legacy to keep the old paramters working as I renamed some of them - if (layoutToUse?.id === "cyclofix") { - const legacy = QueryParameters.GetQueryParameter("layer-bike_shops", "true", "Legacy - keep De Fietsambassade working"); - const correct = QueryParameters.GetQueryParameter("layer-bike_shop", "true", "Legacy - keep De Fietsambassade working") - if (legacy.data !== "true") { - correct.setData(legacy.data) - } - console.log("layer-bike_shop toggles: legacy:", legacy.data, "new:", correct.data) - - const legacyCafe = QueryParameters.GetQueryParameter("layer-bike_cafes", "true", "Legacy - keep De Fietsambassade working") - const correctCafe = QueryParameters.GetQueryParameter("layer-bike_cafe", "true", "Legacy - keep De Fietsambassade working") - if (legacyCafe.data !== "true") { - correctCafe.setData(legacy.data) - } - } - - const guiState = new DefaultGuiState() State.state = new State(layoutToUse); DefaultGuiState.state = guiState; // This 'leaks' the global state via the window object, useful for debugging // @ts-ignore window.mapcomplete_state = State.state; - new DefaultGUI(State.state, guiState) - if (encoded !== undefined && encoded.length > 10) { - // We save the layout to the user settings and local storage - State.state.osmConnection.OnLoggedIn(() => { - State.state.osmConnection - .GetLongPreference("installed-theme-" + layoutToUse.id) - .setData(encoded); - }); - } + } } @@ -92,12 +57,12 @@ new Combine(["Initializing...
", })]) .AttachTo("centermessage"); // Add an initialization and reset button if something goes wrong - +// @ts-ignore DetermineLayout.GetLayout().then(value => { console.log("Got ", value) - Init.Init(value[0], value[1]) -}).catch(err => { - console.error("Error while initializing: ", err, err.stack) -}) + Init.Init(value) + }).catch(err => { + console.error("Error while initializing: ", err, err.stack) + }) diff --git a/index_theme.ts.template b/index_theme.ts.template new file mode 100644 index 0000000000..6d3ac310df --- /dev/null +++ b/index_theme.ts.template @@ -0,0 +1,65 @@ +import {FixedUiElement} from "./UI/Base/FixedUiElement"; +import {QueryParameters} from "./Logic/Web/QueryParameters"; +import Combine from "./UI/Base/Combine"; +import AvailableBaseLayers from "./Logic/Actors/AvailableBaseLayers"; +import MinimapImplementation from "./UI/Base/MinimapImplementation"; +import {Utils} from "./Utils"; +import LayoutConfig from "./Models/ThemeConfig/LayoutConfig"; +import DefaultGUI from "./UI/DefaultGUI"; +import State from "./State"; +import AvailableBaseLayersImplementation from "./Logic/Actors/AvailableBaseLayersImplementation"; +import ShowOverlayLayerImplementation from "./UI/ShowDataLayer/ShowOverlayLayerImplementation"; +import {DefaultGuiState} from "./UI/DefaultGuiState"; + + + + + +document.getElementById("decoration-desktop").remove(); +new Combine(["Initializing...
", + new FixedUiElement("If this message persist, something went wrong - click here to try again") + .SetClass("link-underline small") + .onClick(() => { + localStorage.clear(); + window.location.reload(true); + + })]) + .AttachTo("centermessage"); // Add an initialization and reset button if something goes wrong + + + +// Workaround for a stupid crash: inject some functions which would give stupid circular dependencies or crash the other nodejs scripts running from console +MinimapImplementation.initialize() +AvailableBaseLayers.implement(new AvailableBaseLayersImplementation()) +ShowOverlayLayerImplementation.Implement(); +// Miscelleanous +Utils.DisableLongPresses() + +const layoutToUse = new LayoutConfig(themeConfig["default"]) + + +// Workaround/legacy to keep the old paramters working as I renamed some of them +if (layoutToUse?.id === "cyclofix") { + const legacy = QueryParameters.GetQueryParameter("layer-bike_shops", "true", "Legacy - keep De Fietsambassade working"); + const correct = QueryParameters.GetQueryParameter("layer-bike_shop", "true", "Legacy - keep De Fietsambassade working") + if (legacy.data !== "true") { + correct.setData(legacy.data) + } + console.log("layer-bike_shop toggles: legacy:", legacy.data, "new:", correct.data) + + const legacyCafe = QueryParameters.GetQueryParameter("layer-bike_cafes", "true", "Legacy - keep De Fietsambassade working") + const correctCafe = QueryParameters.GetQueryParameter("layer-bike_cafe", "true", "Legacy - keep De Fietsambassade working") + if (legacyCafe.data !== "true") { + correctCafe.setData(legacy.data) + } +} + + + +const guiState = new DefaultGuiState() +State.state = new State(layoutToUse); +DefaultGuiState.state = guiState; +// This 'leaks' the global state via the window object, useful for debugging +// @ts-ignore +window.mapcomplete_state = State.state; +new DefaultGUI(State.state, guiState) diff --git a/langs/de.json b/langs/de.json index a8c3e585a1..1b12541c8a 100644 --- a/langs/de.json +++ b/langs/de.json @@ -59,7 +59,7 @@ "confirmButton": "Fügen Sie hier eine {category} hinzu.
Ihre Ergänzung ist für alle sichtbar
", "openLayerControl": "Das Ebenen-Kontrollkästchen öffnen", "layerNotEnabled": "Die Ebene {layer} ist nicht aktiviert. Aktivieren Sie diese Ebene, um einen Punkt hinzuzufügen", - "addNewMapLabel": "Neues Element hinzufügen", + "addNewMapLabel": "Hier klicken, um ein neues Element hinzuzufügen", "presetInfo": "Der neue POI hat {tags}", "disableFiltersExplanation": "Einige Elemente können durch einen Filter ausgeblendet sein", "disableFilters": "Alle Filter deaktivieren", diff --git a/langs/en.json b/langs/en.json index 699e44671d..51d452ab82 100644 --- a/langs/en.json +++ b/langs/en.json @@ -1,430 +1,467 @@ { - "image": { - "addPicture": "Add picture", - "uploadingPicture": "Uploading your picture…", - "uploadingMultiple": "Uploading {count} pictures…", - "pleaseLogin": "Please log in to add a picture", - "willBePublished": "Your picture will be published: ", - "cco": "in the public domain", - "ccbs": "under the CC-BY-SA-license", - "ccb": "under the CC-BY-license", - "uploadFailed": "Could not upload your picture. Are you connected to the Internet, and allow third party API's? The Brave browser or the uMatrix plugin might block them.", - "respectPrivacy": "Do not photograph people nor license plates. Do not upload Google Maps, Google Streetview or other copyrighted sources.", - "uploadDone": "Your picture has been added. Thanks for helping out!", - "uploadMultipleDone": "{count} pictures have been added. Thanks for helping out!", - "dontDelete": "Cancel", - "doDelete": "Remove image", - "isDeleted": "Deleted", - "toBig": "Your image is too large as it is {actual_size}. Please use images of at most {max_size}" - }, - "centerMessage": { - "loadingData": "Loading data…", - "zoomIn": "Zoom in to view or edit the data", - "ready": "Done!", - "retrying": "Loading data failed. Trying again in {count} seconds…" - }, - "index": { - "#": "These texts are shown above the theme buttons when no theme is loaded", - "title": "Welcome to MapComplete", - "featuredThemeTitle": "Featured this week", - "intro": "MapComplete is an OpenStreetMap-viewer and editor, which shows you information about features of a specific theme and allows to update it.", - "pickTheme": "Pick a theme below to get started.", - "logIn": "Log in to see other themes you previously visited" - }, - "split": { - "split": "Split", - "cancel": "Cancel", - "inviteToSplit": "Split this road in smaller segments. This allows to give different properties to parts of the road.", - "loginToSplit": "You must be logged in to split a road", - "splitTitle": "Choose on the map where to split this road", - "hasBeenSplit": "This way has been split" - }, - "delete": { - "delete": "Delete", - "cancel": "Cancel", - "isDeleted": "This feature is deleted", - "cannotBeDeleted": "This feature can not be deleted", - "loginToDelete": "You must be logged in to delete a point", - "safeDelete": "This point can be safely deleted.", - "isntAPoint": "Only points can be deleted, the selected feature is a way, area or relation.", - "onlyEditedByLoggedInUser": "This point has only be edited by yourself, you can safely delete it.", - "notEnoughExperience": "This point was made by someone else.", - "useSomethingElse": "Use another OpenStreetMap-editor to delete it instead", - "partOfOthers": "This point is part of some way or relation and can not be deleted directly.", - "loading": "Inspecting properties to check if this feature can be deleted.", - "whyDelete": "Why should this point be deleted?", - "reasons": { - "test": "This was a testing point - the feature was never actually there", - "disused": "This feature is disused or removed", - "notFound": "This feature couldn't be found", - "duplicate": "This point is a duplicate of another feature" + "image": { + "addPicture": "Add picture", + "uploadingPicture": "Uploading your picture…", + "uploadingMultiple": "Uploading {count} pictures…", + "pleaseLogin": "Please log in to add a picture", + "willBePublished": "Your picture will be published ", + "cco": "in the public domain", + "ccbs": "under the CC-BY-SA-license", + "ccb": "under the CC-BY-license", + "ccoExplanation": "Adding a picture in the public domain implies that anyone can do anything with your picture", + "ccbsExplanation": "The CC-BY-SA license implies that anyone may use your picture for any purpose, but they have to attribute you and remixes of the picture have to be republished under the same license", + "ccbExplanation": "The CC-BY license implies that anyone may use your picture for any purpose, but they have to attribute you", + "uploadFailed": "Could not upload your picture. Are you connected to the Internet, and allow third party API's? The Brave browser or the uMatrix plugin might block them.", + "respectPrivacy": "Do not photograph people nor license plates. Do not upload Google Maps, Google Streetview or other copyrighted sources.", + "uploadDone": "Your picture has been added. Thanks for helping out!", + "uploadMultipleDone": "{count} pictures have been added. Thanks for helping out!", + "dontDelete": "Cancel", + "doDelete": "Remove image", + "isDeleted": "Deleted", + "toBig": "Your image is too large as it is {actual_size}. Please use images of at most {max_size}" }, - "explanations": { - "selectReason": "Please, select why this feature should be deleted", - "hardDelete": "This point will be deleted in OpenStreetMap. It can be recovered by an experienced contributor", - "softDelete": "This feature will be updated and hidden from this application. {reason}" + "centerMessage": { + "loadingData": "Loading data…", + "zoomIn": "Zoom in to view or edit the data", + "ready": "Done!", + "retrying": "Loading data failed. Trying again in {count} seconds…" }, - "readMessages": "You have unread messages. Read these before deleting a point - someone might have feedback" - }, - "general": { - "loading": "Loading...", - "pdf": { - "generatedWith": "Generated with MapComplete.osm.be", - "attr": "Map data © OpenStreetMap Contributors, reusable under ODbL", - "attrBackground": "Background layer: {background}", - "versionInfo": "v{version} - generated on {date}" + "index": { + "#": "These texts are shown above the theme buttons when no theme is loaded", + "title": "Welcome to MapComplete", + "featuredThemeTitle": "Featured this week", + "intro": "MapComplete is an OpenStreetMap-viewer and editor, which shows you information about features of a specific theme and allows to update it.", + "pickTheme": "Pick a theme below to get started.", + "logIn": "Log in to see other themes you previously visited" }, - "loginWithOpenStreetMap": "Login with OpenStreetMap", - "welcomeBack": "You are logged in, welcome back!", - "loginToStart": "Log in to answer this question", - "openStreetMapIntro": "

An Open Map

One that everyone can use and edit freely. A single place to store all geo-info. Different, small, incompatible and outdated maps are not needed anywhere.

OpenStreetMap is not the enemy map. The map data can be used freely (with attribution and publication of changes to that data). Everyone can add new data and fix errors. This website uses OpenStreetMap. All the data is from there, and your answers and corrections are used all over.

Many people and apps already use OpenStreetMap: Organic Maps, OsmAnd, but also the maps at Facebook, Instagram, Apple-maps and Bing-maps are (partly) powered by OpenStreetMap.

", - "search": { - "search": "Search a location", - "searching": "Searching…", - "nothing": "Nothing found…", - "error": "Something went wrong…" + "split": { + "split": "Split", + "cancel": "Cancel", + "inviteToSplit": "Split this road in smaller segments. This allows to give different properties to parts of the road.", + "loginToSplit": "You must be logged in to split a road", + "splitTitle": "Choose on the map where to split this road", + "hasBeenSplit": "This way has been split" }, - "returnToTheMap": "Return to the map", - "save": "Save", - "cancel": "Cancel", - "skip": "Skip this question", - "oneSkippedQuestion": "One question is skipped", - "skippedQuestions": "Some questions are skipped", - "number": "number", - "osmLinkTooltip": "Browse this object on OpenStreetMap for history and more editing options", - "add": { - "addNewMapLabel": "Click here to add a new item", - "disableFiltersExplanation": "Some features might be hidden by a filter", - "disableFilters": "Disable all filters", - "addNew": "Add a new {category} here", - "presetInfo": "The new POI will have {tags}", - "warnVisibleForEveryone": "Your addition will be visible for everyone", - "title": "Add a new point?", - "intro": "You clicked somewhere where no data is known yet.
", - "pleaseLogin": "Please log in to add a new point", - "zoomInFurther": "Zoom in further to add a point.", - "stillLoading": "The data is still loading. Please wait a bit before you add a new point.", - "confirmIntro": "

Add a {title} here?

The point you create here will be visible for everyone. Please, only add things on to the map if they truly exist. A lot of applications use this data.", - "confirmButton": "Add a {category} here.
Your addition is visible for everyone
", - "openLayerControl": "Open the layer control box", - "layerNotEnabled": "The layer {layer} is not enabled. Enable this layer to add a point", - "hasBeenImported": "This point has already been imported", - "importTags": "The element will receive {tags}", - "zoomInMore": "Zoom in more to import this feature", - "wrongType": "This element is not a point or a way and can not be imported", - "import": { - "officialThemesOnly": "The import button is disabled for unofficial themes to prevent accidents", - "howToTest": "To test, add test=true or backend=osm-test to the URL. The changeset will be printed in the console. Please open a PR to officialize this theme to actually enable the import button.", - "hasBeenImported": "This object has been imported", - "importTags": "The element will receive {tags}", - "zoomInMore": "Zoom in more to import this feature", - "wrongType": "This element is not a point or a way and can not be imported" - } - }, - "pickLanguage": "Choose a language: ", - "about": "Easily edit and add OpenStreetMap for a certain theme", - "nameInlineQuestion": "The name of this {category} is $$$", - "noNameCategory": "{category} without a name", - "questions": { - "phoneNumberOf": "What is the phone number of {category}?", - "phoneNumberIs": "The phone number of this {category} is {phone}", - "websiteOf": "What is the website of {category}?", - "websiteIs": "Website: {website}", - "emailOf": "What is the email address of {category}?", - "emailIs": "The email address of this {category} is {email}" - }, - "morescreen": { - "intro": "

More thematic maps?

Do you enjoy collecting geodata?
There are more themes available.", - "requestATheme": "If you want a custom-built theme, request it in the issue tracker", - "streetcomplete": "Another, similar application is StreetComplete.", - "createYourOwnTheme": "Create your own MapComplete theme from scratch", - "previouslyHiddenTitle": "Previously visited hidden themes", - "hiddenExplanation": "These themes are only accessible to those with the link. You have discovered {hidden_discovered} of {total_hidden} hidden themes." - }, - "sharescreen": { - "intro": "

Share this map

Share this map by copying the link below and sending it to friends and family:", - "addToHomeScreen": "

Add to your home screen

You can easily add this website to your smartphone home screen for a native feel. Click the 'Add to home screen' button in the URL bar to do this.", - "embedIntro": "

Embed on your website

Please, embed this map into your website.
We encourage you to do it - you don't even have to ask permission.
It is free, and always will be. The more people are using this, the more valuable it becomes.", - "copiedToClipboard": "Link copied to clipboard", - "thanksForSharing": "Thanks for sharing!", - "editThisTheme": "Edit this theme", - "editThemeDescription": "Add or change questions to this map theme", - "fsUserbadge": "Enable the login button", - "fsSearch": "Enable the search bar", - "fsWelcomeMessage": "Show the welcome message popup and associated tabs", - "fsLayers": "Enable the layer control", - "fsLayerControlToggle": "Start with the layer control expanded", - "fsAddNew": "Enable the 'add new POI' button", - "fsGeolocation": "Enable the 'geolocate-me' button (mobile only)", - "fsIncludeCurrentBackgroundMap": "Include the current background choice {name}", - "fsIncludeCurrentLayers": "Include the current layer choices", - "fsIncludeCurrentLocation": "Include current location" - }, - "attribution": { - "attributionTitle": "Attribution notice", - "attributionContent": "

All data is provided by OpenStreetMap, freely reusable under the Open DataBase License.

", - "themeBy": "Theme maintained by {author}", - "iconAttribution": { - "title": "Used icons" - }, - "mapContributionsBy": "The current visible data has edits made by {contributors}", - "mapContributionsByAndHidden": "The current visible data has edits made by {contributors} and {hiddenCount} more contributors", - "codeContributionsBy": "MapComplete has been built by {contributors} and {hiddenCount} more contributors", - "openOsmcha": "See latest edits made with {theme}", - "openMapillary": "Open Mapillary here", - "openIssueTracker": "File a bug", - "josmOpened": "JOSM is opened", - "josmNotOpened": "JOSM could not be reached. Make sure it is opened and remote control is enabled", - "editJosm": "Edit here with JOSM", - "editId": "Open the OpenStreetMap online editor here", - "donate": "Support MapComplete financially" - }, - "readYourMessages": "Please, read all your OpenStreetMap-messages before adding a new point.", - "fewChangesBefore": "Please, answer a few questions of existing points before adding a new point.", - "goToInbox": "Open inbox", - "removeLocationHistory": "Delete the location history", - "getStartedLogin": "Log in with OpenStreetMap to get started", - "getStartedNewAccount": " or create a new account", - "noTagsSelected": "No tags selected", - "testing": "Testing - changes won't be saved", - "customThemeIntro": "

Custom themes

These are previously visited user-generated themes.", - "aboutMapcomplete": "

About MapComplete

Use it to add OpenStreetMap info on a single theme. Answer questions, and within minutes your contributions are available everywhere. The theme maintainer defines elements, questions and languages for it.

Find out more

MapComplete always offers the next step to learn more about OpenStreetMap.

  • When embedded in a website, the iframe links to a full-screen MapComplete
  • The fullscreen version offers info about OpenStreetMap
  • Viewing works without login, but editing requires an OSM account.
  • If you are not logged in, you are asked to do so
  • Once you answered a single question, you can add new points to the map
  • After a while, actual OSM-tags are shown, later linking to the wiki


Did you notice an issue? Do you have a feature request? Want to help translate? Head over to the source code or issue tracker.

Want to see your progress? Follow the edit count on OsmCha.

", - "backgroundMap": "Background map", - "openTheMap": "Open the map", - "loginOnlyNeededToEdit": "if you want to edit the map", - "layerSelection": { - "zoomInToSeeThisLayer": "Zoom in to see this layer", - "title": "Select layers" - }, - "download": { - "title": "Download visible data", - "downloadAsPdf": "Download a PDF of the current map", - "downloadAsPdfHelper": "Ideal to print the current map", - "downloadGeojson": "Download visible data as GeoJSON", - "downloadGpx": "Download as GPX-file", - "downloadGpxHelper": "A GPX-file can be used with most navigation devices and applications", - "uploadGpx": "Upload your track to OpenStreetMap", - "exporting": "Exporting…", - "downloadGeoJsonHelper": "Compatible with QGIS, ArcGIS, ESRI, …", - "downloadCSV": "Download visible data as CSV", - "downloadCSVHelper": "Compatible with LibreOffice Calc, Excel, …", - "includeMetaData": "Include metadata (last editor, calculated values, …)", - "licenseInfo": "

Copyright notice

The provided data is available under ODbL. Reusing it is gratis for any purpose, but
  • the attribution © OpenStreetMap contributors is required
  • Any change must be use the license
Please read the full copyright notice for details.", - "noDataLoaded": "No data is loaded yet. Download will be available soon", - "downloadFeatureAsGpx": "Download as GPX-file", - "downloadFeatureAsGeojson": "Download as GeoJson-file" - }, - "weekdays": { - "abbreviations": { - "monday": "Mon", - "tuesday": "Tue", - "wednesday": "Wed", - "thursday": "Thu", - "friday": "Fri", - "saturday": "Sat", - "sunday": "Sun" - }, - "monday": "Monday", - "tuesday": "Tuesday", - "wednesday": "Wednesday", - "thursday": "Thursday", - "friday": "Friday", - "saturday": "Saturday", - "sunday": "Sunday" - }, - "opening_hours": { - "error_loading": "Error: could not visualize these opening hours.", - "open_during_ph": "During a public holiday, this is", - "opensAt": "from", - "openTill": "till", - "not_all_rules_parsed": "These opening hours are complicated. The following rules are ignored in the input element:", - "closed_until": "Closed until {date}", - "closed_permanently": "Closed for an unkown duration", - "open_24_7": "Opened around the clock", - "ph_not_known": " ", - "ph_closed": "closed", - "ph_open": "opened", - "ph_open_as_usual": "opened as usual", - "loadingCountry": "Determining country…" - }, - "histogram": { - "error_loading": "Could not load the histogram" - }, - "wikipedia": { - "wikipediaboxTitle": "Wikipedia", - "failed": "Loading the Wikipedia entry failed", - "loading": "Loading Wikipedia...", - "noWikipediaPage": "This Wikidata item has no corresponding Wikipedia page yet.", - "searchWikidata": "Search on Wikidata", - "noResults": "Nothing found for {search}", - "doSearch": "Search above to see results", - "createNewWikidata": "Create a new Wikidata item" - }, - "apply_button": { - "isApplied": "The changes are applied", - "appliedOnAnotherObject": "The object {id} will receive {tags}" - } - }, - "favourite": { - "panelIntro": "

Your personal theme

Activate your favourite layers from all the official themes", - "loginNeeded": "

Log in

A personal layout is only available for OpenStreetMap users", - "reload": "Reload the data" - }, - "reviews": { - "title": "{count} reviews", - "title_singular": "One review", - "name_required": "A name is required in order to display and create reviews", - "no_reviews_yet": "There are no reviews yet. Be the first to write one and help open data and the business!", - "write_a_comment": "Leave a review…", - "no_rating": "No rating given", - "posting_as": "Posting as", - "i_am_affiliated": "I am affiliated with this object
Check if you are an owner, creator, employee, …", - "affiliated_reviewer_warning": "(Affiliated review)", - "saving_review": "Saving…", - "saved": "Review saved. Thanks for sharing!", - "tos": "If you create a review, you agree to the TOS and privacy policy of Mangrove.reviews", - "attribution": "Reviews are powered by Mangrove Reviews and are available under CC-BY 4.0.", - "plz_login": "Log in to leave a review" - }, - "multi_apply": { - "autoApply": "When changing the attributes {attr_names}, these attributes will automatically be changed on {count} other objects too" - }, - "move": { - "loginToMove": "You must be logged in to move a point", - "inviteToMoveAgain": "Move this point again", - "moveTitle": "Move this point", - "whyMove": "Why do you want to move this point?", - "confirmMove": "Move here", - "pointIsMoved": "The point has been moved", - "zoomInFurther": "Zoom in further to confirm this move", - "selectReason": "Why do you move this object?", - "reasons": { - "reasonRelocation": "The object has been relocated to a totally different location", - "reasonInaccurate": "The location of this object is inaccurate and should be moved a few meter" - }, - "inviteToMove": { - "generic": "Move this point", - "reasonInaccurate": "Improve the accuracy of this point", - "reasonRelocation": "Move this object to a another place because it has relocated" - }, - "cannotBeMoved": "This feature cannot be moved.", - "isWay": "This feature is a way. Use another OpenStreetMap editor to move it.", - "isRelation": "This feature is a relation and can not be moved", - "partOfAWay": "This feature is part of another way. Use another editor to move it.", - "partOfRelation": "This feature is part of a relation. Use another editor to move it.", - "cancel": "Cancel move" - }, - "privacy": { - "title": "Privacy policy", - "intro": "Privacy is important - for both the individual and for society. MapComplete tries to respect your privacy as much as possible - up to the point no annoying cookie banner is needed. However, we still would like to inform you which information is gathered and shared, under which circumstances and why these trade-offs are made.", - "trackingTitle": "Statistical data", - "tracking": "To gather some insight in whom visits our website, some technical information is collected. This is included the country you visited the webpage from, which website referred you to MapComplete, the type of your device and the screensize. A coockie is placed on your device to indicate that you visited MapComplete earlier today. This data is not detailed enough to personally identify you. These statistics are only available to anyone in aggregate and are publicly available to anyone", - "geodataTitle": "Your geolocation", - "geodata": "When MapComplete gets your geolocation, your geolocation and previously visited locations stay on your device. Your location data is never automatically sent to anywhere else - unless some (future) functionality clearly states otherwise.", - "editingTitle": "When making changes", - "editing": "When you make a change to the map, this change is recorded on OpenStreetMap and is publicly available to anyone. A changeset made with MapComplete includes the following data:
  • The changes you made
  • Your username
  • When this change is made
  • The theme you used while making the change
  • The language of the user interface
  • An indication of how close you were to changed objects. Other mappers can use this information to determine if a change was made based on survey or on remote research
Please refer to the privacy policy on OpenStreetMap.org for detailed information. We'd like to remind you that you can use a fictional name when signing up.", - "miscCookiesTitle": "Other cookies", - "miscCookies": "MapComplete integrates with various other services, especially to load images of features. Images are hosted on various third-party servers, which might set cookies on their own.", - "whileYoureHere": "Do you care about privacy?", - "surveillance": "As you are reading the privacy policy, you probably care about privacy - so do we! We even made a theme showing surveillance cameras. Feel free to map them all!" - }, - "professional": { - "backToMapcomplete": "Back to the theme overview", - "title": "Professional support with MapComplete", - "intro": "The developer of MapComplete offers professional support. This document outlines some of the possibilities, common questions and the boundaries of MapComplete", - "osmTitle": "What can OpenStreetMap and MapComplete do for your organisation?", - "text0": "

Maintaining a set of up-to-date geodata is hard, error prone and expensive.
To add insult to injury, many organizations end up collecting the same data independently - resulting in duplicated efforts, non-standardized data formats and many incomplete, unmaintained datasets.

At the same time, there is a huge community which gathers a lot of geodata into one shared, global and standardized database - namely OpenStreetMap.org.

", - "text1": "

MapComplete is the editor to make contributing data to OpenStreetMap easy.

", - "aboutOsm": { - "aboutOsm": { - "title": "What is OpenStreetMap?", - "intro": "OpenStreetMap is a shared, global database, built by volunteers. All geodata can be contributed to OpenStreetMap, as long as it can be verified on the ground.
OpenStreetMap has grown to be a very broad and deep dataset as it contains data over thousands of categories of objects.An individual object might also have a ton of attributes, bringing a lot of nuance, e.g.:", - "li0": "Streets have geometry, but might also have information about the maxspeed, surface, wether they are lit, their name, a link to Wikipedia, a link to what they are named after, which hiking-, cycle- and busroutes run over theme", - "li1": "Shops and other amenities might have opening hours, a phone number, a link to the website, which payment methods are supported, what they sell, which services they offer, ...", - "li2": "Toilets might have information about wheelchair accessibility, a changing table, if payment is needed, ...", - "li3": "and much, much more..." - }, - "benefits": { - "title": "Benefits of the OSM-ecosystem", - "intro": "It can be very hard to leave your own dataset behind, as building this dataset often took a lot of time and effort.
However, the benefits of switching over to OSM are huge:", - "li0": "You are not alone anymore to gather and maintain this dataset - a whole community is at your side", - "li1": "Your data will reach a bigger audience then ever via Bing Maps, Apple Maps, Facebook, Instagram, Pokemon Go, OsmAnd, Organic Maps, Maps.me, Mapbox, Komoot, nearly all cycle-applications, ...", - "li2": "Many governement organisations and municipalities use OpenStreetMap on their websites too" - }, - "license": { - "title": "The license", - "intro": "OpenStreetMap is licensed under the Open Database License. The full copyright text can be summarized as following:", - "li0": "A product using OpenStreetMap data must give attribution.", - "li1": "OpenStreetMap-data must remain open. This means that data of a map containing OpenStreetMap data can be copied again.", - "outro": "The license has a few implications - these are explained below." - }, - "vandalism": { - "title": "What about vandalism?", - "intro": "As anyone can edit the data, it is indeed possible that a malicious change is made. However, this is extremely rare for a few reasons:", - "li0": "the technical barrier to make changes is high", - "li1": "a small malicious change has low impact, thus little reward for a vandal", - "li2": "a high impact change is quickly noticed and reverted since so many people use this data", - "li3": "all changes are tracked and tied to a single user. A repeating offender is quickly banned", - "li4": "In Belgium (and some other countries), the first edit by a new contributor is systematically checked and corrected if needed." - } - }, - "aboutMc": { - "title": "Using MapComplete in your organization", - "text0": "If an existing MapComplete theme is what you, feel free to use it or embed it on your website. Embedding the public themes is free and always will be.", - "text1": "Do you need some other data, but does the theme not exist yet? The MapComplete-developers can build it for you on a decent budget. Get in touch via email, github or send a message via osm.org", - "text2": "If you still feel unsure, the possibilities are outlined below. Additionally, some common questions are answered", - "layers": { - "title": "What data can be shown with MapComplete?", - "intro": "

MapComplete has a powerful templating system, which allows to quickly create a map showing precisely those features that you need and showing relevant attributes in the popups.

This data can be fetched from OpenStreetMap directly, but MapComplete can also use external datasets - e.g. to compare OpenStreetMap with another dataset or to show data that is not suited for OpenStreetMap (planned activities, statistics, ...)" - }, - "survey": { - "title": "Survey possibilities", - "intro": "

MapComplete is an easy to use survey tool. It is ideal to collect the necessary in a few clicks, both on desktop and on mobile. This data is contributed directly into OpenStreetMap.

We can setup a custom survey tool, asking precisely the data you need in a future-proof way.

Do you have a dataset that has to be (re)surveyed? This is the perfect moment to make the switch to OpenStreetMap.MapComplete can show your dataset and OpenStreetMap at the same time, making it easier to visit all the locations and to see what the community already contributed.

\n" - }, - "internalUse": { - "title": "Using the data in internal processes", - "intro": "

Once the data is in OpenStreetMap, you'll probably want to use the data as well. Your MapComplete theme can have a convenient export-button, offering to download the data in many open formats usable in QGis, ArcGis, Excel, LibreOffice-calc, ...

Someone with basic spreadsheet-skills can thus easily create graphs and insights about the data, whereas the GIS-experts within your organisation can easily work with this data in their preferred application.

If an automated setup is needed, a free-to-use, community-run API is available.

" - } - }, - "services": { - "title": "MapComplete services", - "intro": "The developer of MapComplete can help you with the following services:", - "li0": "Setting up a theme tailored for your need", - "li1": "Help with setting up the internal data flow to integrate OpenStreetMap", - "li2": "Training on how to contribute data with MapComplete", - "li3": "Advanced training (e.g. for the GIS-team) on how to add advanced data to OpenStreetMap", - "li4": "Training on how to download filtered data from OpenStreetMap", - "outro": "These services are offered at competitive prices. A simple theme without extra support can be setup for as little €2000, and a small additional yearly hosting cost." - }, - "drawbacks": { - "title": "A few drawbacks to keep in mind", - "intro": "While joining this community has tremendous benefits, there are a few topics to carefully consider.", - "unsuitedData": { - "title": "Data not suited for OpenStreetMap", - "intro": "The basic rule for OpenStreetMap is that all data must be verifiable on the ground and are somewhat permanent. This implies that some data cannot be sent to OpenStreetMap directly - but some workarounds exist.", - "li0": "Subjective data (such as reviews) are not suited for OpenStreetMap. However, MapComplete has an integration with Mangrove.reviews, an openly licensed review website", - "li1": "Events of a few days, road works that are planned next month are thus not recorded, neither are road works which only last a few days.", - "li2": "Temporal data (e.g. statistics of air quality, traffic intensity, ...) can not stored on OpenStreetMap as they are hard to verify by a volunteer. Note that, if this data is available elsewhere, it can still be visualized within MapComplete as extra layer." - }, - "licenseNuances": { - "title": "Implications of ODbL: some use cases", - "intro": "OpenStreetMap is licensed unter the Open Database License which states that:", - "li0": "All data can be reused for any purpose - including commercial purposes", - "li1": "Applications or products using OpenStreetMap should give a clear copyright notice", - "li2": "Any dataset or product which contains OpenStreetMap-data must be republished under ODbL too, including modifications to this dataset and in a usable format.", - "outro": "This has a few implications which should be considered for some usecases, as explained below", - "usecaseMapDifferentSources": { - "title": "Creating a map from different sources", - "intro": "

For example, one could make a map with all benches in some city, based on the benches known by OpenStreetMap. This printed map needs a clear statement that the map data is based on OpenStreetMap. Selling these maps is permitted.If the mapmaker notices that the benches are missing in some area and adds them on the printed map, the data on the missing benches are automatically open data too. This means that an OpenStreetMap-contributor is allowed to take the paper map and use it to add the missing benches back into OpenStreetMap.

This contributor also has the right to ask for the dataset of the missing benches, which should be provided too.

If the mapmaker notices that the benches are missing in some area and adds them on the printed map, the data on the missing benches are automatically open data too. This means that an OpenStreetMap-contributor is allowed to take the paper map and use it to add the missing benches back into OpenStreetMap. This contributor also has the right to ask for the dataset of the missing benches, which should be provided too.

Of course, a map with only benches can be boring. The mapmaker might also decide to add in a layer with shops, possibly sourced from another geodata provider under another license. This is permitted to, if the map clearly states that the benches are sourced from OSM (under ODBL) and the shops have a different source (eventually with an all rights reserved).

However, mixing two datasets into one undistinguishible layer might not be permitted. For example, the mapmaker migth find that OSM has excellent data on benches in one part of the city and the closed-source provider might have excellent data on benches in another part of the city, merging these datasets into one could be problematic:

", - "li0": "the open license would require the modifications to be openly republished...", - "li1": "...whereas the all-rights-reserved license would prohibit this.", - "outro": "As a result, this kind of mixing is not allowed" + "delete": { + "delete": "Delete", + "cancel": "Cancel", + "isDeleted": "This feature is deleted", + "cannotBeDeleted": "This feature can not be deleted", + "loginToDelete": "You must be logged in to delete a point", + "safeDelete": "This point can be safely deleted.", + "isntAPoint": "Only points can be deleted, the selected feature is a way, area or relation.", + "onlyEditedByLoggedInUser": "This point has only be edited by yourself, you can safely delete it.", + "notEnoughExperience": "This point was made by someone else.", + "useSomethingElse": "Use another OpenStreetMap-editor to delete it instead", + "partOfOthers": "This point is part of some way or relation and can not be deleted directly.", + "loading": "Inspecting properties to check if this feature can be deleted.", + "whyDelete": "Why should this point be deleted?", + "reasons": { + "test": "This was a testing point - the feature was never actually there", + "disused": "This feature is disused or removed", + "notFound": "This feature couldn't be found", + "duplicate": "This point is a duplicate of another feature" }, - "usecaseGatheringOpenData": { - "title": "Gathering open data", - "intro": "MapComplete is an excellent way to create Open Data, also for governments. By default, this data will be freely redistributable under the ODbL. However, if there is a requirement to publish the gathered data under a public domain-license (where all rights are granted to the public and no attribution is required), the ODbL is too restrictive. In this case, one can ask the contributors to add data as Public Domain (e.g. by informing them in the mapcomplete theme). " + "explanations": { + "selectReason": "Please, select why this feature should be deleted", + "hardDelete": "This point will be deleted in OpenStreetMap. It can be recovered by an experienced contributor", + "softDelete": "This feature will be updated and hidden from this application. {reason}" + }, + "readMessages": "You have unread messages. Read these before deleting a point - someone might have feedback" + }, + "general": { + "loading": "Loading...", + "pdf": { + "generatedWith": "Generated with MapComplete.osm.be", + "attr": "Map data © OpenStreetMap Contributors, reusable under ODbL", + "attrBackground": "Background layer: {background}", + "versionInfo": "v{version} - generated on {date}" + }, + "loginWithOpenStreetMap": "Login with OpenStreetMap", + "welcomeBack": "You are logged in, welcome back!", + "loginToStart": "Log in to answer this question", + "openStreetMapIntro": "

An Open Map

One that everyone can use and edit freely. A single place to store all geo-info. Different, small, incompatible and outdated maps are not needed anywhere.

OpenStreetMap is not the enemy map. The map data can be used freely (with attribution and publication of changes to that data). Everyone can add new data and fix errors. This website uses OpenStreetMap. All the data is from there, and your answers and corrections are used all over.

Many people and apps already use OpenStreetMap: Organic Maps, OsmAnd, but also the maps at Facebook, Instagram, Apple-maps and Bing-maps are (partly) powered by OpenStreetMap.

", + "search": { + "search": "Search a location", + "searching": "Searching…", + "nothing": "Nothing found…", + "error": "Something went wrong…" + }, + "returnToTheMap": "Return to the map", + "save": "Save", + "cancel": "Cancel", + "skip": "Skip this question", + "oneSkippedQuestion": "One question is skipped", + "skippedQuestions": "Some questions are skipped", + "number": "number", + "osmLinkTooltip": "Browse this object on OpenStreetMap for history and more editing options", + "add": { + "addNewMapLabel": "Click here to add a new item", + "disableFiltersExplanation": "Some features might be hidden by a filter", + "disableFilters": "Disable all filters", + "addNew": "Add a new {category} here", + "presetInfo": "The new POI will have {tags}", + "warnVisibleForEveryone": "Your addition will be visible for everyone", + "title": "Add a new point?", + "intro": "You clicked somewhere where no data is known yet.
", + "pleaseLogin": "Please log in to add a new point", + "zoomInFurther": "Zoom in further to add a point.", + "stillLoading": "The data is still loading. Please wait a bit before you add a new point.", + "confirmIntro": "

Add a {title} here?

The point you create here will be visible for everyone. Please, only add things on to the map if they truly exist. A lot of applications use this data.", + "confirmButton": "Add a {category} here.
Your addition is visible for everyone
", + "openLayerControl": "Open the layer control box", + "layerNotEnabled": "The layer {layer} is not enabled. Enable this layer to add a point", + "hasBeenImported": "This point has already been imported", + "importTags": "The element will receive {tags}", + "zoomInMore": "Zoom in more to import this feature", + "wrongType": "This element is not a point or a way and can not be imported", + "import": { + "officialThemesOnly": "The import button is disabled for unofficial themes to prevent accidents", + "howToTest": "To test, add test=true or backend=osm-test to the URL. The changeset will be printed in the console. Please open a PR to officialize this theme to actually enable the import button.", + "hasBeenImported": "This object has been imported", + "importTags": "The element will receive {tags}", + "zoomInMore": "Zoom in more to import this feature", + "wrongType": "This element is not a point or a way and can not be imported" + } + }, + "pickLanguage": "Choose a language: ", + "about": "Easily edit and add OpenStreetMap for a certain theme", + "nameInlineQuestion": "The name of this {category} is $$$", + "noNameCategory": "{category} without a name", + "questions": { + "phoneNumberOf": "What is the phone number of {category}?", + "phoneNumberIs": "The phone number of this {category} is {phone}", + "websiteOf": "What is the website of {category}?", + "websiteIs": "Website: {website}", + "emailOf": "What is the email address of {category}?", + "emailIs": "The email address of this {category} is {email}" + }, + "morescreen": { + "intro": "

More thematic maps?

Do you enjoy collecting geodata?
There are more themes available.", + "requestATheme": "If you want a custom-built theme, request it in the issue tracker", + "streetcomplete": "Another, similar application is StreetComplete.", + "createYourOwnTheme": "Create your own MapComplete theme from scratch", + "previouslyHiddenTitle": "Previously visited hidden themes", + "hiddenExplanation": "These themes are only accessible to those with the link. You have discovered {hidden_discovered} of {total_hidden} hidden themes." + }, + "sharescreen": { + "intro": "

Share this map

Share this map by copying the link below and sending it to friends and family:", + "addToHomeScreen": "

Add to your home screen

You can easily add this website to your smartphone home screen for a native feel. Click the 'Add to home screen' button in the URL bar to do this.", + "embedIntro": "

Embed on your website

Please, embed this map into your website.
We encourage you to do it - you don't even have to ask permission.
It is free, and always will be. The more people are using this, the more valuable it becomes.", + "copiedToClipboard": "Link copied to clipboard", + "thanksForSharing": "Thanks for sharing!", + "editThisTheme": "Edit this theme", + "editThemeDescription": "Add or change questions to this map theme", + "fsUserbadge": "Enable the login button", + "fsSearch": "Enable the search bar", + "fsWelcomeMessage": "Show the welcome message popup and associated tabs", + "fsLayers": "Enable the layer control", + "fsLayerControlToggle": "Start with the layer control expanded", + "fsAddNew": "Enable the 'add new POI' button", + "fsGeolocation": "Enable the 'geolocate-me' button (mobile only)", + "fsIncludeCurrentBackgroundMap": "Include the current background choice {name}", + "fsIncludeCurrentLayers": "Include the current layer choices", + "fsIncludeCurrentLocation": "Include current location" + }, + "attribution": { + "attributionTitle": "Attribution notice", + "attributionContent": "

All data is provided by OpenStreetMap, freely reusable under the Open DataBase License.

", + "themeBy": "Theme maintained by {author}", + "iconAttribution": { + "title": "Used icons" + }, + "mapContributionsBy": "The current visible data has edits made by {contributors}", + "mapContributionsByAndHidden": "The current visible data has edits made by {contributors} and {hiddenCount} more contributors", + "codeContributionsBy": "MapComplete has been built by {contributors} and {hiddenCount} more contributors", + "openOsmcha": "See latest edits made with {theme}", + "openMapillary": "Open Mapillary here", + "openIssueTracker": "File a bug", + "josmOpened": "JOSM is opened", + "josmNotOpened": "JOSM could not be reached. Make sure it is opened and remote control is enabled", + "editJosm": "Edit here with JOSM", + "editId": "Open the OpenStreetMap online editor here", + "donate": "Support MapComplete financially" + }, + "readYourMessages": "Please, read all your OpenStreetMap-messages before adding a new point.", + "fewChangesBefore": "Please, answer a few questions of existing points before adding a new point.", + "goToInbox": "Open inbox", + "removeLocationHistory": "Delete the location history", + "getStartedLogin": "Log in with OpenStreetMap to get started", + "getStartedNewAccount": " or create a new account", + "noTagsSelected": "No tags selected", + "testing": "Testing - changes won't be saved", + "customThemeIntro": "

Custom themes

These are previously visited user-generated themes.", + "aboutMapcomplete": "

About MapComplete

Use it to add OpenStreetMap info on a single theme. Answer questions, and within minutes your contributions are available everywhere. The theme maintainer defines elements, questions and languages for it.

Find out more

MapComplete always offers the next step to learn more about OpenStreetMap.

  • When embedded in a website, the iframe links to a full-screen MapComplete
  • The fullscreen version offers info about OpenStreetMap
  • Viewing works without login, but editing requires an OSM account.
  • If you are not logged in, you are asked to do so
  • Once you answered a single question, you can add new points to the map
  • After a while, actual OSM-tags are shown, later linking to the wiki


Did you notice an issue? Do you have a feature request? Want to help translate? Head over to the source code or issue tracker.

Want to see your progress? Follow the edit count on OsmCha.

", + "backgroundMap": "Background map", + "openTheMap": "Open the map", + "loginOnlyNeededToEdit": "if you want to edit the map", + "layerSelection": { + "zoomInToSeeThisLayer": "Zoom in to see this layer", + "title": "Select layers" + }, + "download": { + "title": "Download visible data", + "downloadAsPdf": "Download a PDF of the current map", + "downloadAsPdfHelper": "Ideal to print the current map", + "downloadGeojson": "Download visible data as GeoJSON", + "downloadGpx": "Download as GPX-file", + "downloadGpxHelper": "A GPX-file can be used with most navigation devices and applications", + "uploadGpx": "Upload your track to OpenStreetMap", + "exporting": "Exporting…", + "downloadGeoJsonHelper": "Compatible with QGIS, ArcGIS, ESRI, …", + "downloadCSV": "Download visible data as CSV", + "downloadCSVHelper": "Compatible with LibreOffice Calc, Excel, …", + "includeMetaData": "Include metadata (last editor, calculated values, …)", + "licenseInfo": "

Copyright notice

The provided data is available under ODbL. Reusing it is gratis for any purpose, but
  • the attribution © OpenStreetMap contributors is required
  • Any change must be use the license
Please read the full copyright notice for details.", + "noDataLoaded": "No data is loaded yet. Download will be available soon", + "downloadFeatureAsGpx": "Download as GPX-file", + "downloadFeatureAsGeojson": "Download as GeoJson-file" + }, + "weekdays": { + "abbreviations": { + "monday": "Mon", + "tuesday": "Tue", + "wednesday": "Wed", + "thursday": "Thu", + "friday": "Fri", + "saturday": "Sat", + "sunday": "Sun" + }, + "monday": "Monday", + "tuesday": "Tuesday", + "wednesday": "Wednesday", + "thursday": "Thursday", + "friday": "Friday", + "saturday": "Saturday", + "sunday": "Sunday" + }, + "opening_hours": { + "error_loading": "Error: could not visualize these opening hours.", + "open_during_ph": "During a public holiday, this is", + "opensAt": "from", + "openTill": "till", + "not_all_rules_parsed": "These opening hours are complicated. The following rules are ignored in the input element:", + "closed_until": "Closed until {date}", + "closed_permanently": "Closed for an unkown duration", + "open_24_7": "Opened around the clock", + "ph_not_known": " ", + "ph_closed": "closed", + "ph_open": "opened", + "ph_open_as_usual": "opened as usual", + "loadingCountry": "Determining country…" + }, + "histogram": { + "error_loading": "Could not load the histogram" + }, + "wikipedia": { + "wikipediaboxTitle": "Wikipedia", + "failed": "Loading the Wikipedia entry failed", + "loading": "Loading Wikipedia...", + "noWikipediaPage": "This Wikidata item has no corresponding Wikipedia page yet.", + "searchWikidata": "Search on Wikidata", + "noResults": "Nothing found for {search}", + "doSearch": "Search above to see results", + "createNewWikidata": "Create a new Wikidata item" + }, + "apply_button": { + "isApplied": "The changes are applied", + "appliedOnAnotherObject": "The object {id} will receive {tags}" } - } + }, + "favourite": { + "panelIntro": "

Your personal theme

Activate your favourite layers from all the official themes", + "loginNeeded": "

Log in

A personal layout is only available for OpenStreetMap users", + "reload": "Reload the data" + }, + "reviews": { + "title": "{count} reviews", + "title_singular": "One review", + "name_required": "A name is required in order to display and create reviews", + "no_reviews_yet": "There are no reviews yet. Be the first to write one and help open data and the business!", + "write_a_comment": "Leave a review…", + "no_rating": "No rating given", + "posting_as": "Posting as", + "i_am_affiliated": "I am affiliated with this object
Check if you are an owner, creator, employee, …", + "affiliated_reviewer_warning": "(Affiliated review)", + "saving_review": "Saving…", + "saved": "Review saved. Thanks for sharing!", + "tos": "If you create a review, you agree to the TOS and privacy policy of Mangrove.reviews", + "attribution": "Reviews are powered by Mangrove Reviews and are available under CC-BY 4.0.", + "plz_login": "Log in to leave a review" + }, + "multi_apply": { + "autoApply": "When changing the attributes {attr_names}, these attributes will automatically be changed on {count} other objects too" + }, + "move": { + "loginToMove": "You must be logged in to move a point", + "inviteToMoveAgain": "Move this point again", + "moveTitle": "Move this point", + "whyMove": "Why do you want to move this point?", + "confirmMove": "Move here", + "pointIsMoved": "The point has been moved", + "zoomInFurther": "Zoom in further to confirm this move", + "selectReason": "Why do you move this object?", + "reasons": { + "reasonRelocation": "The object has been relocated to a totally different location", + "reasonInaccurate": "The location of this object is inaccurate and should be moved a few meter" + }, + "inviteToMove": { + "generic": "Move this point", + "reasonInaccurate": "Improve the accuracy of this point", + "reasonRelocation": "Move this object to a another place because it has relocated" + }, + "cannotBeMoved": "This feature cannot be moved.", + "isWay": "This feature is a way. Use another OpenStreetMap editor to move it.", + "isRelation": "This feature is a relation and can not be moved", + "partOfAWay": "This feature is part of another way. Use another editor to move it.", + "partOfRelation": "This feature is part of a relation. Use another editor to move it.", + "cancel": "Cancel move" + }, + "privacy": { + "title": "Privacy policy", + "intro": "Privacy is important - for both the individual and for society. MapComplete tries to respect your privacy as much as possible - up to the point no annoying cookie banner is needed. However, we still would like to inform you which information is gathered and shared, under which circumstances and why these trade-offs are made.", + "trackingTitle": "Statistical data", + "tracking": "To gather some insight in whom visits our website, some technical information is collected. This is included the country you visited the webpage from, which website referred you to MapComplete, the type of your device and the screensize. A cookie is placed on your device to indicate that you visited MapComplete earlier today. This data is not detailed enough to personally identify you. These statistics are only available to anyone in aggregate and are publicly available to anyone", + "geodataTitle": "Your geolocation", + "geodata": "When MapComplete gets your geolocation, your geolocation and previously visited locations stay on your device. Your location data is never automatically sent to anywhere else - unless some functionality clearly states otherwise.", + "editingTitle": "When making changes", + "editing": "When you make a change to the map, this change is recorded on OpenStreetMap and is publicly available to anyone. A changeset made with MapComplete includes the following data:
  • The changes you made
  • Your username
  • When this change is made
  • The theme you used while making the change
  • The language of the user interface
  • An indication of how close you were to changed objects. Other mappers can use this information to determine if a change was made based on survey or on remote research
Please refer to the privacy policy on OpenStreetMap.org for detailed information. We'd like to remind you that you can use a fictional name when signing up.", + "miscCookiesTitle": "Other cookies", + "miscCookies": "MapComplete integrates with various other services, especially to load images of features. Images are hosted on various third-party servers, which might set cookies on their own.", + "whileYoureHere": "Do you care about privacy?", + "surveillance": "As you are reading the privacy policy, you probably care about privacy - so do we! We even made a theme showing surveillance cameras. Feel free to map them all!" + }, + "professional": { + "backToMapcomplete": "Back to the theme overview", + "indexPage": { + "hook": "Need professional support?", + "hookMore": "We can help with setting up surveys, data imports and OpenStreetMap-consultancy", + "button": "Discover our services" + }, + "title": "Professional support with MapComplete", + "intro": "The developer of MapComplete offers professional support. This document outlines some of the possibilities, common questions and the boundaries of MapComplete", + "osmTitle": "What can OpenStreetMap and MapComplete do for your organisation?", + "text0": "

Maintaining a set of up-to-date geodata is hard, error prone and expensive.
To add insult to injury, many organizations end up collecting the same data independently - resulting in duplicated efforts, non-standardized data formats and many incomplete, unmaintained datasets.

At the same time, there is a huge community which gathers a lot of geodata into one shared, global and standardized database - namely OpenStreetMap.org.

", + "text1": "

MapComplete is the editor to make contributing data to OpenStreetMap easy.

", + "aboutOsm": { + "aboutOsm": { + "title": "What is OpenStreetMap?", + "intro": "OpenStreetMap is a shared, global database, built by volunteers. All geodata can be contributed to OpenStreetMap, as long as it can be verified on the ground.
OpenStreetMap has grown to be a very broad and deep dataset as it contains data over thousands of categories of objects.An individual object might also have a ton of attributes, bringing a lot of nuance, e.g.:", + "li0": "Streets have geometry, but might also have information about the maxspeed, surface, wether they are lit, their name, a link to Wikipedia, a link to what they are named after, which hiking-, cycle- and busroutes run over theme", + "li1": "Shops and other amenities might have opening hours, a phone number, a link to the website, which payment methods are supported, what they sell, which services they offer, …", + "li2": "Toilets might have information about wheelchair accessibility, a changing table, if payment is needed, …", + "li3": "and much, much more…" + }, + "benefits": { + "title": "Benefits of the OSM-ecosystem", + "intro": "It can be very hard to leave your own dataset behind, as building this dataset often took a lot of time and effort.
However, the benefits of switching over to OSM are huge:", + "li0": "You are not alone anymore to gather and maintain this dataset - a whole community is at your side", + "li1": "Your data will reach a bigger audience then ever via Bing Maps, Apple Maps, Facebook, Instagram, Pokemon Go, OsmAnd, Organic Maps, Maps.me, Mapbox, Komoot, nearly all cycle-applications, …", + "li2": "Many governement organisations and municipalities use OpenStreetMap on their websites too" + }, + "license": { + "title": "The license", + "intro": "OpenStreetMap is licensed under the Open Database License. The full copyright text can be summarized as following:", + "li0": "A product using OpenStreetMap data must give attribution.", + "li1": "OpenStreetMap-data must remain open. This means that data of a map containing OpenStreetMap data can be copied again.", + "outro": "The license has a few implications - these are explained below." + }, + "vandalism": { + "title": "What about vandalism?", + "intro": "As anyone can edit the data, it is indeed possible that a malicious change is made. However, this is extremely rare for a few reasons:", + "li0": "the technical barrier to make changes is high", + "li1": "a small malicious change has low impact, thus little reward for a vandal", + "li2": "a high impact change is quickly noticed and reverted since so many people use this data", + "li3": "all changes are tracked and tied to a single user. A repeating offender is quickly banned", + "li4": "In Belgium (and some other countries), the first edit by a new contributor is systematically checked and corrected if needed." + } + }, + "aboutMc": { + "title": "Using MapComplete in your organization", + "text0": "If an existing MapComplete theme is what you, feel free to use it or embed it on your website. Embedding the public themes is free and always will be.", + "text1": "Do you need some other data, but does the theme not exist yet? The MapComplete-developers can build it for you on a decent budget. Get in touch via email, github or send a message via osm.org", + "text2": "If you still feel unsure, the possibilities are outlined below. Additionally, some common questions are answered", + "layers": { + "title": "What data can be shown with MapComplete?", + "intro": "

MapComplete has a powerful templating system, which allows to quickly create a map showing precisely those features that you need and showing relevant attributes in the popups.

This data can be fetched from OpenStreetMap directly, but MapComplete can also use external datasets - e.g. to compare OpenStreetMap with another dataset or to show data that is not suited for OpenStreetMap (planned activities, statistics, ...)" + }, + "survey": { + "title": "Survey possibilities", + "intro": "

MapComplete is an easy to use survey tool. It is ideal to collect the necessary in a few clicks, both on desktop and on mobile. This data is contributed directly into OpenStreetMap.

We can setup a custom survey tool, asking precisely the data you need in a future-proof way.

Do you have a dataset that has to be (re)surveyed? This is the perfect moment to make the switch to OpenStreetMap.MapComplete can show your dataset and OpenStreetMap at the same time, making it easier to visit all the locations and to see what the community already contributed.

\n" + }, + "internalUse": { + "title": "Using the data in internal processes", + "intro": "

Once the data is in OpenStreetMap, you'll probably want to use the data as well. Your MapComplete theme can have a convenient export-button, offering to download the data in many open formats usable in QGis, ArcGis, Excel, LibreOffice-calc, ...

Someone with basic spreadsheet-skills can thus easily create graphs and insights about the data, whereas the GIS-experts within your organisation can easily work with this data in their preferred application.

If an automated setup is needed, a free-to-use, community-run API is available.

" + } + }, + "services": { + "title": "MapComplete services", + "intro": "The developer of MapComplete can help you with the following services:", + "li0": "Setting up a theme tailored for your need", + "li1": "Help with setting up the internal data flow to integrate OpenStreetMap", + "li2": "Training on how to contribute data with MapComplete", + "li3": "Advanced training (e.g. for the GIS-team) on how to add advanced data to OpenStreetMap", + "li4": "Training on how to download filtered data from OpenStreetMap", + "outro": "These services are offered at competitive prices. A simple theme without extra support can be setup for as little €2000, and a small additional yearly hosting cost." + }, + "drawbacks": { + "title": "A few drawbacks to keep in mind", + "intro": "While joining this community has tremendous benefits, there are a few topics to carefully consider.", + "unsuitedData": { + "title": "Data not suited for OpenStreetMap", + "intro": "The basic rule for OpenStreetMap is that all data must be verifiable on the ground and are somewhat permanent. This implies that some data cannot be sent to OpenStreetMap directly - but some workarounds exist.", + "li0": "Subjective data (such as reviews) are not suited for OpenStreetMap. However, MapComplete has an integration with Mangrove.reviews, an openly licensed review website", + "li1": "Events of a few days, road works that are planned next month are thus not recorded, neither are road works which only last a few days.", + "li2": "Temporal data (e.g. statistics of air quality, traffic intensity, ...) can not stored on OpenStreetMap as they are hard to verify by a volunteer. Note that, if this data is available elsewhere, it can still be visualized within MapComplete as extra layer." + }, + "licenseNuances": { + "title": "Implications of ODbL: some use cases", + "intro": "OpenStreetMap is licensed unter the Open Database License which states that:", + "li0": "All data can be reused for any purpose - including commercial purposes", + "li1": "Applications or products using OpenStreetMap should give a clear copyright notice", + "li2": "Any dataset or product which contains OpenStreetMap-data must be republished under ODbL too, including modifications to this dataset and in a usable format.", + "outro": "This has a few implications which should be considered for some usecases, as explained below", + "usecaseMapDifferentSources": { + "title": "Creating a map from different sources", + "intro": "

For example, one could make a map with all benches in some city, based on the benches known by OpenStreetMap. This printed map needs a clear statement that the map data is based on OpenStreetMap. Selling these maps is permitted.If the mapmaker notices that the benches are missing in some area and adds them on the printed map, the data on the missing benches are automatically open data too. This means that an OpenStreetMap-contributor is allowed to take the paper map and use it to add the missing benches back into OpenStreetMap.

This contributor also has the right to ask for the dataset of the missing benches, which should be provided too.

If the mapmaker notices that the benches are missing in some area and adds them on the printed map, the data on the missing benches are automatically open data too. This means that an OpenStreetMap-contributor is allowed to take the paper map and use it to add the missing benches back into OpenStreetMap. This contributor also has the right to ask for the dataset of the missing benches, which should be provided too.

Of course, a map with only benches can be boring. The mapmaker might also decide to add in a layer with shops, possibly sourced from another geodata provider under another license. This is permitted to, if the map clearly states that the benches are sourced from OSM (under ODBL) and the shops have a different source (eventually with an all rights reserved).

However, mixing two datasets into one undistinguishible layer might not be permitted. For example, the mapmaker migth find that OSM has excellent data on benches in one part of the city and the closed-source provider might have excellent data on benches in another part of the city, merging these datasets into one could be problematic:

", + "li0": "the open license would require the modifications to be openly republished...", + "li1": "...whereas the all-rights-reserved license would prohibit this.", + "outro": "As a result, this kind of mixing is not allowed" + }, + "usecaseGatheringOpenData": { + "title": "Gathering open data", + "intro": "MapComplete is an excellent way to create Open Data, also for governments. By default, this data will be freely redistributable under the ODbL. However, if there is a requirement to publish the gathered data under a public domain-license (where all rights are granted to the public and no attribution is required), the ODbL is too restrictive. In this case, one can ask the contributors to add data as Public Domain (e.g. by informing them in the mapcomplete theme). " + } + } + } + }, + "notes": { + "isClosed": "This note is resolved", + "addCommentPlaceholder": "Add a comment...", + "addComment": "Add comment", + "addCommentAndClose": "Add comment and close", + "closeNote": "Close note", + "reopenNote": "Reopen note", + "reopenNoteAndComment": "Reopen note and comment", + "anonymous": "Anonymous user", + "loginToAddComment": "Login to add a comment", + "loginToAddPicture": "Login to add a picture", + "loginToClose": "Login to close this note", + "createNoteTitle": "Create a new note here", + "createNote": "Create a new note", + "noteIsPublic": "This will be visible to everyone", + "createNoteIntro": "Is something wrong or missing on the map? Create a note here. These will be checked by volunteers", + "warnAnonymous": "You are not logged in. We won't be able to contact you to resolve your issue.", + "notesLayerMustBeEnabled": "The 'notes'-layer is disabled. Enable it to add a note", + "isCreated": "Your note has been created!", + "noteLayerNotEnabled": "The layer showing notes is not enabled. This layer must be enabled to add a new note", + "noteLayerHasFilters": "Some notes might be hidden by a filter", + "disableAllNoteFilters": "Disable all filters", + "noteLayerDoEnable": "Enable the layer showing notes" + }, + "importLayer": { + "layerName": "Possible {title}", + "description": "A layer which imports entries for {title}", + "popupTitle": "Possible {title}" } - } } diff --git a/langs/fr.json b/langs/fr.json index 6fed6ef9d5..58e1370031 100644 --- a/langs/fr.json +++ b/langs/fr.json @@ -31,7 +31,7 @@ "featuredThemeTitle": "Thème de la semaine" }, "general": { - "loginWithOpenStreetMap": "Se connecter avec OpenStreeMap", + "loginWithOpenStreetMap": "Se connecter avec OpenStreetMap", "welcomeBack": "Vous êtes connecté. Bienvenue !", "loginToStart": "Connectez-vous pour répondre à cette question", "search": { @@ -58,7 +58,14 @@ "confirmIntro": "

Ajouter un/une {title} ici?

Le point que vous ajouterez sera visible par tout le monde. Merci de vous assurer que ce point existe réellement. Beaucoup d'autres applications utilisent ces données.", "confirmButton": "Ajouter un/une {category} ici.
Votre ajout sera visible par tout le monde
", "openLayerControl": "Ouvrir la panneau de contrôle", - "layerNotEnabled": "La couche {layer} est désactivée. Activez-la pour ajouter un point" + "layerNotEnabled": "La couche {layer} est désactivée. Activez-la pour ajouter un point", + "disableFiltersExplanation": "Certains élément peuvent être filtrés", + "disableFilters": "Désactiver tous les filtres", + "presetInfo": "Le nouveau POI aura {tags}", + "addNewMapLabel": "Cliquez ici pour ajouter un élément", + "hasBeenImported": "Ce point a déjà été importé", + "warnVisibleForEveryone": "Votre ajout sera visible", + "zoomInMore": "Zoomez pour importer cet élément" }, "pickLanguage": "Choisir la langue : ", "about": "Éditer facilement et ajouter OpenStreetMap pour un certain thème", @@ -72,7 +79,7 @@ "emailOf": "Quelle est l'adresse électronique de {category} ?", "emailIs": "L'adresse électronique de {category} est {email}" }, - "openStreetMapIntro": "

Une carte ouverte

Ne serait-il pas génial d'avoir sur une carte que tout le monde pourrait éditer ouvertement ? Une seule et unique plateforme regroupant toutes les informations géographiques ? Ainsi nous n'aurons plus besoin de toutes ces cartes petites et incompatibles (souvent non mises à jour).

OpenStreetMap est la carte qu'il vous faut ! Toutes les données de cette carte peuvent être utilisé gratuitement (avec d'attribution et de publication des changements de données). De plus tout le monde est libre d'ajouter de nouvelles données et de corriger les erreurs. Ce site internet utilise également OpenStreetMap. Toutes les données en proviennent et tous les ajouts et modifications y seront également ajoutés.

De nombreux individus et applications utilisent déjà OpenStreetMap : Maps.me, OsmAnd, mais aussi les cartes de Facebook, Instagram, Apple-maps et Bing-maps sont (en partie) supportés par OpenStreetMap. Si vous modifiez quelque chose ici, ces changements seront incorporés dans ces applications dès leurs mises à jour !

", + "openStreetMapIntro": "

Une carte ouverte

Utilisable et éditable librement. Une seule et unique plateforme regroupant toutes les informations géographiques ? Toutes ces différentes cartes isolées, incompatibles et obsolètes ne sont plus utiles.

OpenStreetMap n’est pas un énième concurrent. Toutes les données de cette carte peuvent être utilisé librement (avec attribution et publication des changements de données). De plus tout le monde est libre d'ajouter de nouvelles données et corriger les erreurs. Ce site utilise également OpenStreetMap. Toutes les données en proviennent et tous les ajouts et modifications y seront également ajoutés.

De nombreux individus et applications utilisent déjà OpenStreetMap : Maps.me, OsmAnd, mais aussi les cartes de Facebook, Instagram, Apple Maps et Bing Maps sont (en partie) alimentées par OpenStreetMap

", "attribution": { "attributionTitle": "Crédits", "attributionContent": "

Toutes les données sont fournies par OpenStreetMap, librement réutilisables sous Open DataBase License.

", @@ -86,8 +93,8 @@ }, "sharescreen": { "intro": "

Partager cette carte

Partagez cette carte en copiant le lien suivant et envoyez-le à vos amis :", - "addToHomeScreen": "

Ajouter à votre page d'accueil

Vous pouvez facilement ajouter la carte à votre écran d'accueil de téléphone. Cliquer sur le boutton 'ajouter à l'ecran d'accueil' dans la barre d'adresse pour éffectuer cette tâche.", - "embedIntro": "

Incorporer à votre site Web

Ajouter la carte à votre site Web.
Nous vous y encourageons – pas besoin de permission.
C'est gratuit et pour toujours. Plus des personnes l'utilisent, mieux c'est.", + "addToHomeScreen": "

Ajouter à votre page d'accueil

Vous pouvez facilement ajouter la carte à votre écran d'accueil de téléphone. Cliquer sur le bouton 'ajouter à l'écran d'accueil' dans la barre d'adresse pour effectuer cette tâche.", + "embedIntro": "

Incorporer à votre site Web

Ajouter la carte à votre site Web.
Nous vous y encourageons – pas besoin de permission.
C'est gratuit et pour toujours. Plus de personnes l'utilisent, mieux c'est.", "copiedToClipboard": "Lien copié dans le presse-papier", "thanksForSharing": "Merci d'avoir partagé !", "editThisTheme": "Editer ce thème", @@ -105,9 +112,11 @@ }, "morescreen": { "intro": "

Plus de thèmes ?

Vous aimez collecter des données géographiques ?
Il y a plus de thèmes disponibles.", - "requestATheme": "Si vous voulez une autre carte thématique, demandez-la dans le suivi des problèmes", + "requestATheme": "Si vous souhaitez une autre carte thématique, demandez-la dans le suivi des problèmes", "streetcomplete": "Une autre application similaire est StreetComplete.", - "createYourOwnTheme": "Créez votre propre MapComplete carte" + "createYourOwnTheme": "Créez votre propre MapComplete carte", + "previouslyHiddenTitle": "Thèmes précédemment utilisés", + "hiddenExplanation": "Ces thèmes sont seulement accessibles par lien. Vous avez découvert {hidden_discovered} des {total_hidden} thèmes cachés." }, "readYourMessages": "Merci de lire tous vos messages sur OpenStreetMap avant d'ajouter un nouveau point.", "fewChangesBefore": "Merci de répondre à quelques questions à propos de points déjà existants avant d'ajouter de nouveaux points.", @@ -142,17 +151,54 @@ }, "opening_hours": { "error_loading": "Erreur : impossible de visualiser ces horaires d'ouverture.", - "open_during_ph": "Pendant les congés, ce lieu est", + "open_during_ph": "Pendant les congés, cet élément est", "opensAt": "à partir de", "openTill": "jusqu'à", - "not_all_rules_parsed": "Les heures d'ouvertures de ce magasin sont trop compliquées. Les heures suivantes ont été ignorées :", + "not_all_rules_parsed": "Les heures d'ouvertures de ce magasin sont trop compliquées. Les informations suivantes ont été ignorées :", "closed_until": "Fermé jusqu'au {date}", "closed_permanently": "Fermé", "open_24_7": "Ouvert en permanence", "ph_closed": "fermé", "ph_open": "ouvert", - "ph_not_known": " " - } + "ph_not_known": " ", + "ph_open_as_usual": "Ouverture habituelle", + "loadingCountry": "Localisation…" + }, + "pdf": { + "attr": "Données par © les contributeurs & contributrices OpenStreetMap sous licence libre ODbL", + "attrBackground": "Couche d’arrière plan : {background}", + "versionInfo": "v{version} - générée le {date}", + "generatedWith": "Généré à l’aide de MapComplete.osm.be" + }, + "download": { + "downloadGeoJsonHelper": "Compatible avec QGIS, ArcGIS, ESRI,…", + "downloadCSV": "Télécharger les données visibles au format CSV", + "includeMetaData": "Inclure les métadonnées (dernière édition, valeur calculées,…)", + "downloadAsPdfHelper": "Idéal pour imprimer une carte", + "noDataLoaded": "Pas de données chargées. Le téléchargement sera bientôt disponible", + "title": "Télécharger les données visibles", + "downloadAsPdf": "Télécharger un PDF de la vue actuelle", + "downloadGeojson": "Télécharger les données visibles au format GeoJSON", + "downloadCSVHelper": "Compatible avec LibreOffice Calc, Excel,…", + "licenseInfo": "

Mentions légales

Ces données sont fournis sous licence ODbL. Leur réutilisation est gratuite, mais
  • l’attribution aux © contributeurs et contributrices OpenStreetMap est nécessaire
  • Toute modification doit utiliser la même licence
Se reporter à la version complète pour plus de détails.", + "exporting": "Exportation…" + }, + "wikipedia": { + "createNewWikidata": "Créer un nouvel élément Wikidata", + "wikipediaboxTitle": "Wikipédia", + "loading": "Chargement de Wikipédia…", + "noWikipediaPage": "Cet élément Wikidata n’a pas encore de page Wikipédia correspondante.", + "noResults": "Pas de résultats pour", + "searchWikidata": "Rechercher sur Wikidata", + "failed": "Le chargement de Wikipédia a échoué" + }, + "histogram": { + "error_loading": "Erreur de chargement de l’histograme" + }, + "testing": "Test - les changements ne seront pas sauvegardés", + "openTheMap": "Ouvrir la carte", + "loginOnlyNeededToEdit": "si vous souhaitez modifier la carte", + "loading": "Chargement…" }, "favourite": { "panelIntro": "

Votre thème personnel

Activer vos couches favorites depuis les thèmes officiels", @@ -195,6 +241,47 @@ "onlyEditedByLoggedInUser": "Ce point a été édité seulement par vous et peut donc être supprimé.", "cannotBeDeleted": "Cet objet ne peut être supprimé", "partOfOthers": "Ce point faire partie d'un autre objet et ne peut être supprimé directement.", - "whyDelete": "Pourquoi ce point devrait-il être supprimé ?" + "whyDelete": "Pourquoi ce point devrait-il être supprimé ?", + "explanations": { + "selectReason": "Sélectionner pourquoi cet élément devrait être supprimé", + "hardDelete": "Ce point sera supprimé d’OpenStreetmap. Il pourra être restauré par des méthodes avancées", + "softDelete": "Cet élément sera mis à jour et caché de l’application." + }, + "reasons": { + "test": "Élément de test qui n’a jamais été ici", + "disused": "Cet élément n’est plus utilisé ou a été enlevé", + "notFound": "Cet élément n’a pas pu être trouvé", + "duplicate": "Ce point est un doublon" + }, + "loading": "Inspection des propriétés pour vérifier si l’élément peut être supprimé.", + "readMessages": "Messages non-lus à lire avant de supprimer un point, certains pourraient comporter des informations importantes" + }, + "move": { + "selectReason": "Pourquoi souhaitez vous déplacer cet objet ?", + "whyMove": "Pourquoi souhaitez vous déplacer ce point ?", + "reasons": { + "reasonRelocation": "Cet objet a été déplacé", + "reasonInaccurate": "La position de cet objet est décalée" + }, + "cancel": "Annuler le déplacement", + "confirmMove": "Déplacer ici", + "pointIsMoved": "Le point a été déplacé", + "zoomInFurther": "Zoomez pour confirmer ce déplacement", + "cannotBeMoved": "Cet élément ne peut être déplacé.", + "isWay": "Cet élément est un chemin. Veuillez utiliser un autre éditeur OpenStreetMap pour le déplacer.", + "inviteToMoveAgain": "Déplacer ce point à nouveau", + "isRelation": "Cet élément est une relation et ne peut être déplacée", + "partOfAWay": "Cet élément fait partie d’un chemin. Utilisez un autre éditeur pour le déplacer.", + "partOfRelation": "Cet élément fait partie d’une relation. Utilisez un autre éditeur pour le déplacer.", + "moveTitle": "Déplacer ce point", + "inviteToMove": { + "reasonInaccurate": "Améliorer la précision de ce point", + "reasonRelocation": "Cet objet a été déplacé", + "generic": "Déplacer ce point" + }, + "loginToMove": "Vous devez être connecté·e pour déplacer un point" + }, + "multi_apply": { + "autoApply": "En changeant les attributs {attr_names}, ceux-ci seront automatiquement changés sur {count} autres éléments" } } diff --git a/langs/hu.json b/langs/hu.json index 83ab17dfb0..541627e939 100644 --- a/langs/hu.json +++ b/langs/hu.json @@ -1,60 +1,357 @@ { - "general": { - "openStreetMapIntro": "

Egy nyílt térkép

Nem lenne király, ha lenne egy térkép, amit mindenki szabadon használhatna és szerkeszthetne? Egyetlen hely minden geoinformáció tárolására. Hogy arra a sok weboldalra a kicsi és egymással nem kompatibilis térképekkel (amik többnyire elavultak) ne legyen szükség többé.

Az OpenStreetMap éppen ez. A trékép adatai ingyenesen használhatók (az adatokban történő változtatások megjelölésével és publikálásával) Mindezeken túl bárki szabadon hozzáadhat új helyeket és kijavíthatja a hibákat. Ez a weboldal is OpenStreetMapet használ. Minden adat onnan származik és a te válaszaid és módosításaid is oda futnak be.

Rengeteg ember és alkalmazás használja már most is az OpenStreetMapet: Maps.me, OsmAnd, de még a Facebook, Instagram, Apple és Bing által használt térképek is (részben) az OpenStreetMapet használják. Ha itt módosítasz valamit, az ezekben az alkalmazásokban is megjelenik - a legközelebbi frissítés után.

", - "questions": { - "websiteIs": "Weboldal: {website}" + "general": { + "openStreetMapIntro": "

Nyílt térkép

Ezt a térképet mindenki szabadon használhatja és szerkesztheti. Ez egy olyan egységes hely, ahol <i>minden</i> térinformatikai adatot tárolni lehet. Semmi szükség különböző, kicsi, nem kompatibilis és elavult térképekre.

Az OpenStreetMap (OSM) nem az ellenség térképe. A térképadatok szabadon felhasználhatók (a tulajdonlással és az adatokban bekövetkezett változások feltüntetésével). Mindenki adhat hozzá új térképadatokat és javíthat hibákat. Ez a weboldal is az OpenStreetMapet használja. Minden adat onnan származik, és a Te válaszaid és javításaid is meg fognak jelenni mindenütt.

Sok ember és alkalmazás már használja az OpenStreetMapet: például az Organic Maps vagy az OsmAnd, de a Facebook, az Instagram, az Apple és a Bing (Microsoft) térképei is (részben) az OpenStreetMap adataira támaszkodnak.

", + "questions": { + "websiteIs": "Weboldal: {website}", + "phoneNumberIs": "Ezen {category} telefonszáma: {phone}", + "phoneNumberOf": "Mi a telefonszáma ennek ({category})?", + "websiteOf": "Mi a weboldala ennek ({category})?", + "emailOf": "Mi az e-mail-címe ennek ({category})?", + "emailIs": "Ezen {category} e-mail-címe: {email}" + }, + "noNameCategory": "Név nélküli {category}", + "nameInlineQuestion": "Ezen {category} neve: $$$", + "pickLanguage": "Nyelv kiválasztása: ", + "add": { + "layerNotEnabled": "A {layer} réteg nincs engedélyezve. Pont hozzáadásához engedélyezd ezt a réteget", + "confirmButton": "{category} hozzáadása itt.
A hozzáadott objektum mindenki számára látható lesz
", + "confirmIntro": "

Felrajzolsz ide egy {title} objektumot?

Az itt létrehozandó pontot mindenki láthatja majd. Kérjük, csak valóban létező dolgokat rajzolj fel a térképre. Ezeket az adatokat sok alkalmazás használja.", + "stillLoading": "Az adatok betöltése folyamatban van. Kérjük, várj egy kicsit mielőtt új pontot adsz hozzá.", + "zoomInFurther": "Pont hozzáadásához közelíts jobban.", + "title": "Hozzáadsz egy új pontot?", + "addNew": "Új {category} hozzáadása itt", + "disableFiltersExplanation": "Lehet, hogy a szűrő miatt egyes objektumok nem látszanak", + "disableFilters": "Minden szűrő kikapcsolása", + "intro": "Olyan helyre kattintottál, ahol még nincs ismert adat.
", + "import": { + "zoomInMore": "Nagyíts tovább az elem importálásához", + "wrongType": "Ez az elem nem pont vagy vonal, ezért nem importálható", + "importTags": "Az elem a következő címkéket fogja kapni: {tags}", + "officialThemesOnly": "A balesetek elkerülése érdekében a nem hivatalos témáknál ki van kapcsolva az importálás gomb", + "howToTest": "A teszteléshez add hozzá az URL-hez a test=true vagy a backend=osm-test szöveget. A módosításkészlet a konzolra lesz nyomtatva. Ha hivatalossá szeretnéd tenni ezt a témát (és szeretnéd engedélyezni az importálás gombot), akkor nyiss egy lekéréses kérelmet (pull request).", + "hasBeenImported": "Ez az objektum importáltatott" + }, + "addNewMapLabel": "Új elem hozzáadásához kattints ide", + "hasBeenImported": "Ezt a pontot már importálták", + "zoomInMore": "Nagyíts tovább az elem importálásához", + "presetInfo": "Az új érdekes pont (POI) címkéi: {tags}", + "warnVisibleForEveryone": "A kiegészítésed mindenki számára látható lesz", + "openLayerControl": "Rétegvezérlő-doboz megnyitása", + "pleaseLogin": "Új pont hozzáadásához be kell jelentkezned", + "importTags": "Az elem {tags} címkéket fog kapni", + "wrongType": "Ez az elem nem pont vagy vonal, ezért nem importálható" + }, + "number": "szám", + "skip": "Kérdés kihagyása", + "oneSkippedQuestion": "Egy kérdés ki lett hagyva", + "skippedQuestions": "Néhány kérdés ki lett hagyva", + "cancel": "Mégse", + "save": "Mentés", + "returnToTheMap": "Vissza a térképhez", + "search": { + "error": "Hiba történt…", + "nothing": "Nincs találat…", + "searching": "Keresés…", + "search": "Helyszín keresése" + }, + "loginToStart": "A kérdés megválaszolásához be kell jelentkezni", + "welcomeBack": "Be vagy jelentkezve, üdv ismét!", + "loginWithOpenStreetMap": "Bejelentkezés OpenStreetMap-fiókkal", + "pdf": { + "generatedWith": "Létrehozva a MapComplete.be segítségével", + "attrBackground": "Háttérréteg: {background}", + "versionInfo": "{version} verzió – létrehozva: {date}", + "attr": "Térképadatok: © OpenStreetMap-közreműködők; az ODbL licenc szerint újrafelhasználható" + }, + "sharescreen": { + "fsIncludeCurrentLocation": "Tartalmazza az aktuális helyet", + "thanksForSharing": "Köszönjük a megosztást!", + "copiedToClipboard": "Link a vágólapra másolva", + "editThemeDescription": "Térképtémához tartozó kérdések hozzáadása vagy módosítása", + "intro": "

Térkép megosztása

Oszd meg ezt a térképet! Másold ki az alábbi linket, és küldd el a barátaidnak és a családodnak:", + "editThisTheme": "Téma szerkesztése", + "fsUserbadge": "Bejelentkezési gomb engedélyezése", + "fsSearch": "Keresősáv engedélyezése", + "addToHomeScreen": "

Hozzáadás a kezdőképernyőhöz

Könnyedén hozzáadhatod ezt a weboldalt az okostelefon kezdőképernyőjéhez a natív hangulat érdekében. Ehhez kattints az URL-sávban a „Hozzáadás a kezdőképernyőhöz” gombra.", + "fsWelcomeMessage": "Felugró üdvözlő üzenet és kapcsolódó fülek megjelenítése", + "fsLayers": "Rétegvezérlő engedélyezése", + "fsLayerControlToggle": "Kezdés kibontott rétegvezérlővel", + "fsAddNew": "„Új érdekes pont (POI) hozzáadása” gomb engedélyezése", + "fsGeolocation": "„Saját helyem megjelenítése” gomb engedélyezése (csak mobileszközön)", + "fsIncludeCurrentBackgroundMap": "Tartalmazza a jelenleg kiválasztott hátteret ({name})", + "fsIncludeCurrentLayers": "Tartalmazza a jelenleg kiválasztott rétegeket", + "embedIntro": "

Beágyazás egy weboldalon

Kérjük, illeszd be ezt a térképet a weboldalba.
Biztatunk, tedd meg – még engedélyt sem kell kérned.
Ingyenes, és az is marad. Minél többen használják, annál értékesebbé válik. A pipákra kattintva módosíthatod a paramétereket:" + }, + "attribution": { + "attributionTitle": "Szerzők", + "attributionContent": "

Az összes adatot az OpenStreetMap biztosítja, és szabadon újrafelhasználható az Open DataBase License alapján.

", + "themeBy": "A téma karbantartója: {author}", + "iconAttribution": { + "title": "Felhasznált ikonok" + }, + "openMapillary": "Mapillary megnyitása itt", + "openIssueTracker": "Hiba bejelentése", + "josmOpened": "A JOSM megnyílt", + "mapContributionsBy": "A jelenleg látható adatokat szerkesztette: {contributors}", + "mapContributionsByAndHidden": "A jelenleg látható adatokat szerkesztette: {contributors} és {hiddenCount} további közreműködő", + "josmNotOpened": "A JOSM-ot nem lehetett elérni. Győződj meg róla, hogy meg van nyitva, és a távvezérlés engedélyezve van", + "editJosm": "Szerkesztés itt JOSM-mal", + "editId": "Az OpenStreetMap online szerkesztőjének megnyitása itt", + "donate": "A MapComplete pénzügyi támogatása", + "openOsmcha": "A téma {theme} legutóbbi szerkesztéseinek megtekintése", + "codeContributionsBy": "A MapComplete-et {contributors} és további {hiddenCount} közreműködő fejleszti" + }, + "aboutMapcomplete": "

A MapComplete-ről

Arra használhatod, hogy egy egy adott téma szerint OpenStreetMap-adatokat adj hozzá az adatbázishoz. Válaszolj a kérdésekre, és a szerkesztéseid perceken belül mindenhol elérhetővé válnak. A témához tartozó elemeket, kérdéseket és nyelveket a téma karbantartója határozza meg .

További információk

A MapComplete mindig felkínálja a következő lépést ahhoz, hogy tanulhass az OpenStreetMapről.

  • Weboldalba ágyazva az iframe egy teljes képernyős MapComplete-hez vezet
  • A teljes képernyős változat az OpenStreetMapről mutat adatokat
  • A megtekintés bejelentkezés nélkül is működik, de a szerkesztéshez OSM-fiók szükséges
  • Ha nem vagy bejelentkezve, kérjük, tedd meg
  • Miután válaszoltál egy kérdésre, új pontokat helyezhetsz a térképre
  • Egy idő után megjelennek a tényleges OSM-címkék, amelyek később a wikire hivatkoznak


Észrevettél egy problémát? Új funkciót szeretnél kérni? Szeretnél segíteni a fordításban? Látogass el a forráskódhoz vagy a problémakövetőhöz (issue tracker).

Szeretnéd látni a fejlődést? Kövesd a szerkesztések számát az OsmCha módosításkészlet-elemzőn.

", + "layerSelection": { + "zoomInToSeeThisLayer": "Nagyíts a réteg megtekintéséhez", + "title": "Rétegek kijelölése" + }, + "download": { + "title": "A látható adatok letöltése", + "downloadAsPdfHelper": "Eszményi a jelenlegi térkép kinyomtatásához", + "downloadGpx": "Letöltés GPX-ként", + "downloadAsPdf": "A jelenlegi térkép letöltése PDF-ként", + "downloadGeojson": "A látható adatok letöltése GeoJSON-ként", + "downloadCSV": "Látható adatok letöltése CSV-ként", + "includeMetaData": "Metaadatokat is tartalmazzon (legutóbbi szerkesztő, számított értékek stb.)", + "noDataLoaded": "Még nincs betöltött adat. A letöltés hamarosan elérhető lesz", + "downloadGeoJsonHelper": "Kompatibilis többek között ezekkel: QGIS, ArcGIS, ESRI…", + "downloadFeatureAsGeojson": "Letöltés GeoJSON-fájlként", + "downloadCSVHelper": "Kompatibilis a LibreOffice Calc-kal, az Excellel…", + "licenseInfo": "

Szerzői jogi nyilatkozat

A megadott adatok az ODbL licenc szerint érhetők el. Újrafelhasználásuk bármilyen célra ingyenes, de
  • a © OpenStreetMap-közreműködők megnevezés szükséges, és
  • minden változtatáshoz ezt a licencet kell használni
A részletekért kérjük, olvassa el a teljes szerzői jogi nyilatkozatot.", + "downloadGpxHelper": "A GPX-fájlok a legtöbb navigációs eszközzel és alkalmazással használhatók", + "uploadGpx": "Töltsd fel a nyomvonalaidat az OpenStreetMapre", + "downloadFeatureAsGpx": "Letöltés GPX-fájlként", + "exporting": "Exportálás…" + }, + "osmLinkTooltip": "A szerkesztési előzmények és további szerkesztési lehetőségek megtekintéséhez nézd meg ezt az objektumot az OpenStreetMapen", + "morescreen": { + "streetcomplete": "Egy másik, hasonló alkalmazás a StreetComplete.", + "requestATheme": "Ha egyedi témát szeretnél, kérd a problémakövetőben (issue tracker)", + "createYourOwnTheme": "Készítsd el saját MapComplete témád a semmiből", + "previouslyHiddenTitle": "Korábban megnézett rejtett témák", + "hiddenExplanation": "Ezeket a témákat csak az érheti el, akik ismeri a linket. {total_hidden} rejtett téma közül {hidden_discovered} témát ismersz.", + "intro": "

Kíváncsi vagy más tematikus térképekre is?

Szeretsz földrajzi adatokat gyűjteni?
További témák is elérhetők." + }, + "loading": "Betöltés…", + "testing": "Kipróbálás – a módosítások nem lesznek elmentve", + "openTheMap": "Nyisd meg a térképet,", + "backgroundMap": "Háttértérkép", + "loginOnlyNeededToEdit": "ha szerkeszteni szeretnéd a térképet", + "getStartedLogin": "A kezdéshez jelentkezz be az OpenStreetMap-fiókoddal,", + "about": "Egy adott téma esetében az OpenStreetMap egyszerű szerkesztése és hozzáadása", + "goToInbox": "Beérkezett üzenetek megnyitása", + "removeLocationHistory": "Helyelőzmények törlése", + "readYourMessages": "Kérjük, új pont hozzáadása előtt olvasd el az összes OpenStreetMap-üzeneted.", + "fewChangesBefore": "Kérjük, válaszolj néhány meglévő pontokra vonatkozó kérdésre, mielőtt új pontot adnál hozzá.", + "customThemeIntro": "

Egyéni témák

Ezek korábban megnézett, felhasználó által létrehozott témák.", + "getStartedNewAccount": " vagy hozz létre új fiókot", + "noTagsSelected": "Nincs kijelölt címke", + "weekdays": { + "abbreviations": { + "tuesday": "Ke", + "wednesday": "Sze", + "thursday": "Csüt", + "friday": "Pé", + "sunday": "Vas", + "monday": "Hét", + "saturday": "Szo" + }, + "wednesday": "Szerda", + "sunday": "Vasárnap", + "saturday": "Szombat", + "tuesday": "Kedd", + "monday": "Hétfő", + "friday": "Péntek", + "thursday": "Csütörtök" + }, + "opening_hours": { + "error_loading": "Hiba: nem sikerült megjeleníteni ezt a nyitva tartási időt", + "not_all_rules_parsed": "Ez a nyitva tartás bonyolult. A beviteli elemben a következő szabályok nem vétetnek figyelembe:", + "closed_until": "Zárva eddig: {date}", + "closed_permanently": "Ismeretlen ideig zárva", + "open_24_7": "Éjjel-nappal nyitva", + "ph_not_known": " ", + "ph_closed": "zárva", + "ph_open": "nyitva", + "loadingCountry": "Ország meghatározása…", + "openTill": "eddig:", + "open_during_ph": "Munkaszüneti napokon ez", + "opensAt": "ettől:", + "ph_open_as_usual": "a szokásos rend szerint nyitva" + }, + "wikipedia": { + "failed": "Wikipédia-szócikk betöltése sikertelen", + "loading": "Wikipédia betöltése…", + "noWikipediaPage": "Ennek a Wikidata-elemnek még nincs megfelelő Wikipédia-oldala.", + "createNewWikidata": "Új Wikidata-elem létrehozása", + "wikipediaboxTitle": "Wikipédia", + "searchWikidata": "Keresés a Wikidatán", + "noResults": "Nincs találat erre: {search}", + "doSearch": "Keress fent az eredmények megtekintéséhez" + }, + "histogram": { + "error_loading": "Nem sikerült betölteni a hisztogramot" + }, + "apply_button": { + "appliedOnAnotherObject": "A(z) {id} objektum a következő címkéket fogja megkapni: {tags}", + "isApplied": "A módosítások alkalmazva lettek" + } }, - "noNameCategory": "Név nélküli {category}", - "nameInlineQuestion": "A(z) {category} neve $$$", - "pickLanguage": "Válassz nyelvet: ", - "add": { - "layerNotEnabled": "A {layer} réteg nincs engedélyezve. Pont hozzáadásához engedélyezd ezt a réteget!", - "confirmButton": "{category} hozzáadása itt.
A módosításod mindenki által látható lesz
", - "confirmIntro": "

Egy {title} hozzáadása itt?

A pont, amit létrehozol mindenki által látható lesz. Kérjük, csak valóban létező dolgokat adj hozzá. Sok alkalmazás használja ezeket az adatokat.", - "stillLoading": "Az adatok betöltése folyamatban van. Kérjük, várj egy kicsit mielőtt új pontot adsz hozzá!", - "zoomInFurther": "Pont hozzáadásához közelíts rá jobban!", - "title": "Hozzáadsz egy új pontot?", - "addNew": "Új {category} hozzáadása itt" + "index": { + "pickTheme": "Válassz egy témát lent a kezdéshez.", + "title": "Isten hozott a MapComplete-en", + "intro": "A MapComplete egy OpenStreetMap-nézegető és -szerkesztő program, amely egy adott témához kapcsolódó objektumokról jelenít meg információkat, és lehetővé teszi ezek frissítését.", + "#": "Ezek a szövegek akkor jelennek meg a témagombok felett, ha nincs betöltve téma", + "featuredThemeTitle": "Kiemelt ezen a héten", + "logIn": "A korábban megnézett témák megtekintéséhez be kell jelentkezned" }, - "number": "szám", - "skip": "Kérdés kihagyása", - "oneSkippedQuestion": "Egy kérdés ki lett hagyva", - "skippedQuestions": "Néhány kérdés ki lett hagyva", - "cancel": "Mégse", - "save": "Mentés", - "returnToTheMap": "Vissza a térképhez", - "search": { - "error": "Hiba történt…", - "nothing": "Nincs találat", - "searching": "Keresés…", - "search": "Helyszín keresése" + "centerMessage": { + "retrying": "Nem sikerült betölteni az adatokat. Újrapróbálkozás {count} másodperc múlva…", + "ready": "Kész!", + "zoomIn": "Közelíts az adatok megtekintéséhez és szerkesztéséhez", + "loadingData": "Adatok betöltése folyamatban…" }, - "loginToStart": "Jelentkezz be a kérdés megválaszolásához", - "welcomeBack": "Be vagy jelentkezve, üdv ismét!", - "loginWithOpenStreetMap": "Bejelentkezés OpenStreetMap segítségével" - }, - "index": { - "pickTheme": "Válassz egy témát lent a kezdéshez!", - "title": "Üdvözlünk a MapComplete-nél!" - }, - "centerMessage": { - "retrying": "Nem sikerült betölteni az adatokat. Újrapróbálkozás {count} másodperc múlva…", - "ready": "Kész!", - "zoomIn": "Közelíts rá az adatok megtekintéséhez és szerkesztéséhez", - "loadingData": "Adatok betöltése folyamatban" - }, - "image": { - "isDeleted": "Törölve", - "doDelete": "Kép eltávolítása", - "dontDelete": "Mégse", - "uploadDone": "A kép hozzá lett adva. Köszönjük a segítséged!", - "respectPrivacy": "Ne készíts fényképet emberekről és rendszámtáblákról! Ne tölts fel képeket Google Mapsről, Google Streetview-ról és egyéb szerzői jog által védett forrásokból!", - "uploadFailed": "A kép feltöltése sikertelen. Biztosan van hálózati kapcsolatod és engedélyezve vannak a harmadik féltől származó API-k? A Brave böngésző és az UMatrix blokkolhatja ezeket.", - "ccb": "a CC-BY licenc szerint", - "ccbs": "a CC-BY-SA licenc szerint", - "pleaseLogin": "Kép hozzáadásához jelentkezz be", - "uploadingMultiple": "{count} kép feltöltése folyamatban", - "uploadingPicture": "Kép feltöltése folyamatban", - "addPicture": "Kép hozzáadása" - } + "image": { + "isDeleted": "Törölve", + "doDelete": "Kép eltávolítása", + "dontDelete": "Mégse", + "uploadDone": "A kép hozzá lett adva. Köszönjük a segítséged!", + "respectPrivacy": "Ne készíts fényképet emberekről és rendszámtáblákról. Ne tölts fel képet a Google Mapsről, a Google Streetview-ról (utcaképről) és egyéb szerzői jog által védett forrásokból.", + "uploadFailed": "Nem sikerült feltölteni a képet. Van-e internetkapcsolatod, és engedélyezted-e a harmadik féltől származó API-kat? A Brave böngésző vagy a uMatrix bővítmény blokkolhatja őket.", + "ccb": "CC-BY licenc szerint", + "ccbs": "CC-BY-SA licenc szerint", + "pleaseLogin": "Kép hozzáadásához be kell jelentkezni", + "uploadingMultiple": "{count} kép feltöltése folyamatban…", + "uploadingPicture": "Kép feltöltése folyamatban…", + "addPicture": "Kép hozzáadása", + "cco": "közkincsként", + "willBePublished": "A képed így lesz közzétéve: ", + "toBig": "A kép túl nagy ({actual_size}). Kérjük, legfeljebb {max_size} méretű képeket használj", + "uploadMultipleDone": "{count} kép hozzáadva. Köszönjük a segítséget!", + "ccoExplanation": "A kép közkinccsé tétele azt jelenti, hogy bárki bármit megtehet a képpel", + "ccbExplanation": "A CC-BY licenc azt jelenti, hogy bárki bármilyen célra felhasználhatja a képet, de meg kell adnia a nevedet", + "ccbsExplanation": "A CC-BY-SA licenc azt jelenti, hogy bárki bármilyen célra felhasználhatja a képet, de meg kell jelölnie Téged, a kép módosított változatait pedig ugyanezen licenc alatt kell újra közzétenni" + }, + "delete": { + "reasons": { + "disused": "Ez az objektum használaton kívüli vagy el lett távolítva", + "test": "Ez egy tesztpont volt: az általa jelölt objektum valójában soha nem létezett", + "notFound": "Ezt az objektumot nem sikerült megtalálni", + "duplicate": "Ez a pont egy másik objektum megkettőzése" + }, + "explanations": { + "hardDelete": "Ez a pont törlődik az OpenStreetMapről. Csak egy tapasztalt szerkesztő tudja majd visszaállítani", + "softDelete": "Ez az objektum frissülni fog és ebben az alkalmazásban nem fog látszani. {reason}", + "selectReason": "Kérjük, jelöld meg, miért kellene ezt a pontot törölni" + }, + "onlyEditedByLoggedInUser": "Ezt a pontot csak te magad szerkesztetted, így nyugodtan törölheted.", + "delete": "Törlés", + "isDeleted": "Ez az objektum törlődött", + "loginToDelete": "Egy pont törléséhez be kell jelentkezni", + "useSomethingElse": "A törléséhez használj egy másik OpenStreetMap-szerkesztőt", + "partOfOthers": "Ez a pont egy vonal vagy kapcsolat része, ezért közvetlenül nem törölhető.", + "loading": "Tulajdonságok megvizsgálása annak ellenőrzéséhez, hogy az objektum törölhető-e.", + "whyDelete": "Miért kellene törölni ezt a pontot?", + "cancel": "Mégse", + "safeDelete": "Ez a pont nyugodtan törölhető.", + "isntAPoint": "Csak pontot lehet törölni, a kiválasztott térképelem viszont vonal, terület vagy kapcsolat.", + "cannotBeDeleted": "Ez az objektum nem törölhető", + "notEnoughExperience": "Ezt a pontot valaki más készítette.", + "readMessages": "Olvasatlan üzeneteid vannak. Olvasd el őket, mielőtt törölnél egy pontot – lehet, hogy valaki épp erről írt" + }, + "split": { + "splitTitle": "Válaszd ki a térképen, hogy az út hol legyen elvágva", + "hasBeenSplit": "Ez az út szét lett vágva", + "inviteToSplit": "Út szétvágása rövidebb szakaszokra. Ez lehetővé teszi, hogy az út egyes részei különböző tulajdonságokkal rendelkezzenek.", + "loginToSplit": "Egy út szétvágásához be kell jelentkezni", + "cancel": "Mégse", + "split": "Szétvágás" + }, + "privacy": { + "tracking": "Ahhoz, hogy némi betekintést nyerünk abba, hogy ki látogatja meg weboldalunkat, néhány technikai adatot gyűjtünk. Ez tartalmazza azt az országot, ahonnan meglátogattad a weboldalt, azt a webhelyet, amely a MapComplete-re irányított, az eszközöd típusát és képernyőméretét. Egy cookie kerül elhelyezésre a készülékeden, amely jelzi, hogy ma meglátogatta a MapComplete-et. Ezek az adatok nem elég részletesek ahhoz, hogy személyesen azonosítsanak. A statisztika csak összesítetten érhető el, és mindenkinek nyilvános", + "geodata": "Amikor a MapComplete lekéri a földrajzi helyed meghatározását, az – a korábban meglátogatott helyekkel együtt – az eszközödön marad. Helyadatokat soha nem küldünk el automatikusan máshová – kivéve, ha bizonyos funkciók egyértelműen másként rendelkeznek.", + "intro": "A magánélet fontos – az egyénnek és a társadalomnak egyaránt. A MapComplete igyekszik a lehető legnagyobb mértékben tiszteletben tartani a magánéletedet – egészen addig a pontig, hogy már idegesítő cookie-bannerre sincs szükségünk. Ennek ellenére szeretnénk tájékoztatni arról, hogy milyen információkat gyűjtünk és osztunk meg, milyen körülmények között, és miért kell ezeket a kompromisszumoknak megkötnünk.", + "trackingTitle": "Statisztikai adatok", + "title": "Adatvédelmi irányelvek", + "geodataTitle": "Földrajzi helyed" + }, + "favourite": { + "reload": "Adatok újratöltése", + "loginNeeded": "

Jelentkezz be

A személyes elrendezés csak OpenStreetMap-felhasználóknak érhető el", + "panelIntro": "

A személyes témád

Aktiváld a kedvenc rétegeidet az összes hivatalos téma közül" + }, + "reviews": { + "title_singular": "Egy vélemény", + "name_required": "Vélemények megjelenítéséhez és létrehozásához névre van szükség", + "no_reviews_yet": "Még nincs vélemény. Légy Te az első, aki ír, és ezzel támogasd a nyílt adatokat és az üzletet!", + "attribution": "A véleményeket Mangrove Reviews tárolja, és a CC-BY 4.0 licenc szerint érhetők el.", + "plz_login": "Értékelés írásához jelentkezz be", + "tos": "Ha véleményt írsz, elfogadod a a Mangrove.reviews általános szerződési feltételeit (ászf.) és adatvédelmi irányelveit", + "title": "{count} vélemény", + "write_a_comment": "Mondj véleményt…", + "saving_review": "Mentés…", + "saved": "Vélemény elmentve. Köszönjük a megosztást!", + "posting_as": "Közzétéve mint", + "i_am_affiliated": "Kapcsolatban állok ezzel a létesítménnyel
Ellenőrizd, hogy tulajdonos, alkotó, alkalmazott vagy hasonló vagy-e.", + "affiliated_reviewer_warning": "(Kapcsolódó személy véleménye)", + "no_rating": "Még nem kapott értékelést" + }, + "move": { + "inviteToMove": { + "reasonRelocation": "Objektum áthelyezése mert a valóságban is áthelyezték", + "reasonInaccurate": "Pont helyének pontosítása", + "generic": "Pont áthelyezése" + }, + "isWay": "Ez az objektum egy vonal, amelyet csak egy másik OpenStreetMap-szerkesztővel lehet áthelyezni.", + "isRelation": "Ez az objektum egy kapcsolat, amely nem mozdítható el", + "partOfAWay": "Ez az objektum egy másik vonal része; csak egy másik szerkesztő használatával lehet elmozdítani.", + "inviteToMoveAgain": "Pont áthelyezése ismét", + "loginToMove": "Pont áthelyezéséhez be kell jelentkezned", + "whyMove": "Miért szeretnéd áthelyezni ezt a pontot?", + "confirmMove": "Áthelyezés ide", + "cannotBeMoved": "Ez az objektum nem mozdítható el.", + "pointIsMoved": "A pont áthelyeződött", + "zoomInFurther": "A lépés megerősítéséhez nagyíts a térképen", + "cancel": "Áthelyezés megszakítása", + "partOfRelation": "Ez az objektum egy kapcsolat része; csak egy másik szerkesztő használatával mozdítható el.", + "moveTitle": "Pont áthelyezése", + "selectReason": "Miért szeretnéd áthelyezni ezt az objektumot?", + "reasons": { + "reasonRelocation": "Az objektumot áthelyezték egy teljesen más helyre", + "reasonInaccurate": "Az objektum helye pontatlan a térképen, ezért néhány méterrel arrébb kell tenni" + } + }, + "professional": { + "indexPage": { + "hookMore": "Tudunk segítséget nyújtani felmérésekhez, adatimportáláshoz és OpenStreetMap-tanácsadáshoz", + "button": "Szolgáltatásaink" + }, + "intro": "A MapComplete fejlesztője szakmai támogatást is kínál. Ez a dokumentum felvázol néhány lehetőséget, megválaszol pár gyakori kérdést és bemutatja a MapComplete határait", + "aboutOsm": { + "vandalism": { + "li0": "magasak a változtatások technikai akadályai, vagyis nem olyan könnyű a térképet szerkeszteni", + "intro": "Mivel az adatokat bárki szerkesztheti, előfordulhat, hogy rosszindulatú változtatás történik. Ez azonban néhány okból rendkívül ritka:", + "li1": "egy kis rosszindulatú változtatásnak alacsony a hatása, így a vandál számára csekély a jutalom" + }, + "aboutOsm": { + "title": "Mi az OpenStreetMap?", + "li0": "Az utcáknak nem csak egy mértani alakja van a térképen, hanem tartalmazhat adatokat az ott érvényes sebességkorlátozásról, a burkolatáról, arról, hogy van-e rajta közvilágítás, mi a neve, van-e esetleg Wikipédia-szócikk róla, melyik turistautak, kerékpár- és buszútvonalak vezetnek rajta végig és így tovább", + "intro": "Az OpenStreetMap egy önkéntesek által épített, megosztott, globális adatbázis. Az OpenStreetMaphez minden földrajzi adat hozzáadható, amennyiben a helyszínen ellenőrizhető.
Az OpenStreetMap hatalmas és mély adattárrá nőtte ki magát: több ezer objektumkategória adatait tartalmazza. Egy-egy objektumnak is nagyon sok tulajdonsága lehet, amivel rengeteg finom részlet ábrázolható, például:", + "li1": "Az üzleteknél és egyéb létesítményeknél megadható a nyitvatartási idejük, a telefonszámuk, a weboldalukra mutató link, az általuk elfogadott fizetési módok, az árusított termékek vagy az általuk kínált szolgáltatások stb.", + "li2": "A mosdókon lehet információ az akadálymentességükről, az ott megtalálható pelenkázóasztalokról, arról, hogy kell-e fizetni a használatukért et caetera", + "li3": "és még sok-sok minden más…" + }, + "benefits": { + "li1": "Az adatai minden eddiginél nagyobb közönséghez jutnak el, hiszen ezt használja a Bing Maps (Microsoft), az Apple Maps, a Facebook, az Instagram, a Pokémon Go, az OsmAnd, az Organic Maps, a Maps.me, a Mapbox, a Komoot, szinte minden kerékpáros alkalmazás és még sok más weboldal és applikáció…" + } + }, + "text1": "

A MapComplete olyan térképszerkesztő alkalmazás, amely megkönnyíti az OpenStreetMap adatokkal való feltöltését.

", + "osmTitle": "Mire lehet jó az OpenStreetMap és a MapComplete a szervezeted számára?", + "text0": "

A naprakész földrajzi adatok karbantartása nehéz, hibaveszélyes és költséges.
A nehézségeket tetézi, hogy sok szervezet egymástól függetlenül gyűjti ugyanazokat az adatokat, ami párhuzamos erőfeszítéseket, nem szabványosított adatformátumokat és sok hiányos, karbantartatlan adathalmazt eredményez.

Létezik viszont egy hatalmas közösség, amely rengeteg földrajzi adatot gyűjt egy közös, globális és szabványosított adatbázisba: ez az OpenStreetMap.org.

", + "title": "Szakmai támogatás a MapComplete segítségével" + }, + "multi_apply": { + "autoApply": "A(z) {attr_names} tulajdonságok módosításával ezek a tulajdonságok automatikusan módosulnak {count} további objektumon is" + } } diff --git a/langs/layers/en.json b/langs/layers/en.json index 4fa8c01efb..9bd9493e96 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -2169,6 +2169,9 @@ }, "2": { "then": "Zebra crossing" + }, + "3": { + "then": "Crossing without crossing markings" } }, "question": "What kind of crossing is this?" @@ -3294,6 +3297,89 @@ } } }, + "note": { + "filter": { + "0": { + "options": { + "0": { + "question": "Should mention {search} in the first comment" + } + } + }, + "1": { + "options": { + "0": { + "question": "Should not mention {search} in the first comment" + } + } + }, + "2": { + "options": { + "0": { + "question": "Opened by {search}" + } + } + }, + "3": { + "options": { + "0": { + "question": "Not opened by {search}" + } + } + }, + "4": { + "options": { + "0": { + "question": "Opened before {search}" + } + } + }, + "5": { + "options": { + "0": { + "question": "Opened after {search}" + } + } + }, + "6": { + "options": { + "0": { + "question": "Opened by anonymous user" + } + } + }, + "7": { + "options": { + "0": { + "question": "Only show open notes" + } + } + } + }, + "name": "OpenStreetMap notes", + "tagRenderings": { + "report-contributor": { + "render": "Report {_first_user} as spam" + }, + "report-note": { + "render": "Report this note as spam or inappropriate" + } + }, + "title": { + "mappings": { + "0": { + "then": "Closed note" + } + }, + "render": "Note" + } + }, + "note_import": { + "name": "Possible bookcases", + "title": { + "render": "Possible feature" + } + }, "observation_tower": { "description": "Towers with a panoramic view", "name": "Observation towers", diff --git a/langs/layers/fr.json b/langs/layers/fr.json index c1b9aa471d..f5fed30354 100644 --- a/langs/layers/fr.json +++ b/langs/layers/fr.json @@ -1,4 +1,29 @@ { + "address": { + "description": "Adresses", + "name": "Adresses connues d’OpenStreetMap", + "tagRenderings": { + "fixme": { + "question": "Précisez ce qui devrait être corrigé ici" + }, + "housenumber": { + "mappings": { + "0": { + "then": "Ce bâtiment n’a pas de numéro" + } + }, + "question": "Quel est le numéro de ce bâtiment ?", + "render": "Son numéro est le {addr:housenumber}" + }, + "street": { + "question": "Dans quelle rue est située l’adresse ?", + "render": "Le nom de la voie est {addr:street}" + } + }, + "title": { + "render": "Adresse connue" + } + }, "ambulancestation": { "description": "Une station d’ambulance est un lieu où sont stockés les véhicules d’urgence ainsi que de l’équipement médical.", "name": "Couche des ambulances", @@ -122,9 +147,16 @@ } }, "barrier": { + "description": "Obstacles à vélo, tels que des potelets ou des barrières", + "name": "Barrières", "presets": { "0": { + "description": "Un potelet sur le chemin", "title": "Bollard" + }, + "1": { + "description": "Barrières cyclables, ralentissant les cyclistes", + "title": "Barrière cyclable" } }, "tagRenderings": { @@ -148,9 +180,35 @@ }, "question": "Quel est le type de bollard (borne) ?" }, + "Cycle barrier type": { + "mappings": { + "0": { + "then": "Simple, deux barrières côte à côte " + }, + "1": { + "then": "Double, deux barrières successives" + }, + "2": { + "then": "Triple, trois barrières successives " + }, + "3": { + "then": "Poire, l’espace en hauteur est plus faible qu’au sol " + } + }, + "question": "Quel est ce type de barrière cyclable ?" + }, "MaxWidth": { + "question": "Quelle est la largeur du passage ?", "render": "Largeur maximale: {maxwidth:physical} m" }, + "Overlap (cyclebarrier)": { + "question": "Quel est le chevauchement des barrières ?", + "render": "Chevauchement : {overlap} m" + }, + "Space between barrier (cyclebarrier)": { + "question": "Combien d’espace sépare deux barrières successives ?", + "render": "Espace entre deux barrières successives : {width:separation} m" + }, "Width of opening (cyclebarrier)": { "render": "Largeur de l'ouverture : {width:opening} m" }, @@ -169,8 +227,12 @@ "mappings": { "0": { "then": "Bollard" + }, + "1": { + "then": "Barrière cyclable" } - } + }, + "render": "Barrière" } }, "bench": { @@ -942,6 +1004,54 @@ } } }, + "crossings": { + "description": "Traversée pour piétons et cyclistes", + "name": "Traversée", + "presets": { + "0": { + "description": "Traversée pour piétons et/ou cyclistes", + "title": "Traversée" + }, + "1": { + "description": "Feu de signalisation sur la voie", + "title": "Feu de signalisation" + } + }, + "title": { + "mappings": { + "0": { + "then": "Feu de signalisation" + }, + "1": { + "then": "Traversée avec feu de signalisation" + } + }, + "render": "Traversée" + } + }, + "cycleways_and_roads": { + "name": "Pistes cyclables et routes", + "title": { + "mappings": { + "0": { + "then": "Piste cyclable" + }, + "1": { + "then": "Voie partagée" + }, + "2": { + "then": "Bande cyclable" + }, + "3": { + "then": "Piste cyclable séparée de la route" + }, + "4": { + "then": "Vélorue" + } + }, + "render": "Pistes cyclables" + } + }, "defibrillator": { "name": "Défibrillateurs", "presets": { @@ -2131,6 +2241,12 @@ "render": "Toilettes" } }, + "trail": { + "name": "Sentiers", + "title": { + "render": "Sentier" + } + }, "tree_node": { "name": "Arbre", "presets": { @@ -2273,5 +2389,18 @@ "title": { "render": "Point de vue" } + }, + "visitor_information_centre": { + "title": { + "mappings": { + "1": { + "then": "{name}" + } + }, + "render": "{name}" + } + }, + "watermill": { + "name": "Moulin à eau" } } \ No newline at end of file diff --git a/langs/layers/hu.json b/langs/layers/hu.json index bd8bc37f7a..c296812786 100644 --- a/langs/layers/hu.json +++ b/langs/layers/hu.json @@ -1,10 +1,142 @@ { + "address": { + "description": "Címek", + "name": "Ismert címek az OSM-en", + "tagRenderings": { + "fixme": { + "question": "Mit kellene itt kijavítani? Légy szíves, magyarázd el" + }, + "housenumber": { + "mappings": { + "0": { + "then": "Ennek az épületnek nincs házszáma" + } + }, + "question": "Mi ennek az épületnek a házszáma?", + "render": "A házszám: {addr:housenumber}" + }, + "street": { + "question": "Melyik utcában található ez a cím?", + "render": "Ez a cím a következő utcában van: {addr:street}" + } + }, + "title": { + "render": "Ismert cím" + } + }, + "ambulancestation": { + "description": "A mentőállomás olyan terület, ahol mentőautókat, orvosi felszereléseket, egyéni védőfelszereléseket és egyéb orvosi felszereléseket tárolnak.", + "name": "Mentőállomás-térkép", + "presets": { + "0": { + "description": "Mentőállomás hozzáadása a térképhez", + "title": "Mentőállomás" + } + }, + "tagRenderings": { + "ambulance-agency": { + "question": "Milyen szervezet működteti ezt az állomást?", + "render": "Az állomás üzemeltetője: {operator}." + }, + "ambulance-name": { + "question": "Mi a neve ennek a menőtállomásnak?", + "render": "A mentőállomás neve: {name}." + }, + "ambulance-operator-type": { + "mappings": { + "0": { + "then": "A mentőállomást a kormány üzemelteti." + }, + "1": { + "then": "Mentőállomást egy közösségi vagy nem hivatalos szervezet működteti." + }, + "2": { + "then": "A mentőállomást egy önkéntesekből álló hivatalos csoport működteti." + }, + "3": { + "then": "Az állomást egy magánkézben lévő szervezet működteti." + } + }, + "question": "Hogyan sorolható be az állomás üzemeltetője?", + "render": "Az üzemeltető egy {operator:type} jellegű szervezet." + }, + "ambulance-place": { + "question": "Hol található az állomás? (Pl. a falu, kisváros vagy városrész neve.)", + "render": "Ez az állomás itt található: {addr:place}." + }, + "ambulance-street": { + "question": " Mi a neve annak az utcának, amelyben az állomás található?", + "render": "Ez az állomás a következő utcában van: {addr:street}." + } + }, + "title": { + "render": "Mentőállomás" + } + }, "artwork": { + "description": "Különféle műalkotások", + "name": "Műalkotások", "presets": { "0": { "title": "Műalkotás" } }, + "tagRenderings": { + "artwork-artist_name": { + "question": "Melyik művész alkotása ezt?", + "render": "Alkotó: {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Építészet" + }, + "1": { + "then": "Falfestmény" + }, + "2": { + "then": "Festmény" + }, + "3": { + "then": "Absztrakt szobor" + }, + "4": { + "then": "Szobor" + }, + "5": { + "then": "Mellszobor" + }, + "6": { + "then": "Kő" + }, + "7": { + "then": "Installáció" + }, + "8": { + "then": "Graffiti" + }, + "9": { + "then": "Dombormű" + }, + "10": { + "then": "Azulejo (portugál vagy spanyol dekoratív csempe)" + }, + "11": { + "then": "Csempe" + } + }, + "question": "Milyen fajta műalkotás ez?", + "render": "Ez egy {artwork_type}" + }, + "artwork-website": { + "question": "Van-e olyan honlap, amely további információkat tartalmaz erről a műalkotásról?", + "render": "További információ ezen a weboldalon" + }, + "artwork-wikidata": { + "question": "Melyik Wikidata-bejegyzés felel meg ennek a műalkotásnak?", + "render": "Ez a megfelelő: {wikidata}" + } + }, "title": { "mappings": { "0": { @@ -14,19 +146,109 @@ "render": "Műalkotás" } }, + "barrier": { + "description": "Kerékpározás közbeni akadályok, például terelőoszlopok és kerékpárakadályok", + "name": "Akadályok", + "presets": { + "0": { + "description": "Terelőoszlop az úton", + "title": "Terelőoszlop" + }, + "1": { + "description": "A kerékpáros sebességét csökkentő kerékpárakadály", + "title": "Kerékpárakadály" + } + }, + "tagRenderings": { + "Bollard type": { + "mappings": { + "0": { + "then": "Eltávolítható terelőoszlop" + }, + "1": { + "then": "Rögzített terelőoszlop" + }, + "2": { + "then": "Lehajtható terelőoszlop" + }, + "3": { + "then": "Rugalmas (általában műanyag) terelőoszlop" + }, + "4": { + "then": "Felemelkedő terelőoszlop" + } + }, + "question": "Milyen fajta terelőoszlop ez?" + }, + "Cycle barrier type": { + "mappings": { + "0": { + "then": "Egyszeres: csak két korlát, közöttük térköz " + }, + "1": { + "then": "Kétszeres: két, egymáshoz képest eltolt korlát egymás után " + }, + "2": { + "then": "Háromszoros: három, egymáshoz képest eltolt korlát egymás után " + }, + "3": { + "then": "Szűkítőkapu: a rés felül keskenyebb, mint alul " + } + }, + "question": "Milyen fajta kerékpárakadály ez?" + }, + "MaxWidth": { + "question": "Milyen széles az akadályon az a rés, amelyen át lehet haladni?", + "render": "Legnagyobb szélesség: {maxwidth:physical} m" + }, + "Overlap (cyclebarrier)": { + "question": "Mekkora a korlátok átfedése?", + "render": "Átfedés: {overlap} m" + }, + "Space between barrier (cyclebarrier)": { + "question": "Mekkora távolság van a korlátok között (az út irányában)?", + "render": "A korlátok közötti távolság (az út irányában): {width:separation} m" + }, + "Width of opening (cyclebarrier)": { + "question": "Milyen széles a korlátok melletti legkisebb nyílás?", + "render": "Nyílás szélessége: {width:opening} m" + }, + "barrier_type": { + "mappings": { + "0": { + "then": "Ez egyetlen oszlop az úton" + }, + "1": { + "then": "Ez egy kerékpárakadály, amely lelassítja a kerékpárosokat" + } + } + }, + "bicycle=yes/no": { + "mappings": { + "0": { + "then": "Kerékpárral át lehet hajtani." + }, + "1": { + "then": "Kerékpárral nem lehet áthajtani." + } + }, + "question": "Át lehet-e menni rajta kerékpárral?" + } + } + }, "bench": { "name": "Padok", "tagRenderings": { "bench-backrest": { "mappings": { "0": { - "then": "Háttámla: Igen" + "then": "Háttámla van" }, "1": { - "then": "Háttámla: Nem" + "then": "Háttámla nincs" } }, - "question": "Van háttámlája ennek a padnak?" + "question": "Van-e háttámlája ennek a padnak?" }, "bench-colour": { "mappings": { @@ -55,7 +277,7 @@ "then": "Szín: sárga" } }, - "question": "Milyen színű a pad?", + "question": "Milyen színű ez a pad?", "render": "Szín: {colour}" }, "bench-direction": { @@ -141,33 +363,33 @@ "Still in use?": { "mappings": { "0": { - "then": "Az automata működik" + "then": "Ez az automata működik" }, "1": { - "then": "Az automata elromlott" + "then": "Ez az automata elromlott" }, "2": { - "then": "Az automata zárva van" + "then": "Ez az automata zárva van" } } } } }, "bike_parking": { - "name": "Kerékpáros parkoló", + "name": "Kerékpártároló", "presets": { "0": { - "title": "Kerékpáros parkoló" + "title": "Kerékpártároló" } }, "tagRenderings": { "Bicycle parking type": { "mappings": { "0": { - "then": "\"U\" " + "then": "Korlát " }, "1": { - "then": "Kengyeles " + "then": "Kerékbefogó hurok " }, "4": { "then": "Kétszintű " @@ -176,19 +398,19 @@ "then": "Fészer " } }, - "question": "Milyen típusú ez a kerékpáros parkoló?", - "render": "Ez egy {bicycle_parking} típusú kerékpáros parkoló" + "question": "Milyen típusú ez a kerékpártároló?", + "render": "Ez egy {bicycle_parking} típusú kerékpártároló" }, "Is covered?": { "mappings": { "0": { - "then": "A parkoló fedett" + "then": "Ez a parkoló fedett" }, "1": { - "then": "A parkoló nem fedett" + "then": "Ez a parkoló nem fedett" } }, - "question": "Fedett ez a parkoló? (Beltéri parkoló esetén is válaszd a \"fedett\" opciót.)" + "question": "Fedett-e ez a parkoló? Beltéri parkolónál is válaszd a „fedett” opciót." }, "Underground?": { "mappings": { @@ -208,11 +430,87 @@ } }, "title": { - "render": "Kerékpáros parkoló" + "render": "Kerékpártároló" + } + }, + "cafe_pub": { + "description": "Egy olyan réteg, amely kávézókat és kocsmákat jelenít meg, ahol össze lehet gyűlni egy ital köré. A réteg néhány lényeges kérdést tesz fel", + "filter": { + "0": { + "options": { + "0": { + "question": "Most nyitva van" + } + } + } + }, + "name": "Kávézók és kocsmák", + "presets": { + "0": { + "title": "kocsma" + }, + "1": { + "title": "bár" + }, + "2": { + "title": "kávézó" + } + }, + "tagRenderings": { + "Classification": { + "question": "Milyen fajta kávézó ez?" + }, + "Name": { + "question": "Mi a neve ennek a kocsmának?", + "render": "A kocsma neve: {name}" + } + } + }, + "drinking_water": { + "description": "Ivóvizet adó kutakat megjelenítő réteg", + "name": "Ivóvíz", + "presets": { + "0": { + "title": "ivóvíz" + } + }, + "tagRenderings": { + "Bottle refill": { + "mappings": { + "0": { + "then": "Könnyen lehet vizespalackot tölteni" + }, + "1": { + "then": "Lehet, hogy nem fér alá egy vizespalack" + } + }, + "question": "Mennyire könnyű itt vizespalackot tölteni?" + }, + "Still in use?": { + "mappings": { + "0": { + "then": "Ez az ivóvízkút működik" + }, + "1": { + "then": "Ez az ivóvízkút elromlott" + }, + "2": { + "then": "Ez az ivóvízkút el van zárva" + } + }, + "question": "Működik-e még ez az ivóvíznyerő hely?", + "render": "Működési állapota: {operational_status}" + }, + "render-closest-drinking-water": { + "render": "Van egy másik ivóvízkút {_closest_other_drinking_water_distance} méter távolságra" + } + }, + "title": { + "render": "Ivóvíz" } }, "ghost_bike": { - "name": "Emlékkerékpár", + "name": "Emlékkerékpárok", "presets": { "0": { "title": "Emlékkerékpár" @@ -222,6 +520,119 @@ "render": "Emlékkerékpár" } }, + "public_bookcase": { + "description": "Egy utcai szekrény könyvekkel, amelyet bárki használhat", + "filter": { + "2": { + "options": { + "0": { + "question": "Beltéri vagy kültéri" + } + } + } + }, + "name": "Könyvespolcok", + "presets": { + "0": { + "title": "Könyvespolc" + } + }, + "tagRenderings": { + "bookcase-booktypes": { + "mappings": { + "0": { + "then": "Többnyire gyermekkönyvek" + }, + "1": { + "then": "Többnyire felnőtteknek szóló könyvek" + }, + "2": { + "then": "Gyerekeknek és felnőtteknek szóló könyvek egyaránt" + } + }, + "question": "Milyen fajta könyvek találhatók ezen a közösségi könyvespolcon?" + }, + "bookcase-is-accessible": { + "mappings": { + "0": { + "then": "Nyilvánosan használható" + }, + "1": { + "then": "Csak ügyfelek használhatják" + } + }, + "question": "Szabadon hozzáférhető-e ez a közösségi könyvespolc?" + }, + "bookcase-is-indoors": { + "mappings": { + "0": { + "then": "Ez a könyvespolc beltérben található" + }, + "1": { + "then": "Ez a könyvespolc a szabadban van" + }, + "2": { + "then": "Ez a könyvszekrény a szabadban van" + } + }, + "question": "A szabadban van-e ez a könyvespolc?" + }, + "public_bookcase-brand": { + "mappings": { + "0": { + "then": "A „Little Free Library” hálózat része" + }, + "1": { + "then": "Ez a nyilvános könyvespolc nem része egy nagyobb hálózatnak" + } + }, + "question": "Része-e egy nagyobb hálózatnak ez a nyilvános könyvespolc?", + "render": "Ez a nyilvános könyvespolc a(z) {brand} része" + }, + "public_bookcase-capacity": { + "question": "Hány könyv fér el ezen a nyilvános könyvespolcon?", + "render": "Ezen a könyvespolcon {capacity} könyv fér el" + }, + "public_bookcase-name": { + "mappings": { + "0": { + "then": "Ennek a könyvespolcnak nincs neve" + } + }, + "question": "Mi a neve ennek a nyilvános könyvespolcnak?", + "render": "Ennek a könyvespolcnak a neve: {name}" + }, + "public_bookcase-operator": { + "question": "Ki tartja fenn ezt a nyilvános könyvespolcot?", + "render": "Üzemeltető: {operator}" + }, + "public_bookcase-ref": { + "mappings": { + "0": { + "then": "Ez a könyvespolc nem része egy nagyobb hálózatnak" + } + }, + "question": "Mi az azonosító száma ennek a nyilvános könyvespolcnak?", + "render": "A(z) {brand} márkanéven belül ennek a nyilvános könyvespolcnak az azonosító száma: {ref}" + }, + "public_bookcase-start_date": { + "question": "Mikor állították fel ezt a nyilvános könyvespolcot?", + "render": "Telepítés dátuma: {start_date}" + }, + "public_bookcase-website": { + "question": "Van-e olyan weboldal, ahol további információ található erről a nyilvános könyvespolcról?", + "render": "További információ ezen a weboldalon." + } + }, + "title": { + "mappings": { + "0": { + "then": "A nyilvános könyvespolc neve: {name}" + } + }, + "render": "Könyvespolc" + } + }, "shops": { "tagRenderings": { "shops-shop": { diff --git a/langs/layers/nl.json b/langs/layers/nl.json index 805df00d8b..5899a4f1b7 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -1,6 +1,7 @@ { "address": { "description": "Adressen", + "name": "Bekende adressen in OSM", "tagRenderings": { "housenumber": { "mappings": { @@ -8,8 +9,16 @@ "then": "Dit gebouw heeft geen huisnummer" } }, + "question": "Wat is het huisnummer van dit huis?", "render": "Het huisnummer is {addr:housenumber}" + }, + "street": { + "question": "In welke straat bevindt dit adres zich?", + "render": "Dit adres bevindt zich in de straat {addr:street}" } + }, + "title": { + "render": "Bekend adres" } }, "artwork": { @@ -153,6 +162,9 @@ }, "barrier_type": { "mappings": { + "0": { + "then": "Dit is een enkel paaltje in de weg" + }, "1": { "then": "Dit zijn fietshekjes die fietsers afremmen" } @@ -278,8 +290,14 @@ "tagRenderings": { "bench_at_pt-bench_type": { "mappings": { + "0": { + "then": "Er is hier een normale zitbank" + }, "1": { "then": "Leunbank" + }, + "2": { + "then": "Er is hier geen bank" } }, "question": "Wat voor soort bank is dit?" @@ -568,6 +586,7 @@ } }, "bike_repair_station": { + "description": "Deze laag toont fietspompen en herstelpunten voor fietsen", "name": "Fietspunten (herstel, pomp of allebei)", "presets": { "0": { @@ -2180,6 +2199,9 @@ }, "2": { "then": "Zebrapad" + }, + "3": { + "then": "Oversteekplaats zonder kruispuntmarkeringen" } }, "question": "Wat voor oversteekplaats is dit?" diff --git a/langs/layers/pl.json b/langs/layers/pl.json index 141295585d..804fb7b590 100644 --- a/langs/layers/pl.json +++ b/langs/layers/pl.json @@ -1,10 +1,87 @@ { + "address": { + "description": "Adresy", + "tagRenderings": { + "fixme": { + "question": "Co wymaga naprawy? Proszę wytłumaczyć" + }, + "housenumber": { + "mappings": { + "0": { + "then": "Ten budynek nie ma numeru" + } + }, + "question": "Jaki jest numer tego domu?", + "render": "Numer tego domu to {addr:housenumber}" + }, + "street": { + "question": "Na jakiej ulicy znajduje się ten adres?", + "render": "Ten adres znajduje się na ulicy {addr:street}" + } + }, + "title": { + "render": "Znany adres" + } + }, "artwork": { + "name": "Dzieła sztuki", "presets": { "0": { "title": "Dzieło sztuki" } }, + "tagRenderings": { + "artwork-artist_name": { + "question": "Który artysta to stworzył?", + "render": "Stworzone przez {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Architektura" + }, + "1": { + "then": "Mural" + }, + "2": { + "then": "Obraz" + }, + "3": { + "then": "Rzeźba" + }, + "4": { + "then": "Posąg" + }, + "5": { + "then": "Popiersie" + }, + "6": { + "then": "Skała" + }, + "7": { + "then": "Instalacja artystyczna" + }, + "8": { + "then": "Graffiti" + }, + "9": { + "then": "Płaskorzeźba" + }, + "10": { + "then": "Azulejo (hiszpańskie płytka dekoracyjna)" + }, + "11": { + "then": "Płyta ceramiczna (fliza)" + } + }, + "question": "Jakiego rodzaju jest to dzieło sztuki?", + "render": "Jest to {artwork_type}" + }, + "artwork-website": { + "question": "Gdzie znajdę więcej informacji na temat tego dzieła sztuki?", + "render": "Więcej informacji na tej stronie" + } + }, "title": { "mappings": { "0": { diff --git a/langs/layers/ru.json b/langs/layers/ru.json index 85a540b676..1ea9cfa444 100644 --- a/langs/layers/ru.json +++ b/langs/layers/ru.json @@ -1,8 +1,27 @@ { "address": { - "description": "Адреса" + "description": "Адреса", + "name": "Известные адреса в OSM", + "tagRenderings": { + "housenumber": { + "mappings": { + "0": { + "then": "У этого здания нет номера" + } + }, + "question": "Какой номер у этого дома?", + "render": "Номер дома {addr:housenumber}" + }, + "street": { + "question": "Какая эта улица?" + } + }, + "title": { + "render": "Известный адрес" + } }, "ambulancestation": { + "description": "Станция скорой помощи это полигон для хранения транспорта, медицинского оборудования, средств индивидуальной защиты и других медицинских принадлежностей.", "name": "Карта станций скорой помощи", "presets": { "0": { @@ -11,10 +30,24 @@ } }, "tagRenderings": { + "ambulance-agency": { + "question": "Какая организация управляет этой станцией?", + "render": "Эта станция управляется {operator}." + }, "ambulance-name": { "question": "Как называется эта станция скорой помощи?", "render": "Эта станция называется {name}." }, + "ambulance-operator-type": { + "mappings": { + "0": { + "then": "Станция управляется правительством." + }, + "1": { + "then": "Станция управляется волонтёрами или частной организацией." + } + } + }, "ambulance-place": { "question": "Где расположена станция? (напр., название населённого пункта)" }, diff --git a/langs/nl.json b/langs/nl.json index 1d633fa7d5..342d344978 100644 --- a/langs/nl.json +++ b/langs/nl.json @@ -4,7 +4,7 @@ "uploadingPicture": "Bezig met een foto te uploaden…", "uploadingMultiple": "Bezig met {count} foto's te uploaden…", "pleaseLogin": "Gelieve je aan te melden om een foto toe te voegen", - "willBePublished": "Jouw foto wordt gepubliceerd: ", + "willBePublished": "Jouw foto wordt gepubliceerd ", "cco": "in het publiek domein", "ccbs": "onder de CC-BY-SA-licentie", "ccb": "onder de CC-BY-licentie", @@ -15,7 +15,9 @@ "doDelete": "Verwijder afbeelding", "isDeleted": "Verwijderd", "uploadMultipleDone": "{count} afbeeldingen zijn toegevoegd. Bedankt voor je bijdrage!", - "toBig": "Je afbeelding is te groot, namelijk {actual_size}. Gelieve afbeeldingen van maximaal {max_size} te gebruiken" + "toBig": "Je afbeelding is te groot, namelijk {actual_size}. Gelieve afbeeldingen van maximaal {max_size} te gebruiken", + "ccbsExplanation": "Als je foto met de CC-BY-SA-licentie gepubliceerd wordt, dan mag je foto gebruikt worden voor alle doeleinden, maar je naam moet vermeld worden en afgeleide werken moeten onder dezelfde licentie gepubliceerd worden", + "ccoExplanation": "Als je foto in het publiek domein gepubliceerd wordt, dan mag iedereen je foto voor alle doeleinden gebruiken" }, "centerMessage": { "loadingData": "Data wordt geladen...", @@ -41,7 +43,7 @@ "error": "Niet gelukt..." }, "add": { - "addNewMapLabel": "Voeg item toe", + "addNewMapLabel": "Klik hier om een item toe te voegen", "addNew": "Voeg hier een {category} toe", "title": "Nieuw punt toevoegen?", "intro": "Je klikte ergens waar er nog geen data is. Kies hieronder welk punt je wilt toevoegen
", diff --git a/langs/pl.json b/langs/pl.json index 2145e7595a..e178ef3219 100644 --- a/langs/pl.json +++ b/langs/pl.json @@ -1,269 +1,284 @@ { - "image": { - "uploadingMultiple": "Wysyłanie {count} ilustracji…", - "uploadingPicture": "Wysyłanie ilustracji…", - "addPicture": "Dodaj zdjęcie", - "pleaseLogin": "Proszę, zaloguj się by dodać ilustrację", - "isDeleted": "Usunięte", - "doDelete": "Usuń ilustrację", - "dontDelete": "Anuluj", - "uploadDone": "Twoja ilustracja została dodana. Dzięki za pomoc!", - "uploadFailed": "Wysyłanie zdjęcia nie powiodło się. Czy masz połączenie z internetem i włączony dostęp zewnętrznych API? Przeglądarki Brave i UMatrix mogą je blokować.", - "cco": "w domenie publicznej", - "ccb": "na licencji CC-BY", - "ccbs": "na licencji CC-BY-SA", - "willBePublished": "Twoje zdjęcie będzie opublikowane: ", - "respectPrivacy": "Nie fotografuj ludzi i tablic rejestracyjnych. Nie wysyłaj także treści z Google Maps, Google Streetview ani innych licencjonowanych źródeł." - }, - "general": { - "loginWithOpenStreetMap": "Zaloguj z OpenStreetMap", - "pickLanguage": "Wybierz język: ", - "skip": "Pomiń to pytanie", - "cancel": "Anuluj", - "save": "Zapisz", - "returnToTheMap": "Wróć do mapy", - "loginToStart": "Zaloguj się, aby odpowiedzieć na to pytanie", - "search": { - "error": "Coś poszło nie tak…", - "nothing": "Nic nie znaleziono…", - "searching": "Szukanie…", - "search": "Wyszukaj lokalizację" - }, - "add": { - "stillLoading": "Dane wciąż się ładują. Poczekaj chwilę, zanim dodasz nowy punkt.", - "zoomInFurther": "Powiększ jeszcze bardziej, aby dodać punkt.", - "intro": "Kliknąłeś gdzieś, gdzie nie są jeszcze znane żadne dane.
", - "title": "Czy dodać nowy punkt?", - "addNew": "Dodaj nową {kategorię} tutaj", - "pleaseLogin": "Zaloguj się, aby dodać nowy punkt", - "confirmButton": "Dodaj tutaj {category}.
Twój dodatek jest widoczny dla wszystkich
", - "layerNotEnabled": "Warstwa {layer} nie jest włączona. Włącz tę warstwę, aby dodać punkt", - "openLayerControl": "Otwórz okno sterowania warstwą", - "confirmIntro": "

Czy dodać tutaj {title}?

Punkt, który tutaj utworzysz, będzie widoczny dla wszystkich. Proszę, dodawaj rzeczy do mapy tylko wtedy, gdy naprawdę istnieją. Wiele aplikacji korzysta z tych danych." - }, - "number": "numer", - "skippedQuestions": "Niektóre pytania są pominięte", - "oneSkippedQuestion": "Jedno pytanie zostało pominięte", - "welcomeBack": "Jesteś zalogowany, witaj z powrotem!", - "opening_hours": { - "ph_open": "otwarte", - "ph_closed": "zamknięte", - "ph_not_known": " ", - "open_24_7": "Otwarte przez całą dobę", - "closed_permanently": "Zamknięte na nieokreślony czas", - "closed_until": "Zamknięte do {date}", - "not_all_rules_parsed": "Godziny otwarcia tego sklepu są skomplikowane. Następujące reguły są ignorowane w elemencie wejściowym:", - "openTill": "do", - "open_during_ph": "W czasie świąt państwowych udogodnienie to jest", - "error_loading": "Błąd: nie można zwizualizować tych godzin otwarcia.", - "opensAt": "z" + "image": { + "uploadingMultiple": "Wysyłanie {count} zdjęć…", + "uploadingPicture": "Wysyłanie zdjęcia…", + "addPicture": "Dodaj zdjęcie", + "pleaseLogin": "Zaloguj się, by dodać zdjęcie", + "isDeleted": "Usunięte", + "doDelete": "Usuń ilustrację", + "dontDelete": "Anuluj", + "uploadDone": "Twoje zdjęcie zostało dodane. Dzięki za pomoc!", + "uploadFailed": "Wysyłanie zdjęcia nie powiodło się. Czy masz połączenie z internetem i włączony dostęp zewnętrznych API? Przeglądarki Brave i UMatrix mogą je blokować.", + "cco": "w domenie publicznej", + "ccb": "na licencji CC-BY", + "ccbs": "na licencji CC-BY-SA", + "willBePublished": "Twoje zdjęcie zostanie opublikowane ", + "respectPrivacy": "Nie fotografuj ludzi i tablic rejestracyjnych. Nie wysyłaj także treści z Google Maps, Google Streetview ani innych licencjonowanych źródeł.", + "ccoExplanation": "Dodanie zdjęcia do domeny publicznej oznacza, że każdy może zrobić z nim cokolwiek zechce" }, "general": { - "loginWithOpenStreetMap": "Zaloguj z OpenStreetMap", - "pickLanguage": "Wybierz język: ", - "skip": "Pomiń to pytanie", - "cancel": "Anuluj", - "save": "Zapisz", - "returnToTheMap": "Wróć do mapy", - "loginToStart": "Zaloguj się, aby odpowiedzieć na to pytanie", - "search": { - "error": "Coś poszło nie tak…", - "nothing": "Nic nie znaleziono…", - "searching": "Szukanie…", - "search": "Wyszukaj lokalizację" - }, - "add": { - "stillLoading": "Dane wciąż się ładują. Poczekaj chwilę, zanim dodasz nowy punkt.", - "zoomInFurther": "Powiększ jeszcze bardziej, aby dodać punkt.", - "intro": "Kliknąłeś gdzieś, gdzie nie są jeszcze znane żadne dane.
", - "title": "Czy dodać nowy punkt?", - "addNew": "Dodaj nową {kategorię} tutaj", - "pleaseLogin": "Zaloguj się, aby dodać nowy punkt", - "confirmButton": "Dodaj tutaj {category}.
Twój dodatek jest widoczny dla wszystkich
", - "layerNotEnabled": "Warstwa {layer} nie jest włączona. Włącz tę warstwę, aby dodać punkt", - "openLayerControl": "Otwórz okno sterowania warstwą", - "confirmIntro": "

Czy dodać tutaj {title}?

Punkt, który tutaj utworzysz, będzie widoczny dla wszystkich. Proszę, dodawaj rzeczy do mapy tylko wtedy, gdy naprawdę istnieją. Wiele aplikacji korzysta z tych danych." - }, - "number": "numer", - "skippedQuestions": "Niektóre pytania są pominięte", - "oneSkippedQuestion": "Jedno pytanie zostało pominięte", - "welcomeBack": "Jesteś zalogowany, witaj z powrotem!", - "opening_hours": { - "ph_open": "otwarte", - "ph_closed": "zamknięte", - "ph_not_known": " ", - "open_24_7": "Otwarte przez całą dobę", - "closed_permanently": "Zamknięte na nieokreślony czas", - "closed_until": "Zamknięte do {date}", - "not_all_rules_parsed": "Godziny otwarcia tego sklepu są skomplikowane. Następujące reguły są ignorowane w elemencie wejściowym:", - "openTill": "do", - "open_during_ph": "W czasie świąt państwowych udogodnienie to jest", - "error_loading": "Błąd: nie można zwizualizować tych godzin otwarcia.", - "opensAt": "z" - }, - "weekdays": { - "wednesday": "Środa", - "tuesday": "Wtorek", - "monday": "Poniedziałek", - "abbreviations": { - "sunday": "Niedz", - "saturday": "Sob", - "friday": "Pt", - "thursday": "Czw", - "wednesday": "Śr", - "monday": "Pn", - "tuesday": "Wt" + "loginWithOpenStreetMap": "Zaloguj z OpenStreetMap", + "pickLanguage": "Wybierz język: ", + "skip": "Pomiń to pytanie", + "cancel": "Anuluj", + "save": "Zapisz", + "returnToTheMap": "Wróć do mapy", + "loginToStart": "Zaloguj się, aby odpowiedzieć na to pytanie", + "search": { + "error": "Coś poszło nie tak…", + "nothing": "Nic nie znaleziono…", + "searching": "Szukanie…", + "search": "Wyszukaj lokalizację" }, - "sunday": "Niedziela", - "saturday": "Sobota", - "friday": "Piątek", - "thursday": "Czwartek" - }, - "aboutMapcomplete": "

O MapComplete

Dzięki MapComplete możesz wzbogacić OpenStreetMap o informacje na pojedynczy temat. Odpowiedz na kilka pytań, a w ciągu kilku minut Twój wkład będzie dostępny na całym świecie! Opiekun tematu definiuje elementy, pytania i języki dla tematu.

Dowiedz się więcej

MapComplete zawsze oferuje następny krok, by dowiedzieć się więcej o OpenStreetMap.

  • Po osadzeniu na stronie internetowej, element iframe łączy się z pełnoekranowym MapComplete
  • Wersja pełnoekranowa oferuje informacje o OpenStreetMap
  • Przeglądanie działa bez logowania, ale edycja wymaga loginu OSM.
  • Jeżeli nie jesteś zalogowany, zostaniesz poproszony o zalogowanie się
  • Po udzieleniu odpowiedzi na jedno pytanie, możesz dodać nowe punkty do mapy
  • Po chwili wyświetlane są rzeczywiste tagi OSM, które później linkują do wiki


Zauważyłeś problem? Czy masz prośbę o dodanie jakiejś funkcji? Chcesz pomóc w tłumaczeniu? Udaj się do kodu źródłowego lub issue trackera.

Chcesz zobaczyć swoje postępy? Śledź liczbę edycji na OsmCha.

", - "noNameCategory": "{category} bez nazwy", - "nameInlineQuestion": "Nazwa tej {category} to $$$", - "osmLinkTooltip": "Zobacz ten obiekt na OpenStreetMap, aby uzyskać historię i więcej opcji edycji", - "sharescreen": { - "addToHomeScreen": "

Dodaj do ekranu głównego

Możesz łatwo dodać tę stronę do ekranu głównego smartfona, aby poczuć się jak w domu. Kliknij przycisk \"Dodaj do ekranu głównego\" na pasku adresu URL, aby to zrobić.", - "intro": "

Udostępnij tę mapę

Udostępnij tę mapę, kopiując poniższy link i wysyłając ją do przyjaciół i rodziny:", - "fsIncludeCurrentLocation": "Uwzględnij bieżącą lokalizację", - "fsIncludeCurrentLayers": "Uwzględnij wybór bieżącej warstwy", - "fsIncludeCurrentBackgroundMap": "Dołącz bieżący wybór tła {name}", - "fsGeolocation": "Włącz przycisk „Zlokalizuj mnie” (tylko na urządzeniach mobilnych)", - "fsAddNew": "Włącz przycisk \"Dodaj nowe POI\"", - "fsLayerControlToggle": "Zacznij od rozwiniętej kontroli warstw", - "fsLayers": "Włącz kontrolę warstw", - "fsWelcomeMessage": "Pokaż wyskakujące okienko wiadomości powitalnej i powiązane zakładki", - "fsSearch": "Włącz pasek wyszukiwania", - "fsUserbadge": "Włącz przycisk logowania", - "editThemeDescription": "Dodaj lub zmień pytania do tego motywu mapy", - "editThisTheme": "Edytuj ten motyw", - "thanksForSharing": "Dzięki za udostępnienie!", - "copiedToClipboard": "Link został skopiowany do schowka", - "embedIntro": "

Umieść na swojej stronie internetowej

Proszę, umieść tę mapę na swojej stronie internetowej.
Zachęcamy cię do tego - nie musisz nawet pytać o zgodę.
Jest ona darmowa i zawsze będzie. Im więcej osób jej używa, tym bardziej staje się wartościowa." - }, - "questions": { - "emailIs": "Adres e-mail {category} to {email}", - "emailOf": "Jaki jest adres e-mail {category}?", - "websiteIs": "Strona internetowa: {website}", - "websiteOf": "Jaka jest strona internetowa {category}?", - "phoneNumberIs": "Numer telefonu {category} to {phone}", - "phoneNumberOf": "Jaki jest numer telefonu do {category}?" - }, - "about": "Łatwo edytuj i dodaj OpenStreetMap dla określonego motywu", - "layerSelection": { - "title": "Wybierz warstwy", - "zoomInToSeeThisLayer": "Powiększ, aby zobaczyć tę warstwę" - }, - "backgroundMap": "Tło mapy", - "customThemeIntro": "

Motywy własne

Są to wcześniej odwiedzone motywy stworzone przez użytkowników.", - "noTagsSelected": "Nie wybrano tagów", - "getStartedNewAccount": " lub utwórz nowe konto", - "getStartedLogin": "Zaloguj się za pomocą OpenStreetMap, aby rozpocząć", - "goToInbox": "Otwórz skrzynkę odbiorczą", - "fewChangesBefore": "Proszę odpowiedzieć na kilka pytań dotyczących istniejących punktów przed dodaniem nowego punktu.", - "readYourMessages": "Przeczytaj wszystkie wiadomości OpenStreetMap przed dodaniem nowego punktu." + "add": { + "stillLoading": "Dane wciąż się ładują. Poczekaj chwilę, zanim dodasz nowy punkt.", + "zoomInFurther": "Powiększ jeszcze bardziej, aby dodać punkt.", + "intro": "Kliknąłeś gdzieś, gdzie nie są jeszcze znane żadne dane.
", + "title": "Czy dodać nowy punkt?", + "addNew": "Dodaj nową {kategorię} tutaj", + "pleaseLogin": "Zaloguj się, aby dodać nowy punkt", + "confirmButton": "Dodaj tutaj {category}.
Twój dodatek jest widoczny dla wszystkich
", + "layerNotEnabled": "Warstwa {layer} nie jest włączona. Włącz tę warstwę, aby dodać punkt", + "openLayerControl": "Otwórz okno sterowania warstwą", + "confirmIntro": "

Czy dodać tutaj {title}?

Punkt, który tutaj utworzysz, będzie widoczny dla wszystkich. Proszę, dodawaj rzeczy do mapy tylko wtedy, gdy naprawdę istnieją. Wiele aplikacji korzysta z tych danych." + }, + "number": "numer", + "skippedQuestions": "Niektóre pytania są pominięte", + "oneSkippedQuestion": "Jedno pytanie zostało pominięte", + "welcomeBack": "Jesteś zalogowany, witaj z powrotem!", + "opening_hours": { + "ph_open": "otwarte", + "ph_closed": "zamknięte", + "ph_not_known": " ", + "open_24_7": "Otwarte przez całą dobę", + "closed_permanently": "Zamknięte na nieokreślony czas", + "closed_until": "Zamknięte do {date}", + "not_all_rules_parsed": "Godziny otwarcia tego sklepu są skomplikowane. Następujące reguły są ignorowane w elemencie wejściowym:", + "openTill": "do", + "open_during_ph": "W czasie świąt państwowych udogodnienie to jest", + "error_loading": "Błąd: nie można zwizualizować tych godzin otwarcia.", + "opensAt": "z" + }, + "general": { + "loginWithOpenStreetMap": "Zaloguj z OpenStreetMap", + "pickLanguage": "Wybierz język: ", + "skip": "Pomiń to pytanie", + "cancel": "Anuluj", + "save": "Zapisz", + "returnToTheMap": "Wróć do mapy", + "loginToStart": "Zaloguj się, aby odpowiedzieć na to pytanie", + "search": { + "error": "Coś poszło nie tak…", + "nothing": "Nic nie znaleziono…", + "searching": "Szukanie…", + "search": "Wyszukaj lokalizację" + }, + "add": { + "stillLoading": "Dane wciąż się ładują. Poczekaj chwilę, zanim dodasz nowy punkt.", + "zoomInFurther": "Powiększ jeszcze bardziej, aby dodać punkt.", + "intro": "Kliknąłeś gdzieś, gdzie nie są jeszcze znane żadne dane.
", + "title": "Czy dodać nowy punkt?", + "addNew": "Dodaj nową {kategorię} tutaj", + "pleaseLogin": "Zaloguj się, aby dodać nowy punkt", + "confirmButton": "Dodaj tutaj {category}.
Twój dodatek jest widoczny dla wszystkich
", + "layerNotEnabled": "Warstwa {layer} nie jest włączona. Włącz tę warstwę, aby dodać punkt", + "openLayerControl": "Otwórz okno sterowania warstwą", + "confirmIntro": "

Czy dodać tutaj {title}?

Punkt, który tutaj utworzysz, będzie widoczny dla wszystkich. Proszę, dodawaj rzeczy do mapy tylko wtedy, gdy naprawdę istnieją. Wiele aplikacji korzysta z tych danych." + }, + "number": "numer", + "skippedQuestions": "Niektóre pytania są pominięte", + "oneSkippedQuestion": "Jedno pytanie zostało pominięte", + "welcomeBack": "Jesteś zalogowany, witaj z powrotem!", + "opening_hours": { + "ph_open": "otwarte", + "ph_closed": "zamknięte", + "ph_not_known": " ", + "open_24_7": "Otwarte przez całą dobę", + "closed_permanently": "Zamknięte na nieokreślony czas", + "closed_until": "Zamknięte do {date}", + "not_all_rules_parsed": "Godziny otwarcia tego sklepu są skomplikowane. Następujące reguły są ignorowane w elemencie wejściowym:", + "openTill": "do", + "open_during_ph": "W czasie świąt państwowych udogodnienie to jest", + "error_loading": "Błąd: nie można zwizualizować tych godzin otwarcia.", + "opensAt": "z" + }, + "weekdays": { + "wednesday": "Środa", + "tuesday": "Wtorek", + "monday": "Poniedziałek", + "abbreviations": { + "sunday": "Niedz", + "saturday": "Sob", + "friday": "Pt", + "thursday": "Czw", + "wednesday": "Śr", + "monday": "Pn", + "tuesday": "Wt" + }, + "sunday": "Niedziela", + "saturday": "Sobota", + "friday": "Piątek", + "thursday": "Czwartek" + }, + "aboutMapcomplete": "

O MapComplete

Dzięki MapComplete możesz wzbogacić OpenStreetMap o informacje na pojedynczy temat. Odpowiedz na kilka pytań, a w ciągu kilku minut Twój wkład będzie dostępny na całym świecie! Opiekun tematu definiuje elementy, pytania i języki dla tematu.

Dowiedz się więcej

MapComplete zawsze oferuje następny krok, by dowiedzieć się więcej o OpenStreetMap.

  • Po osadzeniu na stronie internetowej, element iframe łączy się z pełnoekranowym MapComplete
  • Wersja pełnoekranowa oferuje informacje o OpenStreetMap
  • Przeglądanie działa bez logowania, ale edycja wymaga loginu OSM.
  • Jeżeli nie jesteś zalogowany, zostaniesz poproszony o zalogowanie się
  • Po udzieleniu odpowiedzi na jedno pytanie, możesz dodać nowe punkty do mapy
  • Po chwili wyświetlane są rzeczywiste tagi OSM, które później linkują do wiki


Zauważyłeś problem? Czy masz prośbę o dodanie jakiejś funkcji? Chcesz pomóc w tłumaczeniu? Udaj się do kodu źródłowego lub issue trackera.

Chcesz zobaczyć swoje postępy? Śledź liczbę edycji na OsmCha.

", + "noNameCategory": "{category} bez nazwy", + "nameInlineQuestion": "Nazwa tej {category} to $$$", + "osmLinkTooltip": "Zobacz ten obiekt na OpenStreetMap, aby uzyskać historię i więcej opcji edycji", + "sharescreen": { + "addToHomeScreen": "

Dodaj do ekranu głównego

Możesz łatwo dodać tę stronę do ekranu głównego smartfona, aby poczuć się jak w domu. Kliknij przycisk \"Dodaj do ekranu głównego\" na pasku adresu URL, aby to zrobić.", + "intro": "

Udostępnij tę mapę

Udostępnij tę mapę, kopiując poniższy link i wysyłając ją do przyjaciół i rodziny:", + "fsIncludeCurrentLocation": "Uwzględnij bieżącą lokalizację", + "fsIncludeCurrentLayers": "Uwzględnij wybór bieżącej warstwy", + "fsIncludeCurrentBackgroundMap": "Dołącz bieżący wybór tła {name}", + "fsGeolocation": "Włącz przycisk „Zlokalizuj mnie” (tylko na urządzeniach mobilnych)", + "fsAddNew": "Włącz przycisk \"Dodaj nowe POI\"", + "fsLayerControlToggle": "Zacznij od rozwiniętej kontroli warstw", + "fsLayers": "Włącz kontrolę warstw", + "fsWelcomeMessage": "Pokaż wyskakujące okienko wiadomości powitalnej i powiązane zakładki", + "fsSearch": "Włącz pasek wyszukiwania", + "fsUserbadge": "Włącz przycisk logowania", + "editThemeDescription": "Dodaj lub zmień pytania do tego motywu mapy", + "editThisTheme": "Edytuj ten motyw", + "thanksForSharing": "Dzięki za udostępnienie!", + "copiedToClipboard": "Link został skopiowany do schowka", + "embedIntro": "

Umieść na swojej stronie internetowej

Proszę, umieść tę mapę na swojej stronie internetowej.
Zachęcamy cię do tego - nie musisz nawet pytać o zgodę.
Jest ona darmowa i zawsze będzie. Im więcej osób jej używa, tym bardziej staje się wartościowa." + }, + "questions": { + "emailIs": "Adres e-mail {category} to {email}", + "emailOf": "Jaki jest adres e-mail {category}?", + "websiteIs": "Strona internetowa: {website}", + "websiteOf": "Jaka jest strona internetowa {category}?", + "phoneNumberIs": "Numer telefonu {category} to {phone}", + "phoneNumberOf": "Jaki jest numer telefonu do {category}?" + }, + "about": "Łatwo edytuj i dodaj OpenStreetMap dla określonego motywu", + "layerSelection": { + "title": "Wybierz warstwy", + "zoomInToSeeThisLayer": "Powiększ, aby zobaczyć tę warstwę" + }, + "backgroundMap": "Tło mapy", + "customThemeIntro": "

Motywy własne

Są to wcześniej odwiedzone motywy stworzone przez użytkowników.", + "noTagsSelected": "Nie wybrano tagów", + "getStartedNewAccount": " lub utwórz nowe konto", + "getStartedLogin": "Zaloguj się za pomocą OpenStreetMap, aby rozpocząć", + "goToInbox": "Otwórz skrzynkę odbiorczą", + "fewChangesBefore": "Proszę odpowiedzieć na kilka pytań dotyczących istniejących punktów przed dodaniem nowego punktu.", + "readYourMessages": "Przeczytaj wszystkie wiadomości OpenStreetMap przed dodaniem nowego punktu." + }, + "index": { + "pickTheme": "Wybierz temat poniżej, aby rozpocząć.", + "intro": "MapComplete to przeglądarka i edytor OpenStreetMap, który pokazuje informacje podzielone według tematu.", + "title": "Witaj w MapComplete", + "#": "Te teksty są wyświetlane nad przyciskami motywu, gdy nie jest załadowany żaden motyw" + }, + "weekdays": { + "wednesday": "Środa", + "tuesday": "Wtorek", + "monday": "Poniedziałek", + "abbreviations": { + "sunday": "Niedz", + "saturday": "Sob", + "friday": "Pt", + "thursday": "Czw", + "wednesday": "Śr", + "monday": "Pn", + "tuesday": "Wt" + }, + "sunday": "Niedziela", + "saturday": "Sobota", + "friday": "Piątek", + "thursday": "Czwartek" + }, + "aboutMapcomplete": "

O MapComplete

Dzięki MapComplete możesz wzbogacić OpenStreetMap o informacje na pojedynczy temat. Odpowiedz na kilka pytań, a w ciągu kilku minut Twój wkład będzie dostępny na całym świecie! Opiekun motywu definiuje elementy, pytania i języki dla tematu.

Dowiedz się więcej

MapComplete zawsze oferuje następny krok, by dowiedzieć się więcej o OpenStreetMap.

  • Po osadzeniu na stronie internetowej, iframe łączy się z pełnoekranowym MapComplete
  • Wersja pełnoekranowa oferuje informacje o OpenStreetMap
  • Przeglądanie działa bez logowania, ale edycja wymaga loginu OSM.
  • Jeżeli nie jesteś zalogowany, zostaniesz poproszony o zalogowanie się
  • Po udzieleniu odpowiedzi na jedno pytanie, możesz dodać nowe punkty do mapy
  • Po chwili wyświetlane są rzeczywiste tagi OSM, które później linkują do wiki


Zauważyłeś problem? Czy masz prośbę o dodanie jakiejś funkcji? Chcesz pomóc w tłumaczeniu? Udaj się do kodu źródłowego lub issue trackera.

Chcesz zobaczyć swoje postępy? Śledź liczbę edycji na OsmCha.

.", + "noNameCategory": "{category} bez nazwy", + "nameInlineQuestion": "Nazwa tej {category} to $$$", + "osmLinkTooltip": "Zobacz ten obiekt na OpenStreetMap, aby uzyskać historię i więcej opcji edycji", + "sharescreen": { + "addToHomeScreen": "

Dodaj do ekranu głównego

Możesz łatwo dodać tę stronę do ekranu głównego smartfona, aby poczuć się jak w domu. Kliknij przycisk \"Dodaj do ekranu głównego\" na pasku adresu URL, aby to zrobić.", + "intro": "

Udostępnij tę mapę

Udostępnij tę mapę, kopiując poniższy link i wysyłając ją do przyjaciół i rodziny:", + "fsIncludeCurrentLocation": "Uwzględnij bieżącą lokalizację", + "fsIncludeCurrentLayers": "Uwzględnij wybór bieżącej warstwy", + "fsIncludeCurrentBackgroundMap": "Dołącz bieżący wybór tła {name}", + "fsGeolocation": "Włącz przycisk „Zlokalizuj mnie” (tylko na urządzeniach mobilnych)", + "fsAddNew": "Włącz przycisk \"Dodaj nowe POI\"", + "fsLayerControlToggle": "Zacznij od rozwiniętej kontroli warstw", + "fsLayers": "Włącz kontrolę warstw", + "fsWelcomeMessage": "Pokaż wyskakujące okienko wiadomości powitalnej i powiązane zakładki", + "fsSearch": "Włącz pasek wyszukiwania", + "fsUserbadge": "Włącz przycisk logowania", + "editThemeDescription": "Dodaj lub zmień pytania do tego motywu mapy", + "editThisTheme": "Edytuj ten motyw", + "thanksForSharing": "Dzięki za udostępnienie!", + "copiedToClipboard": "Link został skopiowany do schowka", + "embedIntro": "

Umieść na swojej stronie internetowej

Proszę, umieść tę mapę na swojej stronie internetowej.
Zachęcamy cię do tego - nie musisz nawet pytać o zgodę.
Jest ona darmowa i zawsze będzie. Im więcej osób jej używa, tym bardziej staje się wartościowa." + }, + "questions": { + "emailIs": "Adres e-mail {category} to {email}", + "emailOf": "Jaki jest adres e-mail {category}?", + "websiteIs": "Strona internetowa: {website}", + "websiteOf": "Jaka jest strona internetowa {category}?", + "phoneNumberIs": "Numer telefonu {category} to {phone}", + "phoneNumberOf": "Jaki jest numer telefonu do {category}?" + }, + "about": "Łatwo edytuj i dodaj OpenStreetMap dla określonego motywu", + "layerSelection": { + "title": "Wybierz warstwy", + "zoomInToSeeThisLayer": "Powiększ, aby zobaczyć tę warstwę" + }, + "backgroundMap": "Tło mapy", + "customThemeIntro": "

Motywy własne

Są to wcześniej odwiedzone motywy stworzone przez użytkowników.", + "noTagsSelected": "Nie wybrano tagów", + "getStartedNewAccount": " lub utwórz nowe konto", + "getStartedLogin": "Zaloguj się za pomocą OpenStreetMap, aby rozpocząć", + "goToInbox": "Otwórz skrzynkę odbiorczą", + "fewChangesBefore": "Proszę odpowiedzieć na kilka pytań dotyczących istniejących punktów przed dodaniem nowego punktu.", + "readYourMessages": "Przeczytaj wszystkie wiadomości OpenStreetMap przed dodaniem nowego punktu." }, "index": { - "pickTheme": "Wybierz temat poniżej, aby rozpocząć.", - "intro": "MapComplete to przeglądarka i edytor OpenStreetMap, który pokazuje informacje podzielone według tematu.", - "title": "Witaj w MapComplete", - "#": "Te teksty są wyświetlane nad przyciskami motywu, gdy nie jest załadowany żaden motyw" + "pickTheme": "Wybierz temat z dostępnych poniżej by zacząć.", + "intro": "MapComplete to przeglądarka i edytor OpenStreetMap, który pokazuje informacje podzielone według tematu.", + "title": "Witaj w MapComplete", + "#": "Te teksty są wyświetlane nad przyciskami motywu, gdy nie jest załadowany żaden motyw" }, - "weekdays": { - "wednesday": "Środa", - "tuesday": "Wtorek", - "monday": "Poniedziałek", - "abbreviations": { - "sunday": "Niedz", - "saturday": "Sob", - "friday": "Pt", - "thursday": "Czw", - "wednesday": "Śr", - "monday": "Pn", - "tuesday": "Wt" - }, - "sunday": "Niedziela", - "saturday": "Sobota", - "friday": "Piątek", - "thursday": "Czwartek" + "centerMessage": { + "loadingData": "Ładowanie danych…", + "ready": "Zrobione!", + "zoomIn": "Przybliż żeby zobaczyć lub edytować", + "retrying": "Ładowanie danych nie powiodło się. Spróbujemy ponownie za {liczba} sekund…" }, - "aboutMapcomplete": "

O MapComplete

Dzięki MapComplete możesz wzbogacić OpenStreetMap o informacje na pojedynczy temat. Odpowiedz na kilka pytań, a w ciągu kilku minut Twój wkład będzie dostępny na całym świecie! Opiekun motywu definiuje elementy, pytania i języki dla tematu.

Dowiedz się więcej

MapComplete zawsze oferuje następny krok, by dowiedzieć się więcej o OpenStreetMap.

  • Po osadzeniu na stronie internetowej, iframe łączy się z pełnoekranowym MapComplete
  • Wersja pełnoekranowa oferuje informacje o OpenStreetMap
  • Przeglądanie działa bez logowania, ale edycja wymaga loginu OSM.
  • Jeżeli nie jesteś zalogowany, zostaniesz poproszony o zalogowanie się
  • Po udzieleniu odpowiedzi na jedno pytanie, możesz dodać nowe punkty do mapy
  • Po chwili wyświetlane są rzeczywiste tagi OSM, które później linkują do wiki


Zauważyłeś problem? Czy masz prośbę o dodanie jakiejś funkcji? Chcesz pomóc w tłumaczeniu? Udaj się do kodu źródłowego lub issue trackera.

Chcesz zobaczyć swoje postępy? Śledź liczbę edycji na OsmCha.

.", - "noNameCategory": "{category} bez nazwy", - "nameInlineQuestion": "Nazwa tej {category} to $$$", - "osmLinkTooltip": "Zobacz ten obiekt na OpenStreetMap, aby uzyskać historię i więcej opcji edycji", - "sharescreen": { - "addToHomeScreen": "

Dodaj do ekranu głównego

Możesz łatwo dodać tę stronę do ekranu głównego smartfona, aby poczuć się jak w domu. Kliknij przycisk \"Dodaj do ekranu głównego\" na pasku adresu URL, aby to zrobić.", - "intro": "

Udostępnij tę mapę

Udostępnij tę mapę, kopiując poniższy link i wysyłając ją do przyjaciół i rodziny:", - "fsIncludeCurrentLocation": "Uwzględnij bieżącą lokalizację", - "fsIncludeCurrentLayers": "Uwzględnij wybór bieżącej warstwy", - "fsIncludeCurrentBackgroundMap": "Dołącz bieżący wybór tła {name}", - "fsGeolocation": "Włącz przycisk „Zlokalizuj mnie” (tylko na urządzeniach mobilnych)", - "fsAddNew": "Włącz przycisk \"Dodaj nowe POI\"", - "fsLayerControlToggle": "Zacznij od rozwiniętej kontroli warstw", - "fsLayers": "Włącz kontrolę warstw", - "fsWelcomeMessage": "Pokaż wyskakujące okienko wiadomości powitalnej i powiązane zakładki", - "fsSearch": "Włącz pasek wyszukiwania", - "fsUserbadge": "Włącz przycisk logowania", - "editThemeDescription": "Dodaj lub zmień pytania do tego motywu mapy", - "editThisTheme": "Edytuj ten motyw", - "thanksForSharing": "Dzięki za udostępnienie!", - "copiedToClipboard": "Link został skopiowany do schowka", - "embedIntro": "

Umieść na swojej stronie internetowej

Proszę, umieść tę mapę na swojej stronie internetowej.
Zachęcamy cię do tego - nie musisz nawet pytać o zgodę.
Jest ona darmowa i zawsze będzie. Im więcej osób jej używa, tym bardziej staje się wartościowa." + "reviews": { + "plz_login": "Zaloguj się, aby zostawić opinię", + "saving_review": "Zapisywanie…", + "posting_as": "Publikowanie jako", + "no_rating": "Nie podano oceny", + "name_required": "Nazwa jest wymagana do wyświetlania i tworzenia opinii", + "title": "{count} opinii", + "title_singular": "Jedna opinia", + "attribution": "Recenzje są obsługiwane przez Recenzje Mangrove i są dostępne na licencji CC-BY 4.0.", + "tos": "Jeśli utworzysz recenzję, zgadzasz się na TOS i politykę prywatności Mangrove.reviews.", + "saved": "Opinia została zapisana. Dzięki za udostępnienie!", + "affiliated_reviewer_warning": "(Recenzja powiązana)", + "i_am_affiliated": "Jestem powiązany z tym obiektem
Sprawdź czy jesteś właścicielem, twórcą, pracownikiem, ...", + "write_a_comment": "Zostaw recenzję…", + "no_reviews_yet": "Nie ma jeszcze recenzji. Bądź pierwszym, który je napisze i pomóż otworzyć dane i biznes!" }, - "questions": { - "emailIs": "Adres e-mail {category} to {email}", - "emailOf": "Jaki jest adres e-mail {category}?", - "websiteIs": "Strona internetowa: {website}", - "websiteOf": "Jaka jest strona internetowa {category}?", - "phoneNumberIs": "Numer telefonu {category} to {phone}", - "phoneNumberOf": "Jaki jest numer telefonu do {category}?" + "favourite": { + "reload": "Odśwież dane", + "loginNeeded": "

Zaloguj się

Osobisty układ jest dostępny tylko dla użytkowników OpenStreetMap", + "panelIntro": "

Twój osobisty motyw

Aktywuj swoje ulubione warstwy spośród wszystkich oficjalnych motywów" }, - "about": "Łatwo edytuj i dodaj OpenStreetMap dla określonego motywu", - "layerSelection": { - "title": "Wybierz warstwy", - "zoomInToSeeThisLayer": "Powiększ, aby zobaczyć tę warstwę" + "delete": { + "delete": "Usuń", + "cancel": "Anuluj", + "isDeleted": "Ten obiekt został usunięty", + "cannotBeDeleted": "Ten obiekt nie może zostać usunięty" }, - "backgroundMap": "Tło mapy", - "customThemeIntro": "

Motywy własne

Są to wcześniej odwiedzone motywy stworzone przez użytkowników.", - "noTagsSelected": "Nie wybrano tagów", - "getStartedNewAccount": " lub utwórz nowe konto", - "getStartedLogin": "Zaloguj się za pomocą OpenStreetMap, aby rozpocząć", - "goToInbox": "Otwórz skrzynkę odbiorczą", - "fewChangesBefore": "Proszę odpowiedzieć na kilka pytań dotyczących istniejących punktów przed dodaniem nowego punktu.", - "readYourMessages": "Przeczytaj wszystkie wiadomości OpenStreetMap przed dodaniem nowego punktu." - }, - "index": { - "pickTheme": "Wybierz temat z dostępnych poniżej by zacząć.", - "intro": "MapComplete to przeglądarka i edytor OpenStreetMap, który pokazuje informacje podzielone według tematu.", - "title": "Witaj w MapComplete", - "#": "Te teksty są wyświetlane nad przyciskami motywu, gdy nie jest załadowany żaden motyw" - }, - "centerMessage": { - "loadingData": "Ładowanie danych…", - "ready": "Zrobione!", - "zoomIn": "Przybliż żeby zobaczyć lub edytować", - "retrying": "Ładowanie danych nie powiodło się. Spróbujemy ponownie za {liczba} sekund…" - }, - "reviews": { - "plz_login": "Zaloguj się, aby zostawić opinię", - "saving_review": "Zapisywanie…", - "posting_as": "Publikowanie jako", - "no_rating": "Nie podano oceny", - "name_required": "Nazwa jest wymagana do wyświetlania i tworzenia opinii", - "title": "{count} opinii", - "title_singular": "Jedna opinia", - "attribution": "Recenzje są obsługiwane przez Recenzje Mangrove i są dostępne na licencji CC-BY 4.0.", - "tos": "Jeśli utworzysz recenzję, zgadzasz się na TOS i politykę prywatności Mangrove.reviews.", - "saved": "Opinia została zapisana. Dzięki za udostępnienie!", - "affiliated_reviewer_warning": "(Recenzja powiązana)", - "i_am_affiliated": "Jestem powiązany z tym obiektem
Sprawdź czy jesteś właścicielem, twórcą, pracownikiem, ...", - "write_a_comment": "Zostaw recenzję…", - "no_reviews_yet": "Nie ma jeszcze recenzji. Bądź pierwszym, który je napisze i pomóż otworzyć dane i biznes!" - }, - "favourite": { - "reload": "Odśwież dane", - "loginNeeded": "

Zaloguj się

Osobisty układ jest dostępny tylko dla użytkowników OpenStreetMap", - "panelIntro": "

Twój osobisty motyw

Aktywuj swoje ulubione warstwy spośród wszystkich oficjalnych motywów" - } + "split": { + "cancel": "Anuluj", + "loginToSplit": "Musisz się zalogować, by podzielić drogę", + "splitTitle": "Wybierz na mapie gdzie podzielić tę drogę", + "hasBeenSplit": "Ta droga została podzielona", + "split": "Podziel", + "inviteToSplit": "Podziel tę drogę na mniejsze segmenty. Pozwala to na nadanie różnych właściwości do poszczególnych części drogi." + } } diff --git a/langs/ru.json b/langs/ru.json index 43825a9ce0..a6bb476c04 100644 --- a/langs/ru.json +++ b/langs/ru.json @@ -127,7 +127,9 @@ "pickTheme": "Выберите тему ниже, чтобы начать.", "#": "Эти надписи отображаются над кнопками тем, когда тема не загружена", "intro": "MapComplete - это редактор OpenStreetMap, который показывает информацию с разделением по темам.", - "title": "Добро пожаловать в MapComplete" + "title": "Добро пожаловать в MapComplete", + "logIn": "Войдите чтобы увидеть другие посещённые темы", + "featuredThemeTitle": "Интересное на этой неделе" }, "centerMessage": { "retrying": "Не удалось загрузить данные. Попробуем ещё раз через {count} секунд…", @@ -145,11 +147,12 @@ "ccb": "под лицензией CC-BY", "ccbs": "под лицензией CC-BY-SA", "cco": "в открытом доступе", - "willBePublished": "Ваше изображение будет опубликовано: ", + "willBePublished": "Ваше изображение будет опубликовано ", "pleaseLogin": "Пожалуйста, войдите в систему, чтобы добавить изображение", "uploadingMultiple": "Загружаем {count} изображений…", "uploadingPicture": "Загружаем изображение…", - "addPicture": "Добавить изображение" + "addPicture": "Добавить изображение", + "uploadMultipleDone": "{count} изображений добавлено. Спасибо за помощь!" }, "reviews": { "plz_login": "Войдите, чтобы оставить отзыв", @@ -175,9 +178,17 @@ "delete": { "delete": "Удалить", "cancel": "Отмена", - "safeDelete": "Эта точка может быть безопасно удалена." + "safeDelete": "Эта точка может быть безопасно удалена.", + "isDeleted": "Эта функция удалена", + "cannotBeDeleted": "Эта возможность не может быть удалена", + "loginToDelete": "Вы должны войти в профиль чтобы удалить дочку" }, "split": { - "cancel": "Отмена" + "cancel": "Отмена", + "hasBeenSplit": "Этот путь был разделён", + "splitTitle": "Выберите карту на которой хотите разделить дорогу", + "split": "Разделить", + "inviteToSplit": "Разделите эту дорогу на маленькие части. Это позволит дпть больше информации частей дороги.", + "loginToSplit": "Вы должны войти в профиль, чтобы разделить дорогу" } } diff --git a/langs/shared-questions/fr.json b/langs/shared-questions/fr.json index e0878286be..aeb372cb37 100644 --- a/langs/shared-questions/fr.json +++ b/langs/shared-questions/fr.json @@ -61,13 +61,20 @@ }, "service:electricity": { "mappings": { + "0": { + "then": "Il y a suffisamment de prises disponibles pour les client·e·s en intérieur souhaitant recharger leurs appareils" + }, + "1": { + "then": "Il y a peu de prises disponibles pour les client·e·s en intérieur souhaitant recharger leurs appareils" + }, "2": { "then": "Il n'y a pas de prises disponibles à l'intérieur pour les clients, mais la recharge est peut-être possible sur demande auprès des employés" }, "3": { "then": "Il n'y a pas de prises secteur disponibles pour les clients assis à l'intérieur" } - } + }, + "question": "Des prises sont elles à disposition des client·e·s en intérieur ?" }, "website": { "question": "Quel est le site web de {name} ?" @@ -102,7 +109,8 @@ "0": { "then": "Non lié avec Wikipedia" } - } + }, + "question": "Quel est l’élément Wikipédia correspondant ?" } } } \ No newline at end of file diff --git a/langs/shared-questions/hu.json b/langs/shared-questions/hu.json index d639475e1c..eebb7ea7db 100644 --- a/langs/shared-questions/hu.json +++ b/langs/shared-questions/hu.json @@ -26,20 +26,20 @@ "level": { "mappings": { "0": { - "then": "A föld alatt található" + "then": "A föld alatt" }, "1": { - "then": "A földszinten található" + "then": "A földszinten" }, "2": { - "then": "A földszinten található" + "then": "A földszinten" }, "3": { - "then": "Az első emeleten található" + "then": "Az első emeleten" } }, "question": "Melyik szinten található ez a létesítmény?", - "render": "{level}. emeleten található" + "render": "A(z) {level}. emeleten" }, "opening_hours": { "question": "Mikor van nyitva ez: {name}?", @@ -59,6 +59,23 @@ "phone": { "question": "Mi a telefonszáma ennek: {name}?" }, + "service:electricity": { + "mappings": { + "0": { + "then": "Számos konnektor áll a belső térben ügyfelek rendelkezésére, ahol elektromos készülékeiket tölthetik" + }, + "1": { + "then": "Csupán néhány konnektor áll a belső térben ügyfelek rendelkezésére, ahol elektromos készülékeiket tölthetik" + }, + "2": { + "then": "A belső térben nincs konnektor az ügyfeleknek, de lehetséges, hogy a személyzet segítségével lehet elektromos eszközt tölteni" + }, + "3": { + "then": "A belső térben ülő ügyfeleknek nem áll rendelkezésére konnektor" + } + }, + "question": "Van-e ebben a létesítményben olyan konnektor, amely a bent tartózkodó ügyfelek rendelkezésére áll?" + }, "website": { "question": "Mi a weboldala ennek: {name}?" }, diff --git a/langs/shared-questions/pl.json b/langs/shared-questions/pl.json index 6715900e92..eb46bd032c 100644 --- a/langs/shared-questions/pl.json +++ b/langs/shared-questions/pl.json @@ -3,6 +3,13 @@ "description": { "question": "Czy jest jeszcze coś istotnego, czego nie mogłeś podać w poprzednich pytaniach? Dodaj to tutaj.
Nie powtarzaj już podanych faktów" }, + "dog-access": { + "mappings": { + "1": { + "then": "Psom wstęp wzbroniony" + } + } + }, "email": { "question": "Jaki jest adres e-mail do {name}?" }, @@ -28,6 +35,17 @@ "question": "Jakie są godziny otwarcia {name}?", "render": "

Godziny otwarcia

{opening_hours_table(opening_hours)}" }, + "payment-options": { + "mappings": { + "0": { + "then": "Płatność gotówkowa jest tutaj dostępna" + }, + "1": { + "then": "Płatność kartą jest tutaj dostępna" + } + }, + "question": "Jakie metody płatności są tutaj dostępne?" + }, "phone": { "question": "Jaki jest numer telefonu do {name}?" }, diff --git a/langs/shared-questions/ru.json b/langs/shared-questions/ru.json index 9ab7b37f39..c04c670327 100644 --- a/langs/shared-questions/ru.json +++ b/langs/shared-questions/ru.json @@ -7,8 +7,18 @@ "mappings": { "0": { "then": "Собаки разрешены" + }, + "1": { + "then": "С собаками не впускают" + }, + "2": { + "then": "Собак впускают, но на поводке" + }, + "3": { + "then": "Собак свободно впускают" } - } + }, + "question": "Впускают ли собак в это здание?" }, "email": { "question": "Какой адрес электронной почты у {name}?" @@ -35,11 +45,42 @@ "question": "Какое время работы у {name}?", "render": "

Часы работы

{opening_hours_table(opening_hours)}" }, + "payment-options": { + "mappings": { + "0": { + "then": "Здесь принимают наличными" + }, + "1": { + "then": "Здесь принимают банковские карты" + } + }, + "question": "Какие способы оплаты здесь принимают?" + }, "phone": { "question": "Какой номер телефона у {name}?" }, "website": { "question": "Какой сайт у {name}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Это место подходит для людей на инвалидной коляске" + }, + "1": { + "then": "До этого места легко добраться на инвалидной коляске" + }, + "2": { + "then": "До этого места можно добраться, но не просто" + } + } + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Никакой страницы на Википедии не было прикреплено" + } + } } } } \ No newline at end of file diff --git a/langs/themes/de.json b/langs/themes/de.json index 47f2612909..627902acf9 100644 --- a/langs/themes/de.json +++ b/langs/themes/de.json @@ -841,7 +841,7 @@ }, "grb": { "layers": { - "2": { + "1": { "tagRenderings": { "building type": { "question": "Was ist das für ein Gebäude?" @@ -1083,6 +1083,8 @@ "description": "Tragen Sie zu OpenStreetMap bei, indem Sie Adressinformationen ausfüllen", "layers": { "2": { + "description": "Adressen", + "name": "Bekannte Adressen in OSM", "tagRenderings": { "uk_addresses_explanation_osm": { "render": "Diese Adresse ist in OpenStreetMap gespeichert" @@ -1100,6 +1102,9 @@ "question": "In welcher Straße befindet sich diese Adresse?", "render": "Diese Adresse befindet sich in der Straße {addr:street}" } + }, + "title": { + "render": "Bekannte Adresse" } } }, diff --git a/langs/themes/en.json b/langs/themes/en.json index 54d9eadd76..e4ce014662 100644 --- a/langs/themes/en.json +++ b/langs/themes/en.json @@ -22,7 +22,7 @@ "title": "Binoculars" }, "bookcases": { - "description": "A public bookcase is a small streetside cabinet, box, old phone boot or some other objects where books are stored. Everyone can place or take a book. This map aims to collect all these bookcases. You can discover new bookcases nearby and, with a free OpenStreetMap account, quickly add your favourite bookcases.", + "description": "A public bookcase is a small streetside cabinet, box, old phone booth or some other objects where books are stored. Everyone can place or take a book. This map aims to collect all these bookcases. You can discover new bookcases nearby and, with a free OpenStreetMap account, quickly add your favourite bookcases.", "title": "Open Bookcase Map" }, "cafes_and_pubs": { @@ -839,7 +839,7 @@ "grb": { "description": "This theme is an attempt to help automating the GRB import.", "layers": { - "2": { + "1": { "tagRenderings": { "building type": { "question": "What kind of building is this?" @@ -934,6 +934,68 @@ "shortDescription": "Map to show hydrants, extinguishers, fire stations, and ambulance stations.", "title": "Hydrants, Extinguishers, Fire stations, and Ambulance stations." }, + "mapcomplete-changes": { + "description": "This maps shows all the changes made with MapComplete", + "layers": { + "0": { + "description": "Shows all MapComplete changes", + "filter": { + "0": { + "options": { + "0": { + "question": "Themename contains {search}" + } + } + }, + "1": { + "options": { + "0": { + "question": "Made by contributor {search}" + } + } + }, + "2": { + "options": { + "0": { + "question": "Not made by contributor {search}" + } + } + } + }, + "name": "Changeset centers", + "tagRenderings": { + "contributor": { + "render": "Change made by {_last_edit:contributor}" + }, + "render_id": { + "render": "Changeset {id}" + }, + "theme": { + "mappings": { + "0": { + "then": "Change with unofficial theme {theme}" + } + }, + "render": "Change with theme {theme}" + } + }, + "title": { + "render": "Changeset for {theme}" + } + }, + "1": { + "override": { + "tagRenderings": { + "link_to_more": { + "render": "More statistics can be found here" + } + } + } + } + }, + "shortDescription": "Shows changes made by MapComplete", + "title": "Changes made with MapComplete" + }, "maps": { "description": "On this map you can find all maps OpenStreetMap knows - typically a big map on an information board showing the area, city or region, e.g. a tourist map on the back of a billboard, a map of a nature reserve, a map of cycling networks in the region, ...)

If a map is missing, you can easily map this map on OpenStreetMap.", "shortDescription": "This theme shows all (touristic) maps that OpenStreetMap knows of", @@ -1209,6 +1271,9 @@ "uk_addresses": { "description": "Contribute to OpenStreetMap by filling out address information", "layers": { + "0": { + "name": "Inspire polygons" + }, "1": { "tagRenderings": { "uk_addresses_embedding_outline": { @@ -1230,12 +1295,17 @@ } }, "2": { + "description": "Addresses", + "name": "Known addresses in OSM", "tagRenderings": { "address-sign-image": { "render": "{image_carousel(image:address)}
{image_upload(image:address, Add image of the address)}" }, "fixme": { - "question": "What should be fixed here? Please explain" + "question": "What should be fixed here? Please explain what the address is" + }, + "preview": { + "render": "To send a letter to this addres, you would write:
Name of the inhabitant
{addr:housename}
{addr:unit} {addr:housenumber} {addr:street}
{addr:place}
Suburb
Town
Postal code
" }, "uk_addresses_explanation_osm": { "render": "This address is saved in OpenStreetMap" @@ -1249,10 +1319,25 @@ "question": "What is the number of this house?", "render": "The housenumber is {addr:housenumber}" }, + "uk_addresses_placename": { + "mappings": { + "0": { + "then": "No extra placename is given or needed" + } + }, + "question": "What is the place or locality?
This is additional information if the streetname alone isn't enough to find this address. Typical examples are 'Technology Park', 'XYZ Terrace', ...
", + "render": "The placename is {addr:place}" + }, "uk_addresses_street": { "question": "What street is this address located in?", "render": "This address is in street {addr:street}" + }, + "uk_addresses_unit": { + "question": "What is the unit indication of this address?
This is the letter or number of the letterbox here, if multiple letterboxes share the same street and housenumber. If there are multiple at the same location, add them here with a ; between them
" } + }, + "title": { + "render": "Known address" } } }, diff --git a/langs/themes/hu.json b/langs/themes/hu.json index 202f0811d0..3acc85a739 100644 --- a/langs/themes/hu.json +++ b/langs/themes/hu.json @@ -1,11 +1,34 @@ { "aed": { - "title": "Nyílt AED Térkép" + "description": "Ezen a térképen a közeli defibrillátorokat lehet megtalálni és feltüntetni", + "title": "Defibrillátor-térkép" }, "artwork": { - "title": "Nyít Műalkotás Térkép" + "description": "Isten hozott a nyílt műalkotástérképen, a világ minden táján megtalálható szobrok, mellszobrok, grafittik és más műalkotások térképén", + "title": "Műalkotástérkép" }, "ghostbikes": { - "title": "Emlékkerékpár" + "title": "Emlékkerékpárok" + }, + "trees": { + "description": "Térképezzünk fel minden fát!", + "shortDescription": "Az összes fa feltérképezése", + "title": "Fatérkép" + }, + "uk_addresses": { + "layers": { + "2": { + "description": "Címek", + "name": "Ismert címek az OSM-en", + "title": { + "render": "Ismert cím" + } + } + } + }, + "waste_basket": { + "description": "Ezen a térképen megtalálhatod a közeledben lévő szemeteskosarakat. Ha hiányzik egy kuka a térképről, te is felrajzolhatod", + "shortDescription": "Szemeteskosarakat ábrázoló térkép", + "title": "Kukatérkép" } } \ No newline at end of file diff --git a/langs/themes/nl.json b/langs/themes/nl.json index 80cbc37c9f..217ff11088 100644 --- a/langs/themes/nl.json +++ b/langs/themes/nl.json @@ -212,14 +212,30 @@ }, "1": { "then": "Er is internettoegang" + }, + "2": { + "then": "Er is geen internettoegang" } - } + }, + "question": "Biedt deze plaats internettoegang?" }, "caravansites-name": { "question": "Wat is de naam van deze plaats?", "render": "Deze plaats heet {name}" }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "Deze plaats heeft toiletten" + }, + "1": { + "then": "Deze plaats heeft geen toiletten" + } + }, + "question": "Heeft deze plaats toiletten?" + }, "caravansites-website": { + "question": "Heeft deze plaats een website?", "render": "Officiële website: : {website}" } }, @@ -753,7 +769,7 @@ "grb": { "description": "Dit thema helpt het GRB importeren.", "layers": { - "2": { + "1": { "tagRenderings": { "grb-fixme": { "mappings": { @@ -1026,10 +1042,10 @@ "title": "Surveillance under Surveillance" }, "toerisme_vlaanderen": { - "description": "Op deze kaart kan je info zien die relevant is voor toerisme, zoals:
  • Eetgelegenheden
  • Cafés en bars
  • (Fiets)oplaadpunten
  • Fietspompen, fietserverhuur en fietswinkels
  • Uitkijktorens
  • ...
Zie je fouten op de kaart? Dan kan je zelf makkelijk aanpasingen maken, die zichtbaar zijn voor iedereen. Hiervoor dien je een gratis OpenStreetMap account voor te maken.", - "descriptionTail": "Met de steun van Toerisme Vlaanderen", + "description": "

Pin je punt is een open toerismekaart waarin wandelaars en fietsers nuttige gegevens verzamelen die handig zijn voor andere wandelaars en fietsers.

We verzamelen 7 thematische lagen:

  1. Laadpunten voor e-bikes
  2. Openbare toiletten
  3. Zit- en picknickbankjes
  4. Uitkijkpunten, uitkijkplatformen en uitkijktorens
  5. Fietsherstelpunten
  6. Fietsverhuurpunten
  7. Speeltuinen

Klik op de exacte locatie op de kaart om een van deze 7 punten toe te voegen. Of corrigeer bestaande punten door erop te klikken.

", + "descriptionTail": "

Met de steun van Toerisme Vlaanderen

Meer informatie op toerismevlaaneren.be", "shortDescription": "Een kaart om toeristisch relevante info op aan te duiden", - "title": "Toeristisch relevante info" + "title": "Pin je punt" }, "toilets": { "description": "Een kaart met openbare toiletten", @@ -1044,6 +1060,8 @@ "description": "Draag bij aan OpenStreetMap door adresinformatie in te vullen", "layers": { "2": { + "description": "Adressen", + "name": "Bekende adressen in OSM", "tagRenderings": { "uk_addresses_housenumber": { "mappings": { @@ -1053,6 +1071,9 @@ }, "render": "Het huisnummer is {addr:housenumber}" } + }, + "title": { + "render": "Bekend adres" } } } diff --git a/langs/themes/pl.json b/langs/themes/pl.json index 48289dbab0..96cade8581 100644 --- a/langs/themes/pl.json +++ b/langs/themes/pl.json @@ -4,8 +4,12 @@ "title": "Otwórz mapę AED" }, "artwork": { + "description": "Witaj w Open Artwork Map, mapie pomników, popierś, graffitti i innych dzieł sztuki z całego świata", "title": "Otwórz mapę dzieł sztuki" }, + "bicyclelib": { + "title": "Wypożyczalnie rowerów" + }, "ghostbikes": { "title": "Duch roweru" }, diff --git a/langs/themes/ru.json b/langs/themes/ru.json index fdc231a61f..b6166629c3 100644 --- a/langs/themes/ru.json +++ b/langs/themes/ru.json @@ -530,5 +530,12 @@ "description": "Нанесите все деревья на карту!", "shortDescription": "Карта деревьев", "title": "Деревья" + }, + "uk_addresses": { + "layers": { + "2": { + "description": "Адреса" + } + } } } \ No newline at end of file diff --git a/langs/themes/zh_Hant.json b/langs/themes/zh_Hant.json index db3f473135..1a4652326b 100644 --- a/langs/themes/zh_Hant.json +++ b/langs/themes/zh_Hant.json @@ -299,6 +299,11 @@ "description": "在這份地圖上,公共可及的飲水點可以顯示出來,也能輕易的增加", "title": "飲用水" }, + "entrances": { + "description": "顯示所有出入口的地圖,勘查對輪椅使用者重要的資訊", + "shortDescription": "幫助輪椅導航來勘查出入口", + "title": "出入口" + }, "etymology": { "description": "在這份地圖,你可以看到物件是以何命名,道路、 建築等的命名由來連到 Wikidata。在跳出選單,你可以看到物件命名由來的維基條目 (如果有的話),或是 Wikidata 框。如果物件本身有維基頁面,也會顯示。

你也可以貢獻!放大到夠大的層級,然後所有道路都會顯示。你可以點選一個之後 Wikidata 搜尋框會跳出來。只要點幾下,你可以新增詞源連結。注意你要有開放街圖帳號才能這麼做。", "layers": { @@ -650,6 +655,14 @@ "shortDescription": "所有樹木的地圖", "title": "樹木" }, + "uk_addresses": { + "layers": { + "2": { + "description": "地址", + "name": "OSM 上已知的地址" + } + } + }, "waste_basket": { "description": "在這份地圖當中,你可以找到你附近的垃圾筒。如果地圖有遺漏垃圾筒,你可以自己加上去", "shortDescription": "垃圾筒的地圖", diff --git a/langs/zh_Hant.json b/langs/zh_Hant.json index d78897f314..ce3b891db2 100644 --- a/langs/zh_Hant.json +++ b/langs/zh_Hant.json @@ -251,7 +251,7 @@ "disableFilters": "關閉所有篩選器", "disableFiltersExplanation": "有些圖徵可能被篩選器隱藏", "presetInfo": "新的興趣點有 {tags}", - "addNewMapLabel": "新增新項目", + "addNewMapLabel": "點這邊新增新項目", "warnVisibleForEveryone": "你新增的東西將會被所有人看到", "zoomInMore": "再放大來匯入這一圖徵" }, diff --git a/notfound.ts b/notfound.ts new file mode 100644 index 0000000000..12146ef4d9 --- /dev/null +++ b/notfound.ts @@ -0,0 +1,11 @@ +import {FixedUiElement} from "./UI/Base/FixedUiElement"; +import Combine from "./UI/Base/Combine"; +import {SubtleButton} from "./UI/Base/SubtleButton"; +import Svg from "./Svg"; + +new Combine([new FixedUiElement("This page is not found"), +new SubtleButton(Svg.back_svg(), "Back to index", { + url: "./index.html", + newTab: false +}) +]).AttachTo("maindiv") \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 5ec926bd95..3498ed1707 100644 --- a/package-lock.json +++ b/package-lock.json @@ -35,7 +35,7 @@ "leaflet-providers": "^1.13.0", "leaflet-simple-map-screenshoter": "^0.4.4", "leaflet.markercluster": "^1.4.1", - "libphonenumber": "0.0.10", + "libphonenumber": "^0.0.9", "libphonenumber-js": "^1.7.55", "lz-string": "^1.4.4", "mangrove-reviews": "^0.1.3", @@ -1511,24 +1511,6 @@ "node": ">=0.10.0" } }, - "node_modules/@parcel/watcher/node_modules/fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "deprecated": "fsevents 1 will break on node v14+ and could be using insecure binaries. Upgrade to fsevents 2.", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - }, - "engines": { - "node": ">= 4.0" - } - }, "node_modules/@parcel/watcher/node_modules/glob-parent": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", @@ -4714,30 +4696,14 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "node_modules/concat-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", - "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.0.1.tgz", + "integrity": "sha1-AYsYvBx9BzotyCqkhEI0GixN158=", "engines": [ - "node >= 6.0" + "node >= 0.8.0" ], "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.0.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/concat-stream/node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" + "bops": "0.0.6" } }, "node_modules/concaveman": { @@ -4815,7 +4781,7 @@ "version": "2.6.12", "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", - "deprecated": "core-js@<3.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", + "deprecated": "core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", "hasInstallScript": true }, "node_modules/core-js-compat": { @@ -6887,19 +6853,6 @@ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, "node_modules/function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", @@ -6985,6 +6938,33 @@ "geojson-numeric": "geojson-numeric" } }, + "node_modules/geojson-numeric/node_modules/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "engines": [ + "node >= 6.0" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/geojson-numeric/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/geojson-random": { "version": "0.2.2", "resolved": "https://registry.npmjs.org/geojson-random/-/geojson-random-0.2.2.tgz", @@ -7164,11 +7144,6 @@ "unicode-trie": "^0.3.1" } }, - "node_modules/growl": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz", - "integrity": "sha1-Dqd0NxXbjY3ixe3hd14bRayFwC8=" - }, "node_modules/handlebars": { "version": "4.7.7", "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", @@ -8528,36 +8503,6 @@ "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" }, - "node_modules/jade": { - "version": "0.26.3", - "resolved": "https://registry.npmjs.org/jade/-/jade-0.26.3.tgz", - "integrity": "sha1-jxDXl32NefL2/4YqgbBRPMslaGw=", - "deprecated": "Jade has been renamed to pug, please install the latest version of pug instead of jade", - "dependencies": { - "commander": "0.6.1", - "mkdirp": "0.3.0" - }, - "bin": { - "jade": "bin/jade" - } - }, - "node_modules/jade/node_modules/commander": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz", - "integrity": "sha1-+mihT2qUXVTbvlDYzbMyDp47GgY=", - "engines": { - "node": ">= 0.4.x" - } - }, - "node_modules/jade/node_modules/mkdirp": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz", - "integrity": "sha1-G79asbqCevI1dRQ0kEJkVfSB/h4=", - "deprecated": "Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)", - "engines": { - "node": "*" - } - }, "node_modules/jquery": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz", @@ -8984,12 +8929,11 @@ } }, "node_modules/libphonenumber": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/libphonenumber/-/libphonenumber-0.0.10.tgz", - "integrity": "sha1-54u/ZgGYnNCfpDUEdkaI1BeUFIw=", + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/libphonenumber/-/libphonenumber-0.0.9.tgz", + "integrity": "sha1-YuCNsuLJszYL2ISS8uhwTvbErII=", "dependencies": { - "closure": "1.0.3", - "mocha": "^2.4.5" + "closure": "1.0.3" }, "engines": { "node": ">= 0.8" @@ -9135,11 +9079,6 @@ "node": ">=0.10.0" } }, - "node_modules/lru-cache": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", - "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=" - }, "node_modules/lz-string": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", @@ -9418,103 +9357,6 @@ "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" }, - "node_modules/mocha": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-2.5.3.tgz", - "integrity": "sha1-FhvlvetJZ3HrmzV0UFC2IrWu/Fg=", - "dependencies": { - "commander": "2.3.0", - "debug": "2.2.0", - "diff": "1.4.0", - "escape-string-regexp": "1.0.2", - "glob": "3.2.11", - "growl": "1.9.2", - "jade": "0.26.3", - "mkdirp": "0.5.1", - "supports-color": "1.2.0", - "to-iso-string": "0.0.2" - }, - "bin": { - "_mocha": "bin/_mocha", - "mocha": "bin/mocha" - }, - "engines": { - "node": ">= 0.8.x" - } - }, - "node_modules/mocha/node_modules/commander": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.3.0.tgz", - "integrity": "sha1-/UMOiJgy7DU7ms0d4hfBHLPu+HM=", - "engines": { - "node": ">= 0.6.x" - } - }, - "node_modules/mocha/node_modules/debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "dependencies": { - "ms": "0.7.1" - } - }, - "node_modules/mocha/node_modules/diff": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-1.4.0.tgz", - "integrity": "sha1-fyjS657nsVqX79ic5j3P2qPMur8=", - "engines": { - "node": ">=0.3.1" - } - }, - "node_modules/mocha/node_modules/escape-string-regexp": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz", - "integrity": "sha1-Tbwv5nTnGUnK8/smlc5/LcHZqNE=", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/mocha/node_modules/glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", - "integrity": "sha1-Spc/Y1uRkPcV0QmH1cAP0oFevj0=", - "dependencies": { - "inherits": "2", - "minimatch": "0.3" - }, - "engines": { - "node": "*" - } - }, - "node_modules/mocha/node_modules/minimatch": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", - "integrity": "sha1-J12O2qxPG7MyZHIInnlJyDlGmd0=", - "deprecated": "Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue", - "dependencies": { - "lru-cache": "2", - "sigmund": "~1.0.0" - }, - "engines": { - "node": "*" - } - }, - "node_modules/mocha/node_modules/ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" - }, - "node_modules/mocha/node_modules/supports-color": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-1.2.0.tgz", - "integrity": "sha1-/x7R5hFp0Gs88tWI4YixjYhH4X4=", - "bin": { - "supports-color": "cli.js" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/modern-normalize": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz", @@ -9553,12 +9395,6 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "node_modules/nan": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", - "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", - "optional": true - }, "node_modules/nanocolors": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/nanocolors/-/nanocolors-0.1.6.tgz", @@ -10222,6 +10058,33 @@ "integrity": "sha512-Xqg/lIZMrUd0VRmSRbCAewtwGZiAk3mEUDvV4op1tGl+LvyPcb/MIOSxTl9z+9+J+R4/vpjiCAT4xeKzH9ji1w==", "optional": true }, + "node_modules/osmtogeojson/node_modules/concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "engines": [ + "node >= 6.0" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/osmtogeojson/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/pako": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", @@ -12489,9 +12352,9 @@ } }, "node_modules/protocol-buffers-schema": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.5.1.tgz", - "integrity": "sha512-YVCvdhxWNDP8/nJDyXLuM+UFsuPk4+1PB7WGPVDzm3HTHbzFLxQYeW2iZpS4mmnXrQJGBzt230t/BbEb7PrQaw==" + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", + "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==" }, "node_modules/psl": { "version": "1.8.0", @@ -13566,11 +13429,6 @@ "node": ">=0.8.0" } }, - "node_modules/sigmund": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", - "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=" - }, "node_modules/signal-exit": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", @@ -14330,6 +14188,7 @@ "version": "1.3.2", "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", "integrity": "sha512-yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw==", + "deprecated": "This SVGO version is no longer supported. Upgrade to v2.x.x.", "dependencies": { "chalk": "^2.4.1", "coa": "^2.0.2", @@ -14818,12 +14677,6 @@ "node": ">=4" } }, - "node_modules/to-iso-string": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/to-iso-string/-/to-iso-string-0.0.2.tgz", - "integrity": "sha1-TcGeZk38y+Jb2NtQiwDG2hWCVdE=", - "deprecated": "to-iso-string has been deprecated, use @segment/to-iso-string instead." - }, "node_modules/to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -14890,17 +14743,6 @@ "togpx": "togpx" } }, - "node_modules/togpx/node_modules/concat-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.0.1.tgz", - "integrity": "sha1-AYsYvBx9BzotyCqkhEI0GixN158=", - "engines": [ - "node >= 0.8.0" - ], - "dependencies": { - "bops": "0.0.6" - } - }, "node_modules/toidentifier": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", @@ -17982,16 +17824,6 @@ } } }, - "fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "optional": true, - "requires": { - "bindings": "^1.5.0", - "nan": "^2.12.1" - } - }, "glob-parent": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", @@ -20561,26 +20393,11 @@ "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" }, "concat-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", - "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.0.1.tgz", + "integrity": "sha1-AYsYvBx9BzotyCqkhEI0GixN158=", "requires": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^3.0.2", - "typedarray": "^0.0.6" - }, - "dependencies": { - "readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", - "requires": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - } - } + "bops": "0.0.6" } }, "concaveman": { @@ -22290,12 +22107,6 @@ "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" }, - "fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", - "optional": true - }, "function-bind": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", @@ -22367,6 +22178,29 @@ "requires": { "concat-stream": "2.0.0", "optimist": "~0.3.5" + }, + "dependencies": { + "concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } + } } }, "geojson-random": { @@ -22508,11 +22342,6 @@ "unicode-trie": "^0.3.1" } }, - "growl": { - "version": "1.9.2", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.9.2.tgz", - "integrity": "sha1-Dqd0NxXbjY3ixe3hd14bRayFwC8=" - }, "handlebars": { "version": "4.7.7", "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", @@ -23522,27 +23351,6 @@ "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" }, - "jade": { - "version": "0.26.3", - "resolved": "https://registry.npmjs.org/jade/-/jade-0.26.3.tgz", - "integrity": "sha1-jxDXl32NefL2/4YqgbBRPMslaGw=", - "requires": { - "commander": "0.6.1", - "mkdirp": "0.3.0" - }, - "dependencies": { - "commander": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz", - "integrity": "sha1-+mihT2qUXVTbvlDYzbMyDp47GgY=" - }, - "mkdirp": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.0.tgz", - "integrity": "sha1-G79asbqCevI1dRQ0kEJkVfSB/h4=" - } - } - }, "jquery": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.6.0.tgz", @@ -23887,12 +23695,11 @@ } }, "libphonenumber": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/libphonenumber/-/libphonenumber-0.0.10.tgz", - "integrity": "sha1-54u/ZgGYnNCfpDUEdkaI1BeUFIw=", + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/libphonenumber/-/libphonenumber-0.0.9.tgz", + "integrity": "sha1-YuCNsuLJszYL2ISS8uhwTvbErII=", "requires": { - "closure": "1.0.3", - "mocha": "^2.4.5" + "closure": "1.0.3" } }, "libphonenumber-js": { @@ -24022,11 +23829,6 @@ "signal-exit": "^3.0.0" } }, - "lru-cache": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz", - "integrity": "sha1-bUUk6LlV+V1PW1iFHOId1y+06VI=" - }, "lz-string": { "version": "1.4.4", "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz", @@ -24242,76 +24044,6 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", "dev": true }, - "mocha": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/mocha/-/mocha-2.5.3.tgz", - "integrity": "sha1-FhvlvetJZ3HrmzV0UFC2IrWu/Fg=", - "requires": { - "commander": "2.3.0", - "debug": "2.2.0", - "diff": "1.4.0", - "escape-string-regexp": "1.0.2", - "glob": "3.2.11", - "growl": "1.9.2", - "jade": "0.26.3", - "mkdirp": "0.5.1", - "supports-color": "1.2.0", - "to-iso-string": "0.0.2" - }, - "dependencies": { - "commander": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.3.0.tgz", - "integrity": "sha1-/UMOiJgy7DU7ms0d4hfBHLPu+HM=" - }, - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "requires": { - "ms": "0.7.1" - } - }, - "diff": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-1.4.0.tgz", - "integrity": "sha1-fyjS657nsVqX79ic5j3P2qPMur8=" - }, - "escape-string-regexp": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.2.tgz", - "integrity": "sha1-Tbwv5nTnGUnK8/smlc5/LcHZqNE=" - }, - "glob": { - "version": "3.2.11", - "resolved": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", - "integrity": "sha1-Spc/Y1uRkPcV0QmH1cAP0oFevj0=", - "requires": { - "inherits": "2", - "minimatch": "0.3" - } - }, - "minimatch": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", - "integrity": "sha1-J12O2qxPG7MyZHIInnlJyDlGmd0=", - "requires": { - "lru-cache": "2", - "sigmund": "~1.0.0" - } - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=" - }, - "supports-color": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-1.2.0.tgz", - "integrity": "sha1-/x7R5hFp0Gs88tWI4YixjYhH4X4=" - } - } - }, "modern-normalize": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/modern-normalize/-/modern-normalize-1.1.0.tgz", @@ -24341,12 +24073,6 @@ "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true }, - "nan": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", - "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", - "optional": true - }, "nanocolors": { "version": "0.1.6", "resolved": "https://registry.npmjs.org/nanocolors/-/nanocolors-0.1.6.tgz", @@ -24880,6 +24606,27 @@ "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-1.0.6.tgz", "integrity": "sha512-Xqg/lIZMrUd0VRmSRbCAewtwGZiAk3mEUDvV4op1tGl+LvyPcb/MIOSxTl9z+9+J+R4/vpjiCAT4xeKzH9ji1w==", "optional": true + }, + "concat-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-2.0.0.tgz", + "integrity": "sha512-MWufYdFw53ccGjCA+Ol7XJYpAlW6/prSMzuPOTRnJGcGzuhLn4Scrz7qf6o8bROZ514ltazcIFJZevcfbo0x7A==", + "requires": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.0.2", + "typedarray": "^0.0.6" + } + }, + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } } } }, @@ -26616,9 +26363,9 @@ } }, "protocol-buffers-schema": { - "version": "3.5.1", - "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.5.1.tgz", - "integrity": "sha512-YVCvdhxWNDP8/nJDyXLuM+UFsuPk4+1PB7WGPVDzm3HTHbzFLxQYeW2iZpS4mmnXrQJGBzt230t/BbEb7PrQaw==" + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/protocol-buffers-schema/-/protocol-buffers-schema-3.6.0.tgz", + "integrity": "sha512-TdDRD+/QNdrCGCE7v8340QyuXd4kIWIgapsE2+n/SaGiSSbomYl4TjHlvIoCWRpE7wFt02EpB35VVA2ImcBVqw==" }, "psl": { "version": "1.8.0", @@ -27455,11 +27202,6 @@ "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.2.6.tgz", "integrity": "sha1-kEktcv/MgVmXa6umL7D2iE8MM3g=" }, - "sigmund": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", - "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=" - }, "signal-exit": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz", @@ -28039,7 +27781,7 @@ }, "svg-resizer": { "version": "git+ssh://git@github.com/vieron/svg-resizer.git#00968cb3e7248533ab9451ce7dffa8af288e4f4a", - "from": "svg-resizer@git+https://github.com/vieron/svg-resizer.git", + "from": "svg-resizer@github:vieron/svg-resizer", "requires": { "fs-extra": "~0.8.1", "lodash": "~2.4.1", @@ -28422,11 +28164,6 @@ "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" }, - "to-iso-string": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/to-iso-string/-/to-iso-string-0.0.2.tgz", - "integrity": "sha1-TcGeZk38y+Jb2NtQiwDG2hWCVdE=" - }, "to-object-path": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", @@ -28478,16 +28215,6 @@ "jxon": "~2.0.0-beta.5", "optimist": "~0.3.5", "xmldom": "~0.1.17" - }, - "dependencies": { - "concat-stream": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.0.1.tgz", - "integrity": "sha1-AYsYvBx9BzotyCqkhEI0GixN158=", - "requires": { - "bops": "0.0.6" - } - } } }, "toidentifier": { diff --git a/package.json b/package.json index fc157041a3..759fe910da 100644 --- a/package.json +++ b/package.json @@ -11,45 +11,40 @@ "start": "npm run start:prepare && npm-run-all --parallel start:parallel:*", "strt": "npm run start:prepare && npm run start:parallel:parcel", "start:prepare": "ts-node scripts/generateLayerOverview.ts --no-fail && npm run increase-memory", - "start:parallel:parcel": "node --max_old_space_size=12000 $(which parcel) serve *.html UI/** Logic/** assets/*.json assets/svg/* assets/generated/* assets/layers/*/*.svg assets/layers/*/*.jpg assets/layers/*/*.png assets/layers/*/*.css assets/tagRenderings/*.json assets/themes/*/*.svg assets/themes/*/*.css assets/themes/*/*.jpg assets/themes/*/*.png vendor/* vendor/*/*", + "start:parallel:parcel": "parcel serve *.html UI/** Logic/** assets/*.json assets/svg/* assets/generated/* assets/layers/*/*.svg assets/layers/*/*.jpg assets/layers/*/*.png assets/layers/*/*.css assets/tagRenderings/*.json assets/themes/*/*.svg assets/themes/*/*.css assets/themes/*/*.jpg assets/themes/*/*.png vendor/* vendor/*/*", "start:parallel:tailwindcli": "tailwindcss -i index.css -o css/index-tailwind-output.css --watch", "generate:css": "tailwindcss -i index.css -o css/index-tailwind-output.css", "test": "ts-node test/TestAll.ts", "init": "npm ci && npm run generate && npm run generate:editor-layer-index && npm run generate:layouts && npm run clean", "add-weblate-upstream": "git remote add weblate-layers https://hosted.weblate.org/git/mapcomplete/layer-translations/ ; git remote update weblate-layers", "fix-weblate": "git remote update weblate-layers; git merge weblate-layers/master", - "generate:editor-layer-index": "cd assets/ && wget https://osmlab.github.io/editor-layer-index/imagery.geojson --output-document=editor-layer-index.json", - "generate:polygon-features": "cd assets/ && wget https://raw.githubusercontent.com/tyrasd/osm-polygon-features/master/polygon-features.json --output-document=polygon-features.json", + "generate:editor-layer-index": "ts-node scripts/downloadFile.ts https://osmlab.github.io/editor-layer-index/imagery.geojson assets/editor-layer-index.json", + "generate:polygon-features": "ts-node scripts/downloadFile.ts https://raw.githubusercontent.com/tyrasd/osm-polygon-features/master/polygon-features.json assets/polygon-features.json", "generate:images": "ts-node scripts/generateIncludedImages.ts", "generate:translations": "ts-node scripts/generateTranslations.ts", + "watch:translations": "cd langs && ls | entr npm run generate:translations", "reset:translations": "ts-node scripts/generateTranslations.ts --ignore-weblate", "generate:layouts": "ts-node scripts/generateLayouts.ts", "generate:docs": "ts-node scripts/generateDocs.ts && ts-node scripts/generateTaginfoProjectFiles.ts", "generate:cache:speelplekken:mini": "ts-node scripts/generateCache.ts speelplekken 14 ../MapComplete-data/speelplekken_cache_mini/ 51.181710380278176 4.423413276672363 51.193007664772495 4.444141387939452", "generate:cache:speelplekken": "npm run generate:layeroverview && ts-node scripts/generateCache.ts speelplekken 14 ../MapComplete-data/speelplekken_cache/ 51.20 4.35 51.09 4.56", "generate:cache:natuurpunt": "npm run generate:layeroverview && ts-node scripts/generateCache.ts natuurpunt 12 ../MapComplete-data/natuurpunt_cache/ 50.40 2.1 51.54 6.4 --generate-point-overview nature_reserve,visitor_information_centre", - "generate:layeroverview": "echo {\\\"layers\\\":[], \\\"themes\\\":[]} > ./assets/generated/known_layers_and_themes.json && ts-node scripts/generateLayerOverview.ts --no-fail", + "generate:layeroverview": "ts-node scripts/generateLayerOverview.ts --no-fail", "generate:licenses": "ts-node scripts/generateLicenseInfo.ts --no-fail", "query:licenses": "ts-node scripts/generateLicenseInfo.ts --query", "generate:report": "cd Docs/Tools && ./compileStats.sh && git commit . -m 'New statistics ands graphs' && git push", "generate:contributor-list": "git log --pretty='%aN' | sort | uniq -c | sort -hr | sed 's/ *\\([0-9]*\\) \\(.*\\)$/{\"contributor\":\"\\2\", \"commits\":\\1}/' | tr '\\n' ',' | sed 's/^/{\"contributors\":[/' | sed 's/,$/]}/' | jq > assets/contributors.json", - "validate:layeroverview": "ts-node scripts/generateLayerOverview.ts --report", - "validate:licenses": "ts-node scripts/generateLicenseInfo.ts --report", "generate:schemas": "ts2json-schema -p Models/ThemeConfig/Json/ -o Docs/Schemas/ -t tsconfig.json -R . -m \".*ConfigJson\" && ts-node scripts/fixSchemas.ts ", "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", - "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 validate:layeroverview", - "build": "rm -rf dist/ && npm run generate && parcel build --public-url ./ *.html assets/** assets/**/** assets/**/**/** vendor/* vendor/*/*", + "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", "generate:charging-stations": "cd ./assets/layers/charging_station && ts-node csvToJson.ts && cd -", - "prepare-deploy": "npm run generate && npm run test && npm run generate:editor-layer-index && npm run generate:layouts && npm run build && rm -rf .cache", - "deploy:staging": "npm run prepare-deploy && rm -rf ~/git/pietervdvn.github.io/Staging/* && cp -r dist/* ~/git/pietervdvn.github.io/Staging/ && cd ~/git/pietervdvn.github.io/ && git add * && git commit -m 'New MapComplete Version' && git push && cd - && npm run clean", - "deploy:pietervdvn": "cd ~/git/pietervdvn.github.io/ && git pull && cd - && npm run prepare-deploy && rm -rf ~/git/pietervdvn.github.io/MapComplete/* && cp -r dist/* ~/git/pietervdvn.github.io/MapComplete/ && cd ~/git/pietervdvn.github.io/ && git add * && git commit -m 'New MapComplete Version' && git push && cd - && npm run clean", - "deploy:production": "cd ~/git/mapcomplete.github.io/ && git pull && cd - && rm -rf ./assets/generated && npm run prepare-deploy && npm run optimize-images && rm -rf ~/git/mapcomplete.github.io/* && cp -r dist/* ~/git/mapcomplete.github.io/ && cd ~/git/mapcomplete.github.io/ && echo \"mapcomplete.osm.be\" > CNAME && git add * && git commit -m 'New MapComplete Version' && git push && cd - && npm run clean && npm run gittag", + "prepare-deploy": "./scripts/build.sh", "gittag": "ts-node scripts/printVersion.ts | bash", "lint": "tslint --project . -c tslint.json '**.ts' ", - "clean": "rm -rf .cache/ && (find *.html | grep -v \"\\(index\\|land\\|test\\|preferences\\|customGenerator\\|professional\\|automaton\\).html\" | xargs rm) && rm *.webmanifest", - "generate:dependency-graph": "node_modules/.bin/depcruise --exclude \"^node_modules\" --output-type dot test/TestAll.ts > dependencies.dot && dot dependencies.dot -T svg -o dependencies.svg && rm dependencies.dot", - "genPostal": " ts-node ./scripts/postal_code_tools/createRoutablePoint.ts /home/pietervdvn/Downloads/postal_codes/postal_codes_town_hall_points.geojson /home/pietervdvn/Downloads/31370/Postcodes.geojson\n" + "clean": "rm -rf .cache/ && (find *.html | grep -v \"\\(404\\|index\\|land\\|test\\|preferences\\|customGenerator\\|professional\\|automaton\\|theme\\).html\" | xargs rm) && (ls | grep \"^index_[a-zA-Z_]\\+\\.ts$\" | xargs rm) && (ls | grep \".*.webmanifest$\" | xargs rm)", + "generate:dependency-graph": "node_modules/.bin/depcruise --exclude \"^node_modules\" --output-type dot Logic/State/MapState.ts > dependencies.dot && dot dependencies.dot -T svg -o dependencies.svg && rm dependencies.dot", + "bicycle_rental": "ts-node ./scripts/extractBikeRental.ts" }, "keywords": [ "OpenStreetMap", @@ -84,7 +79,7 @@ "leaflet-providers": "^1.13.0", "leaflet-simple-map-screenshoter": "^0.4.4", "leaflet.markercluster": "^1.4.1", - "libphonenumber": "0.0.10", + "libphonenumber": "^0.0.9", "libphonenumber-js": "^1.7.55", "lz-string": "^1.4.4", "mangrove-reviews": "^0.1.3", diff --git a/preferences.html b/preferences.html deleted file mode 100644 index 10250978c0..0000000000 --- a/preferences.html +++ /dev/null @@ -1,29 +0,0 @@ - - - - - Preferences editor - - - - - - -

Preferences editor - developers only

-Only use if you know what you're doing. To prevent newbies to make mistakes here, editing a mapcomplete-preference is -only available if over 500 changes
-Editing any preference -including non-mapcomplete ones- is available when you have more then 2500 changesets. Until that -point, only editing mapcomplete-preferences is possible. -
'maindiv' not attached
- - - \ No newline at end of file diff --git a/preferences.ts b/preferences.ts deleted file mode 100644 index bef8b6d5de..0000000000 --- a/preferences.ts +++ /dev/null @@ -1,154 +0,0 @@ -import {OsmConnection} from "./Logic/Osm/OsmConnection"; -import Combine from "./UI/Base/Combine"; -import {Button} from "./UI/Base/Button"; -import {TextField} from "./UI/Input/TextField"; -import {FixedUiElement} from "./UI/Base/FixedUiElement"; -import {Utils} from "./Utils"; -import {SubtleButton} from "./UI/Base/SubtleButton"; -import LZString from "lz-string"; -import BaseUIElement from "./UI/BaseUIElement"; -import Table from "./UI/Base/Table"; -import {LayoutConfigJson} from "./Models/ThemeConfig/Json/LayoutConfigJson"; -import {Changes} from "./Logic/Osm/Changes"; -import {ElementStorage} from "./Logic/ElementStorage"; - - -const connection = new OsmConnection({ - osmConfiguration: 'osm', - changes: new Changes(), - layoutName: '', - allElements: new ElementStorage() -}); - - -let rendered = false; - -function salvageThemes(preferences: any) { - const knownThemeNames = new Set(); - const correctThemeNames = [] - for (const key in preferences) { - try { - if (!(typeof key === "string")) { - continue; - } - const prefix = "mapcomplete-installed-theme-"; - // mapcomplete-installed-theme-arbres_llefia-combined-11 - //mapcomplete-installed-theme-1roadAlllanes-combined-length - if (!key.startsWith(prefix)) { - continue; - } - const theme = key.substring(prefix.length, key.indexOf("-combined-")) - - if (key.endsWith("-length")) { - correctThemeNames.push(theme) - } else { - knownThemeNames.add(theme); - } - } catch (e) { - console.error(e) - } - } - - for (const correctThemeName of correctThemeNames) { - knownThemeNames.delete(correctThemeName); - } - - const missingValues = Array.from(knownThemeNames).map(failedTheme => { - - let i = 0; - let foundValue = undefined - let combined = "" - do { - const prefix = "mapcomplete-installed-theme-"; - const key = prefix + failedTheme + "-combined-" + i; - foundValue = preferences[key] - console.log(key, "-->", foundValue) - i++; - combined += foundValue ?? "" - } while (foundValue !== undefined); - - if (combined === "") { - return null; - } - - console.log("COmbined value is", combined) - let jsonObject; - try { - jsonObject = JSON.parse(atob(combined)); - } catch (e) { - try { - - // We try to decode with lz-string - jsonObject = JSON.parse(Utils.UnMinify(LZString.decompressFromBase64(combined))) as LayoutConfigJson; - } catch (e0) { - console.log("Could not salvage theme. Initial parsing failed due to:", e, "\nWith LZ failed due ", e0) - } - - } - - return { - themeName: failedTheme, - contents: JSON.stringify(jsonObject, null, " ") - } - }) - return Utils.NoNull(missingValues); -} - -function clearAll(preferences) { - for (const key in preferences) { - const pref = connection.GetPreference(key, ""); - if (key.startsWith("mapcomplete")) { - pref.setData("") - } - } -} - -function SalvageButton(theme: { themeName: string, contents: string }) { - return new SubtleButton("./assets/svg/bug.svg", "Download broken theme " + theme.themeName).onClick( - () => { - Utils.offerContentsAsDownloadableFile(theme.contents, theme.themeName + ".json") - } - ) -} - -function createTable(preferences: any) { - if (rendered) { - return; - } - rendered = true; - const prefs: (BaseUIElement | string)[][] = []; - for (const key in preferences) { - if (!preferences.hasOwnProperty(key)) { - continue; - } - const pref = connection.GetPreference(key, ""); - - let value: BaseUIElement = new FixedUiElement(pref.data); - if (connection.userDetails.data.csCount > 500 && - (key.startsWith("mapcomplete") || connection.userDetails.data.csCount > 2500)) { - value = new TextField({ - value: pref - }); - } - - const row = [ - key, - new Button("delete", () => pref.setData(null)), - value - ]; - prefs.push(row); - } - - new Combine( - [ - ...salvageThemes(preferences).map(theme => SalvageButton(theme)), - new Table( - ["Key", "", "Value"], - prefs - ), - new SubtleButton("./assets/svg/delete_icon.svg", "Delete all mapcomplete preferences (mangrove identies are preserved)").onClick(() => clearAll(preferences))] - ).AttachTo("maindiv"); -} - -connection.preferencesHandler.preferences.addCallback((prefs) => createTable(prefs)) - diff --git a/scripts/ScriptUtils.ts b/scripts/ScriptUtils.ts index 62923d2bfc..817e32d6c2 100644 --- a/scripts/ScriptUtils.ts +++ b/scripts/ScriptUtils.ts @@ -121,7 +121,7 @@ export default class ScriptUtils { public static getThemeFiles(): { parsed: LayoutConfigJson, path: string }[] { return ScriptUtils.readDirRecSync("./assets/themes") - .filter(path => path.endsWith(".json")) + .filter(path => path.endsWith(".json") && !path.endsWith(".proto.json")) .filter(path => path.indexOf("license_info.json") < 0) .map(path => { try { diff --git a/scripts/build.sh b/scripts/build.sh new file mode 100755 index 0000000000..809b996c03 --- /dev/null +++ b/scripts/build.sh @@ -0,0 +1,61 @@ +#! /bin/bash +echo "Starting build" +# The build script; we build the application step by step as building everything at once takes too much RAM +# Should be run from the repository root +# This is the main deployment script +rm -rf dist/* +rm -rf .cache +mkdir dist 2> /dev/null +mkdir dist/assets 2> /dev/null + +# This script ends every line with '&&' to chain everything. A failure will thus stop the build +npm run generate:editor-layer-index +npm run generate && +npm run test && +npm run generate:layouts + +if [ $? -ne 0 ]; then + echo "ERROR - stopping the build" + exit 1 +fi + +# Copy the layer files, as these might contain assets (e.g. svgs) +cp -r assets/layers/ dist/assets/layers/ +cp -r assets/themes/ dist/assets/themes/ +cp -r assets/svg/ dist/assets/svg/ +cp assets/*.png dist/assets/ +cp assets/*.svg dist/assets/ + +SRC_MAPS="--no-source-maps" +BRANCH=`git rev-parse --abbrev-ref HEAD` +echo "The branch name is $BRANCH" +if [ $BRANCH = "develop" ] +then + SRC_MAPS="" + echo "Source maps are enabled" +fi + +echo -e "\n\n Building non-theme pages" +echo -e " ==========================\n\n" +parcel build --public-url "./" $SRC_MAPS "index.html" "404.html" "professional.html" "automaton.html" "land.html" "customGenerator.html" "theme.html" vendor +echo -e "\n\n Building theme pages" +echo -e " ======================\n\n" + +for file in $(ls index_*.ts) +do + theme=${file:6:-3} + echo -e "\n\n $theme" + echo -e " ------------ \n\n" + # Builds the necessary files for just one theme, e.g. 'bookcases.html' + 'index_bookcases.ts' + supporting file + # npm run generate && node --max_old_space_size=12000 $(which parcel) build + parcel build --public-url './' $SRC_MAPS "$theme.html" +done +# At last: a workaround; parcel 1.x borks the link to social images; the public-URL (./) is setup incorrectly, so we fix those +cd dist +echo -e "Fixing social images..." +for file in $(ls *.html) +do + echo "Hi!" + # sed -i 's!!!' $file + # sed -i 's!!!' $file +done \ No newline at end of file diff --git a/scripts/deployIfChanged.sh b/scripts/deployIfChanged.sh deleted file mode 100755 index d9d948365c..0000000000 --- a/scripts/deployIfChanged.sh +++ /dev/null @@ -1,27 +0,0 @@ -#! /bin/bash - - -# To run with crontab: -# */1 * * * * /home/pietervdvn/git/MapComplete/scripts/deployIfChanged.sh >> /home/pietervdvn/auto_deploy_caching.log 2>&1 - -PATH=/home/pietervdvn/.local/bin:/home/pietervdvn/.nvm/versions/node/v16.0.0/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games:/snap/bin:/home/pietervdvn/.dotnet/tools - - -cd ~/git/MapComplete - - git fetch - HEADHASH=$(git rev-parse HEAD) - UPSTREAMHASH=$(git rev-parse master@{upstream}) - - if [ "$HEADHASH" != "$UPSTREAMHASH" ] - then - echo Not up to date with origin. Deploying! - git pull - npm run generate:translations - git commit -am "Sync translations" - git push - npm run generate:docs - git commit -am "Autgenerate docs and taginfo files" - - npm run deploy:production - fi \ No newline at end of file diff --git a/scripts/downloadFile.ts b/scripts/downloadFile.ts new file mode 100644 index 0000000000..6e191919fe --- /dev/null +++ b/scripts/downloadFile.ts @@ -0,0 +1,12 @@ +const http = require('https'); +const fs = require('fs'); + +// Could use yargs to have more validation but wanted to keep it simple +const args = process.argv.slice(2); +const FILE_URL = args[0]; +const DESTINATION = args[1]; + +console.log(`Downloading ${FILE_URL} to ${DESTINATION}`) + +const file = fs.createWriteStream(DESTINATION); +http.get(FILE_URL, response=>response.pipe(file)); diff --git a/scripts/extractBikeRental.ts b/scripts/extractBikeRental.ts new file mode 100644 index 0000000000..7b6a8f4b88 --- /dev/null +++ b/scripts/extractBikeRental.ts @@ -0,0 +1,211 @@ +import * as fs from "fs"; +import {OH} from "../UI/OpeningHours/OpeningHours"; + + +function extractValue(vs: { __value }[]) { + if(vs === undefined){ + return undefined + } + for (const v of vs) { + if ((v.__value ?? "") === "") { + continue + } + return v.__value; + } + return undefined +} + + +function extract_oh_block (days) : string{ + const oh = [] + for (const day of days.day) { + const abbr = day.name.substr(0,2) + const block = day.time_block[0] + const from = block.time_from.substr(0,5) + const to = block.time_until.substr(0,5) + const by_appointment = block.by_appointment ? " \"by appointment\"" : "" + oh.push(`${abbr} ${from}-${to}${by_appointment}`) + } + return oh.join("; ") +} +function extract_oh(opening_periods){ + const rules = [] + if(opening_periods === undefined){ + return undefined; + } + for (const openingPeriod of opening_periods.opening_period ?? []) { + let rule = extract_oh_block(openingPeriod.days) + if(openingPeriod.name.toLowerCase().indexOf("schoolvakantie") >= 0){ + rule = "SH "+rule + } + rules.push(rule) + } + return OH.simplify( rules.join(";")) +} + +function rewrite(obj, key) { + if (obj[key] === undefined) { + return + } + obj[key] = extractValue(obj[key]["value"]) +} + +const stuff = fs.readFileSync("/home/pietervdvn/Documents/Freelance/ToerismeVlaanderen 2021-09/TeImporteren/allchannels-bike_rental.json", "UTF8") +const data: any[] = JSON.parse(stuff) + +const results: { + geometry: { + type: "Point", + coordinates: [number, number] + }, + type: "Feature", + properties: any + +}[] = [] +const skipped = [] +console.log("[") +for (const item of data) { + const metadata = item["metadata"] + + if (metadata.name === "Jommekeroute") { + continue + } + + const addr = item.location_info?.address + if (addr === undefined) { + skipped.push(item) + continue + } + const toDelete = ["id", "uuid", "update_date", "creation_date", + "deleted", + "aborted", + "partner_id", + "business_product_id", + "winref", + "winref_uuid", + "root_product_type", + "parent" + ] + for (const key of toDelete) { + delete metadata[key] + } + + delete item["meeting_rooms_count"] + delete item["facilities"] + + item.properties = metadata + delete item["metadata"] + + const metadata_values = ["touristic_product_type", "root_product_type"] + for (const key of metadata_values) { + rewrite(metadata, key) + } + + rewrite(item.contact_info, "commercial_name") + + const gl = addr.geolocation + item.coordinates = [gl.lon, gl.lat] + metadata["addr:street"] = addr.street + metadata["addr:housenumber"] = addr.number + metadata["phone"] = item.contact_info["telephone"] ?? item.contact_info["mobile"] + metadata["email"] = item.contact_info["email_address"] + + const links = item.links?.link?.map(l => l.url) ?? [] + metadata["website"] = item.contact_info["website"] ?? links[0] + + delete item["links"] + + delete item.location_info + delete item.contact_info + delete item.promotional_info + + if (metadata["touristic_product_type"] === "Fietsverhuur") { + metadata["amenity"] = "bicycle_rental" + delete metadata["touristic_product_type"] + } else { + console.error("Unkown product type: ", metadata["touristic_product_type"]) + } + + const descriptions = item.descriptions?.description?.map(d => extractValue(d?.text?.value)) ?? [] + delete item.descriptions + metadata["description"] = metadata["description"] ?? descriptions[0] + if (item.price_info?.prices?.free == true) { + metadata.fee = "no" + delete item.price_info + } else if (item.price_info?.prices?.free == false) { + metadata.fee = "yes" + metadata.charge = extractValue(item.price_info?.extra_information?.value) + const methods = item.price_info?.payment_methods?.payment_method + if(methods !== undefined){ + methods.map(v => extractValue(v.value)).forEach(method => { + metadata["payment:" + method.toLowerCase()] = "yes" + }) + } + delete item.price_info + }else if(item.price_info?.prices?.length === 0){ + delete item.price_info + } + + + try{ + + if(item.labels_info?.labels_own?.label[0]?.code === "Billenkar"){ + metadata.rental = "quadricycle" + delete item.labels_info + } + }catch(e){ + + } + delete item["publishing_channels"] + + + try { + metadata["image"] = item.media.file[0].url[0] + } catch (e) { + // No image! + } + delete item.media + + + + const time_info = item.time_info?.time_info_regular + if(time_info?.permantly_open === true){ + metadata.opening_hours = "24/7" + }else{ + metadata.opening_hours = extract_oh(time_info?.opening_periods) + } + delete item.time_info + + + + const properties = {} + for (const key in metadata) { + const v = metadata[key] + if(v === null || v === undefined || v === ""){ + delete metadata[key] + continue + } + properties[key] = v + } + results.push({ + geometry: { + type: "Point", + coordinates: item.coordinates + }, + type: "Feature", + properties + }) + + delete item.coordinates + delete item.properties + console.log(JSON.stringify(item, null, " ") + ",") + +} +console.log("]") +fs.writeFileSync("west-vlaanderen.geojson", JSON.stringify( + { + type: "FeatureCollection", + features: results + } + , null, " " +)) \ No newline at end of file diff --git a/scripts/generateCache.ts b/scripts/generateCache.ts index 0134c941f2..9980c1959a 100644 --- a/scripts/generateCache.ts +++ b/scripts/generateCache.ts @@ -24,6 +24,7 @@ import {GeoOperations} from "../Logic/GeoOperations"; import SimpleMetaTaggers from "../Logic/SimpleMetaTagger"; import FilteringFeatureSource from "../Logic/FeatureSource/Sources/FilteringFeatureSource"; import Loc from "../Models/Loc"; + ScriptUtils.fixUtils() function createOverpassObject(theme: LayoutConfig, relationTracker: RelationsTracker, backend: string) { @@ -166,7 +167,7 @@ function loadAllTiles(targetdir: string, r: TileRange, theme: LayoutConfig, extr // Create and save the geojson file - which is the main chunk of the data const geojson = OsmToGeoJson.default(rawOsm); - console.log(" which as",geojson.features.length, "features") + console.log(" which as", geojson.features.length, "features") allFeatures.push(...geojson.features) } @@ -180,23 +181,24 @@ function loadAllTiles(targetdir: string, r: TileRange, theme: LayoutConfig, extr function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relationsTracker: RelationsTracker, targetdir: string, pointsOnlyLayers: string[]) { const skippedLayers = new Set() - const indexedFeatures : Map = new Map() + const indexedFeatures: Map = new Map() let indexisBuilt = false; - function buildIndex(){ + + function buildIndex() { for (const ff of allFeatures.features.data) { const f = ff.feature indexedFeatures.set(f.properties.id, f) } indexisBuilt = true; } - - function getFeatureById(id){ - if(!indexisBuilt){ + + function getFeatureById(id) { + if (!indexisBuilt) { buildIndex() } return indexedFeatures.get(id) } - + async function handleLayer(source: FeatureSourceForLayer) { const layer = source.layer.layerDef; const targetZoomLevel = layer.source.geojsonZoomLevel ?? 0 @@ -225,11 +227,10 @@ function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relations includeDates: false, includeNonDates: true }); - - + while (SimpleMetaTaggers.country.runningTasks.size > 0) { - console.log("Still waiting for ", SimpleMetaTaggers.country.runningTasks.size," features which don't have a country yet") + console.log("Still waiting for ", SimpleMetaTaggers.country.runningTasks.size, " features which don't have a country yet") await ScriptUtils.sleep(1) } @@ -246,18 +247,18 @@ function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relations if (tile.features.data.length === 0) { return } - + const filteredTile = new FilteringFeatureSource({ - locationControl: new UIEventSource(undefined), - allElements: undefined, - selectedElement: new UIEventSource(undefined) - }, + locationControl: new UIEventSource(undefined), + allElements: undefined, + selectedElement: new UIEventSource(undefined) + }, tileIndex, tile, new UIEventSource(undefined) - ) + ) - console.log("Tile "+layer.id+"."+tileIndex+" contains "+filteredTile.features.data.length+" features after filtering ("+tile.features.data.length+") features before") + console.log("Tile " + layer.id + "." + tileIndex + " contains " + filteredTile.features.data.length + " features after filtering (" + tile.features.data.length + ") features before") if (filteredTile.features.data.length === 0) { return } @@ -266,22 +267,22 @@ function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relations for (const feature of filteredTile.features.data) { // Some cleanup delete feature.feature["bbox"] - - if(tile.layer.layerDef.calculatedTags !== undefined){ - - // Evaluate all the calculated tags strictly - const calculatedTagKeys = tile.layer.layerDef.calculatedTags.map(ct => ct[0]) - featureCount++ - for (const calculatedTagKey of calculatedTagKeys) { - const strict = feature.feature.properties[calculatedTagKey] - feature.feature.properties[calculatedTagKey] =strict - strictlyCalculated ++; - if(strictlyCalculated % 100 === 0){ - console.log("Strictly calculated ", strictlyCalculated, "values for tile",tileIndex,": now at ", featureCount,"/",filteredTile.features.data.length, "examle value: ", strict) + + if (tile.layer.layerDef.calculatedTags !== undefined) { + + // Evaluate all the calculated tags strictly + const calculatedTagKeys = tile.layer.layerDef.calculatedTags.map(ct => ct[0]) + featureCount++ + for (const calculatedTagKey of calculatedTagKeys) { + const strict = feature.feature.properties[calculatedTagKey] + feature.feature.properties[calculatedTagKey] = strict + strictlyCalculated++; + if (strictlyCalculated % 100 === 0) { + console.log("Strictly calculated ", strictlyCalculated, "values for tile", tileIndex, ": now at ", featureCount, "/", filteredTile.features.data.length, "examle value: ", strict) + } } } - } - + } // Lets save this tile! const [z, x, y] = Tiles.tile_from_index(tileIndex) @@ -293,7 +294,7 @@ function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relations type: "FeatureCollection", features: filteredTile.features.data.map(f => f.feature) }, null, " ")) - console.log("Written tile", targetPath,"with", filteredTile.features.data.length) + console.log("Written tile", targetPath, "with", filteredTile.features.data.length) } }) @@ -315,16 +316,16 @@ function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relations if (pointsOnlyLayers.indexOf(layer.id) >= 0) { const filtered = new FilteringFeatureSource({ - locationControl: new UIEventSource(undefined), + locationControl: new UIEventSource(undefined), allElements: undefined, selectedElement: new UIEventSource(undefined) }, - Tiles.tile_index(0,0,0), + Tiles.tile_index(0, 0, 0), source, new UIEventSource(undefined) ) const features = filtered.features.data.map(f => f.feature) - + const points = features.map(feature => GeoOperations.centerpoint(feature)) console.log("Writing points overview for ", layerId) const targetPath = targetdir + "_" + layerId + "_points.geojson" @@ -375,8 +376,6 @@ async function main(args: string[]) { const lat1 = Number(args[5]) const lon1 = Number(args[6]) - - const tileRange = Tiles.TileRangeBetween(zoomlevel, lat0, lon0, lat1, lon1) @@ -397,29 +396,29 @@ async function main(args: string[]) { let generatePointLayersFor = [] if (args[7] == "--generate-point-overview") { - if(args[8] === undefined){ + if (args[8] === undefined) { throw "--generate-point-overview needs a list of layers to generate the overview for (or * for all)" - }else if (args[8] === '*'){ + } else if (args[8] === '*') { generatePointLayersFor = theme.layers.map(l => l.id) - }else{ + } else { generatePointLayersFor = args[8].split(",") } console.log("Also generating a point overview for layers ", generatePointLayersFor.join(",")) } { - - const index = args.indexOf("--force-zoom-level") - if(index >= 0){ - const forcedZoomLevel = Number(args[index + 1]) - for (const layer of theme.layers) { - layer.source.geojsonSource = "https://127.0.0.1/cache_{layer}_{z}_{x}_{y}.geojson" - layer.source.isOsmCacheLayer = true - layer.source.geojsonZoomLevel = forcedZoomLevel + + const index = args.indexOf("--force-zoom-level") + if (index >= 0) { + const forcedZoomLevel = Number(args[index + 1]) + for (const layer of theme.layers) { + layer.source.geojsonSource = "https://127.0.0.1/cache_{layer}_{z}_{x}_{y}.geojson" + layer.source.isOsmCacheLayer = true + layer.source.geojsonZoomLevel = forcedZoomLevel + } } } - } - - + + const relationTracker = new RelationsTracker() let failed = 0; diff --git a/scripts/generateDocs.ts b/scripts/generateDocs.ts index c1b1ca500e..9e6bee37d3 100644 --- a/scripts/generateDocs.ts +++ b/scripts/generateDocs.ts @@ -1,24 +1,23 @@ -import SpecialVisualizations from "../UI/SpecialVisualizations"; -import SimpleMetaTagger from "../Logic/SimpleMetaTagger"; import Combine from "../UI/Base/Combine"; -import {ExtraFunctions} from "../Logic/ExtraFunctions"; -import ValidatedTextField from "../UI/Input/ValidatedTextField"; import BaseUIElement from "../UI/BaseUIElement"; import Translations from "../UI/i18n/Translations"; import {writeFileSync} from "fs"; -import {QueryParameters} from "../Logic/Web/QueryParameters"; -import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; -import Minimap from "../UI/Base/Minimap"; -import FeatureSwitchState from "../Logic/State/FeatureSwitchState"; import {AllKnownLayouts} from "../Customizations/AllKnownLayouts"; import TableOfContents from "../UI/Base/TableOfContents"; +import SimpleMetaTaggers, {SimpleMetaTagger} from "../Logic/SimpleMetaTagger"; +import ValidatedTextField from "../UI/Input/ValidatedTextField"; +import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; +import SpecialVisualizations from "../UI/SpecialVisualizations"; +import FeatureSwitchState from "../Logic/State/FeatureSwitchState"; +import {ExtraFunctions} from "../Logic/ExtraFunctions"; import Title from "../UI/Base/Title"; +import Minimap from "../UI/Base/Minimap"; +import {QueryParameters} from "../Logic/Web/QueryParameters"; import QueryParameterDocumentation from "../UI/QueryParameterDocumentation"; function WriteFile(filename, html: BaseUIElement, autogenSource: string[]): void { if (html instanceof Combine) { - const toc = new TableOfContents(html); const els = html.getElements(); html = new Combine( @@ -26,19 +25,32 @@ function WriteFile(filename, html: BaseUIElement, autogenSource: string[]): void toc, ...els ] - ) + ).SetClass("flex flex-col") } - writeFileSync(filename, new Combine([Translations.W(html), + let md = new Combine([Translations.W(html), "\n\nThis document is autogenerated from " + autogenSource.join(", ") - ]).AsMarkdown()); + ]).AsMarkdown() + + md.replace(/\n\n\n+/g, "\n\n"); + + writeFileSync(filename, md); } +console.log("Starting documentation generation...") +AllKnownLayouts.GenOverviewsForSingleLayer((layer, element) => { + console.log("Exporting ", layer.id) + WriteFile("./Docs/Layers/" + layer.id + ".md", element, [`assets/layers/${layer.id}/${layer.id}.json`]) + +}) WriteFile("./Docs/SpecialRenderings.md", SpecialVisualizations.HelpMessage(), ["UI/SpecialVisualisations.ts"]) -WriteFile("./Docs/CalculatedTags.md", new Combine([new Title("Metatags", 1), SimpleMetaTagger.HelpText(), ExtraFunctions.HelpText()]).SetClass("flex-col"), +WriteFile("./Docs/CalculatedTags.md", new Combine([new Title("Metatags", 1), + SimpleMetaTaggers.HelpText(), ExtraFunctions.HelpText()]).SetClass("flex-col"), ["SimpleMetaTagger", "ExtraFunction"]) WriteFile("./Docs/SpecialInputElements.md", ValidatedTextField.HelpText(), ["ValidatedTextField.ts"]); WriteFile("./Docs/BuiltinLayers.md", AllKnownLayouts.GenLayerOverviewText(), ["AllKnownLayers.ts"]) + + Minimap.createMiniMap = _ => { console.log("Not creating a minimap, it is disabled"); return undefined diff --git a/scripts/generateLayerOverview.ts b/scripts/generateLayerOverview.ts index a2ee4bc70b..f0b63f47fb 100644 --- a/scripts/generateLayerOverview.ts +++ b/scripts/generateLayerOverview.ts @@ -1,237 +1,192 @@ import ScriptUtils from "./ScriptUtils"; -import {writeFileSync} from "fs"; +import {existsSync, mkdirSync, readFileSync, writeFileSync} from "fs"; import * as licenses from "../assets/generated/license_info.json" import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson"; -import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; -import LayerConfig from "../Models/ThemeConfig/LayerConfig"; +import Constants from "../Models/Constants"; +import { + DesugaringContext, + PrepareLayer, + PrepareTheme, + ValidateLayer, + ValidateThemeAndLayers +} from "../Models/ThemeConfig/Conversion/LegacyJsonConvert"; import {Translation} from "../UI/i18n/Translation"; -import {Utils} from "../Utils"; -import AllKnownLayers from "../Customizations/AllKnownLayers"; +import {TagRenderingConfigJson} from "../Models/ThemeConfig/Json/TagRenderingConfigJson"; +import * as questions from "../assets/tagRenderings/questions.json"; +import * as icons from "../assets/tagRenderings/icons.json"; +import PointRenderingConfigJson from "../Models/ThemeConfig/Json/PointRenderingConfigJson"; // 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 -interface LayersAndThemes { - themes: LayoutConfigJson[], - layers: { parsed: LayerConfigJson, path: string }[] -} - - class LayerOverviewUtils { - loadThemesAndLayers(): LayersAndThemes { - - const layerFiles = ScriptUtils.getLayerFiles(); - - const themeFiles: LayoutConfigJson[] = ScriptUtils.getThemeFiles().map(x => x.parsed); - - console.log("Discovered", layerFiles.length, "layers and", themeFiles.length, "themes\n") - if (layerFiles.length + themeFiles.length === 0) { - throw "Panic: no themes and layers loaded!" - } - return { - layers: layerFiles, - themes: themeFiles + writeSmallOverview(themes: { id: string, title: any, shortDescription: any, icon: string, hideFromOverview: boolean }[]) { + const perId = new Map(); + for (const theme of themes) { + const data = { + id: theme.id, + title: theme.title, + shortDescription: theme.shortDescription, + icon: theme.icon, + hideFromOverview: theme.hideFromOverview + } + perId.set(theme.id, data); } + + + const sorted = Constants.themeOrder.map(id => { + if (!perId.has(id)) { + throw "Ordered theme id " + id + " not found" + } + return perId.get(id); + }); + + + perId.forEach((value) => { + if (Constants.themeOrder.indexOf(value.id) >= 0) { + return; // actually a continue + } + sorted.push(value) + }) + + writeFileSync("./assets/generated/theme_overview.json", JSON.stringify(sorted, null, " "), "UTF8"); } - writeFiles(lt: LayersAndThemes) { - writeFileSync("./assets/generated/known_layers_and_themes.json", JSON.stringify({ - "layers": lt.layers.map(l => l.parsed), - "themes": lt.themes - })) + writeTheme(theme: LayoutConfigJson) { + if (!existsSync("./assets/generated/themes")) { + mkdirSync("./assets/generated/themes"); + } + writeFileSync(`./assets/generated/themes/${theme.id}.json`, JSON.stringify(theme, null, " "), "UTF8"); } - validateLayer(layerJson: LayerConfigJson, path: string, knownPaths: Set, context?: string): string[] { - let errorCount = []; - if (layerJson["overpassTags"] !== undefined) { - errorCount.push("Layer " + layerJson.id + "still uses the old 'overpassTags'-format. Please use \"source\": {\"osmTags\": }' instead of \"overpassTags\": (note: this isn't your fault, the custom theme generator still spits out the old format)") + writeLayer(layer: LayerConfigJson) { + if (!existsSync("./assets/generated/layers")) { + mkdirSync("./assets/generated/layers"); } - const forbiddenTopLevel = ["icon","wayHandling","roamingRenderings","roamingRendering","label","width","color","colour","iconOverlays"] - for (const forbiddenKey of forbiddenTopLevel) { - if(layerJson[forbiddenKey] !== undefined) - errorCount.push("Layer "+layerJson.id+" still has a forbidden key "+forbiddenKey) - } - try { - const layer = new LayerConfig(layerJson, "test", true) - const images = Array.from(layer.ExtractImages()) - const remoteImages = images.filter(img => img.indexOf("http") == 0) - for (const remoteImage of remoteImages) { - errorCount.push("Found a remote image: " + remoteImage + " in layer " + layer.id + ", please download it. You can use the fixTheme script to automate this") - } - const expected: string = `assets/layers/${layer.id}/${layer.id}.json` - if (path != undefined && path.indexOf(expected) < 0) { - errorCount.push("Layer is in an incorrect place. The path is " + path + ", but expected " + expected) - } - if (layerJson["hideUnderlayingFeaturesMinPercentage"] !== undefined) { - errorCount.push("Layer " + layer.id + " contains an old 'hideUnderlayingFeaturesMinPercentage'") - } - - - for (const image of images) { - if (image.indexOf("{") >= 0) { - console.warn("Ignoring image with { in the path: ", image) - continue - } - - if (!knownPaths.has(image)) { - const ctx = context === undefined ? "" : ` in a layer defined in the theme ${context}` - errorCount.push(`Image with path ${image} not found or not attributed; it is used in ${layer.id}${ctx}`) - } - } - - } catch (e) { - console.error(e) - return [`Layer ${layerJson.id}` ?? JSON.stringify(layerJson).substring(0, 50) + " is invalid: " + e] - } - return errorCount + writeFileSync(`./assets/generated/layers/${layer.id}.json`, JSON.stringify(layer, null, " "), "UTF8"); } - - main(args: string[]) { + getSharedTagRenderings(): Map { + const dict = new Map(); - AllKnownLayers.runningGenerateScript = true; - const layerFiles = ScriptUtils.getLayerFiles(); - const themeFiles = ScriptUtils.getThemeFiles(); + for (const key in questions["default"]) { + questions[key].id = key; + dict.set(key, questions[key]) + } + for (const key in icons["default"]) { + if (typeof icons[key] !== "object") { + continue + } + icons[key].id = key; + dict.set(key, icons[key]) + } + dict.forEach((value, key) => { + value.id = value.id ?? key; + }) - console.log(" ---------- VALIDATING ---------") - const licensePaths = [] + return dict; + } + + main(_: string[]) { + + const licensePaths = new Set() for (const i in licenses) { - licensePaths.push(licenses[i].path) - } - const knownPaths = new Set(licensePaths) - - let layerErrorCount = [] - const knownLayerIds = new Map(); - for (const layerFile of layerFiles) { - - if (knownLayerIds.has(layerFile.parsed.id)) { - throw "Duplicate identifier: " + layerFile.parsed.id + " in file " + layerFile.path - } - layerErrorCount.push(...this.validateLayer(layerFile.parsed, layerFile.path, knownPaths)) - knownLayerIds.set(layerFile.parsed.id, new LayerConfig(layerFile.parsed)) - - if(layerFile.parsed.description === undefined){ - throw "The layer "+layerFile.parsed.id+" does not provide a description, but this is required for builtin themes" - } + licensePaths.add(licenses[i].path) } - let themeErrorCount = [] - // used only for the reports - let themeConfigs: LayoutConfig[] = [] + const sharedLayers = this.buildLayerIndex(licensePaths); + const sharedThemes = this.buildThemeIndex(licensePaths, sharedLayers) + + writeFileSync("./assets/generated/known_layers_and_themes.json", JSON.stringify({ + "layers": Array.from(sharedLayers.values()), + "themes": Array.from(sharedThemes.values()) + })) + + writeFileSync("./assets/generated/known_layers.json", JSON.stringify(Array.from(sharedLayers.values()))) + + + { + // mapcomplete-changes shows an icon for each corresponding mapcomplete-theme + const iconsPerTheme = + Array.from(sharedThemes.values()).map(th => ({ + if: "theme=" + th.id, + then: th.icon + })) + const proto: LayoutConfigJson = JSON.parse(readFileSync("./assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json", "UTF8")); + const protolayer = (proto.layers.filter(l => l["id"] === "mapcomplete-changes")[0]) + const rendering = (protolayer.mapRendering[0]) + rendering.icon["mappings"] = iconsPerTheme + writeFileSync('./assets/themes/mapcomplete-changes/mapcomplete-changes.json', JSON.stringify(proto, null, " ")) + + } + } + + private buildLayerIndex(knownImagePaths: Set): Map { + // First, we expand and validate all builtin layers. These are written to assets/generated/layers + // At the same time, an index of available layers is built. + console.log(" ---------- VALIDATING BUILTIN LAYERS ---------") + + const sharedTagRenderings = this.getSharedTagRenderings(); + const layerFiles = ScriptUtils.getLayerFiles(); + const sharedLayers = new Map() + const prepLayer = new PrepareLayer(); + const state: DesugaringContext = { + tagRenderings: sharedTagRenderings, + sharedLayers + } + for (const sharedLayerJson of layerFiles) { + const context = "While building builtin layer " + sharedLayerJson.path + const fixed = prepLayer.convertStrict(state, sharedLayerJson.parsed, context) + const validator = new ValidateLayer(knownImagePaths, sharedLayerJson.path, true); + validator.convertStrict(state, fixed, context) + + if (sharedLayers.has(fixed.id)) { + throw "There are multiple layers with the id " + fixed.id + } + + sharedLayers.set(fixed.id, fixed) + + this.writeLayer(fixed) + + } + return sharedLayers; + } + + private buildThemeIndex(knownImagePaths: Set, sharedLayers: Map): Map { + console.log(" ---------- VALIDATING BUILTIN THEMES ---------") + const themeFiles = ScriptUtils.getThemeFiles(); + const fixed = new Map(); + + const convertState: DesugaringContext = { + sharedLayers, + tagRenderings: this.getSharedTagRenderings() + } for (const themeInfo of themeFiles) { - const themeFile = themeInfo.parsed + let themeFile = themeInfo.parsed const themePath = themeInfo.path - if (typeof themeFile.language === "string") { - themeErrorCount.push("The theme " + themeFile.id + " has a string as language. Please use a list of strings") - } - if (themeFile["units"] !== undefined) { - themeErrorCount.push("The theme " + themeFile.id + " has units defined - these should be defined on the layer instead. (Hint: use overrideAll: { '+units': ... }) ") - } - if (themeFile["roamingRenderings"] !== undefined) { - themeErrorCount.push("Theme " + themeFile.id + " contains an old 'roamingRenderings'. Use an 'overrideAll' instead") - } - for (const layer of themeFile.layers) { - if (typeof layer === "string") { - if (!knownLayerIds.has(layer)) { - themeErrorCount.push(`Unknown layer id: ${layer} in theme ${themeFile.id}`) - } - } else if (layer["builtin"] !== undefined) { - let names = layer["builtin"]; - if (typeof names === "string") { - names = [names] - } - names.forEach(name => { - if (!knownLayerIds.has(name)) { - themeErrorCount.push("Unknown layer id: " + name + "(which uses inheritance)") - } - return - }) - } else { - layerErrorCount.push(...this.validateLayer(layer, undefined, knownPaths, themeFile.id)) - if (knownLayerIds.has(layer["id"])) { - throw `The theme ${themeFile.id} defines a layer with id ${layer["id"]}, which is the same as an already existing layer` - } - } - } - const referencedLayers = Utils.NoNull([].concat(...themeFile.layers.map(layer => { - if (typeof layer === "string") { - return layer - } - if (layer["builtin"] !== undefined) { - return layer["builtin"] - } - return undefined - }).map(layerName => { - if (typeof layerName === "string") { - return [layerName] - } - return layerName - }))) + themeFile = new PrepareTheme().convertStrict(convertState, themeFile, themePath) - themeFile.layers = themeFile.layers - .filter(l => typeof l != "string") // We remove all the builtin layer references as they don't work with ts-node for some weird reason - .filter(l => l["builtin"] === undefined) + new ValidateThemeAndLayers(knownImagePaths, themePath, true) + .convertStrict(convertState, themeFile, themePath) - - try { - const theme = new LayoutConfig(themeFile, true, "test") - if (theme.id !== theme.id.toLowerCase()) { - themeErrorCount.push("Theme ids should be in lowercase, but it is " + theme.id) - } - let filename = themePath.substring(themePath.lastIndexOf("/") + 1, themePath.length - 5) - if (theme.id !== filename) { - themeErrorCount.push("Theme ids should be the same as the name.json, but we got id: " + theme.id + " and filename " + filename + " (" + themePath + ")") - } - const neededLanguages = themeFile["mustHaveLanguage"] - if (neededLanguages !== undefined) { - console.log("Checking language requirements for ", theme.id, "as it must have", neededLanguages.join(", ")) - const allTranslations = [].concat(Translation.ExtractAllTranslationsFrom(theme, theme.id), - ...referencedLayers.map(layerId => Translation.ExtractAllTranslationsFrom(knownLayerIds.get(layerId), theme.id + "->" + layerId))) - for (const neededLanguage of neededLanguages) { - allTranslations - .filter(t => t.tr.translations[neededLanguage] === undefined && t.tr.translations["*"] === undefined) - .forEach(missing => { - themeErrorCount.push("The theme " + theme.id + " should be translation-complete for " + neededLanguage + ", but it lacks a translation for " + missing.context+".\n\tThe english translation is "+missing.tr.textFor('en')) - }) - } - - - } - themeConfigs.push(theme) - } catch (e) { - themeErrorCount.push("Could not parse theme " + themeFile["id"] + " due to", e) - } + this.writeTheme(themeFile) + fixed.set(themeFile.id, themeFile) } - if (layerErrorCount.length + themeErrorCount.length == 0) { - console.log("All good!") - - // We load again from disc, as modifications were made above - const lt = this.loadThemesAndLayers(); - - - this.writeFiles(lt); - } else { - const errors = layerErrorCount.concat(themeErrorCount).join("\n") - console.log(errors) - const msg = (`Found ${layerErrorCount.length} errors in the layers; ${themeErrorCount.length} errors in the themes`) - console.log("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!") - - console.log(msg) - console.log("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!") - - if (args.indexOf("--report") >= 0) { - console.log("Writing report!") - writeFileSync("layer_report.txt", errors) + this.writeSmallOverview(themeFiles.map(tf => { + const t = tf.parsed; + return { + ...t, + hideFromOverview: t.hideFromOverview ?? false, + shortDescription: t.shortDescription ?? new Translation(t.description).FirstSentence().translations } - if (args.indexOf("--no-fail") < 0) { - throw msg; - } - } + })); + return fixed; + } } diff --git a/scripts/generateLayouts.ts b/scripts/generateLayouts.ts index 8f7e71a58e..3922e24420 100644 --- a/scripts/generateLayouts.ts +++ b/scripts/generateLayouts.ts @@ -1,4 +1,4 @@ -import {existsSync, mkdirSync, readFileSync, writeFile, writeFileSync} from "fs"; +import {appendFileSync, existsSync, mkdirSync, readFileSync, writeFile, writeFileSync} from "fs"; import Locale from "../UI/i18n/Locale"; import Translations from "../UI/i18n/Translations"; import {Translation} from "../UI/i18n/Translation"; @@ -8,6 +8,8 @@ import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson"; import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; const sharp = require('sharp'); +const template = readFileSync("theme.html", "utf8"); +const codeTemplate = readFileSync("index_theme.ts.template", "utf8"); function enc(str: string): string { @@ -107,14 +109,13 @@ async function createManifest(layout: LayoutConfig) { }; } -const template = readFileSync("index.html", "utf8"); async function createLandingPage(layout: LayoutConfig, manifest) { Locale.language.setData(layout.language[0]); - const ogTitle = Translations.WT(layout.title).txt; - const ogDescr = Translations.WT(layout.shortDescription ?? "Easily add and edit geodata with OpenStreetMap").txt; + const ogTitle = Translations.WT(layout.title).txt.replace(/"/g, '\\"'); + const ogDescr = Translations.WT(layout.shortDescription ?? "Easily add and edit geodata with OpenStreetMap").txt.replace(/"/g, '\\"'); const ogImage = layout.socialImage; let customCss = ""; @@ -129,9 +130,15 @@ async function createLandingPage(layout: LayoutConfig, manifest) { } const og = ` - + - ` + + + + + + + ` let icon = layout.icon; if (icon.startsWith("`, og, customCss, - ``, ``, ...apple_icons ].join("\n") let output = template .replace("Loading MapComplete, hang on...", `Loading MapComplete theme ${ogTitle}...`) - .replace(/.*/s, themeSpecific); + .replace(/.*/s, themeSpecific) + .replace("", ``); try { output = output @@ -173,12 +180,18 @@ async function createLandingPage(layout: LayoutConfig, manifest) { return output; } +async function createIndexFor(theme: LayoutConfig){ + const filename = "index_"+theme.id+".ts" + writeFileSync(filename, `import * as themeConfig from "./assets/generated/themes/${theme.id}.json"\n`) + appendFileSync(filename, codeTemplate) +} + const generatedDir = "./assets/generated"; if (!existsSync(generatedDir)) { mkdirSync(generatedDir) } -const blacklist = ["", "test", ".", "..", "manifest", "index", "land", "preferences", "account", "openstreetmap", "custom"] +const blacklist = ["", "test", ".", "..", "manifest", "index", "land", "preferences", "account", "openstreetmap", "custom","theme"] // @ts-ignore const all: LayoutConfigJson[] = all_known_layouts.themes; for (const i in all) { @@ -203,16 +216,18 @@ for (const i in all) { createLandingPage(layout, manifObj).then(landing => { writeFile(enc(layout.id) + ".html", landing, err) }); + createIndexFor(layout) }).catch(e => console.log("Could not generate the manifest: ", e)) } createManifest(new LayoutConfig({ - icon: "./assets/svg/mapcomplete_logo.svg", + icon: "assets/svg/mapcomplete_logo.svg", id: "index", language: "en", layers: [], maintainer: "Pieter Vander Vennet", + socialImage: "assets/SocialImage.png", startLat: 0, startLon: 0, startZoom: 0, @@ -225,6 +240,4 @@ createManifest(new LayoutConfig({ }) -console.log("Counting all translations") -Translations.CountTranslations(); console.log("All done!"); \ No newline at end of file diff --git a/scripts/generateWikiPage.ts b/scripts/generateWikiPage.ts index 9044108237..7a587d7f9e 100644 --- a/scripts/generateWikiPage.ts +++ b/scripts/generateWikiPage.ts @@ -1,22 +1,24 @@ import {writeFile} from "fs"; import Translations from "../UI/i18n/Translations"; -import {AllKnownLayouts} from "../Customizations/AllKnownLayouts"; -import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; +import * as themeOverview from "../assets/generated/theme_overview.json" -function generateWikiEntry(layout: LayoutConfig) { +function generateWikiEntry(layout: {hideFromOverview: boolean, id: string, shortDescription: any}) { if (layout.hideFromOverview) { return ""; } - const languages = layout.language.map(ln => `{{#language:${ln}|en}}`).join(", ") - let auth = "Yes"; - if (layout.maintainer !== "" && layout.maintainer !== "MapComplete") { - auth = `Yes, by ${layout.maintainer};` + + const languagesInDescr = [] + for (const shortDescriptionKey in layout.shortDescription) { + languagesInDescr.push(shortDescriptionKey) } + + const languages = languagesInDescr .map(ln => `{{#language:${ln}|en}}`).join(", ") + let auth = "Yes"; return `{{service_item |name= [https://mapcomplete.osm.be/${layout.id} ${layout.id}] |region= Worldwide |lang= ${languages} -|descr= A MapComplete theme: ${Translations.WT(layout.description) +|descr= A MapComplete theme: ${Translations.WT(layout.shortDescription) .textFor("en") .replace(".*<\/a>/, "]]") @@ -31,7 +33,7 @@ let wikiPage = "{|class=\"wikitable sortable\"\n" + "! Name, link !! Genre !! Covered region !! Language !! Description !! Free materials !! Image\n" + "|-"; -for (const layout of AllKnownLayouts.layoutsList) { +for (const layout of themeOverview) { if (layout.hideFromOverview) { continue; } diff --git a/scripts/lint.ts b/scripts/lint.ts index 587c201a26..7280fb693a 100644 --- a/scripts/lint.ts +++ b/scripts/lint.ts @@ -1,6 +1,6 @@ import ScriptUtils from "./ScriptUtils"; import {writeFileSync} from "fs"; -import LegacyJsonConvert from "../Models/ThemeConfig/LegacyJsonConvert"; +import {FixLegacyTheme, UpdateLegacyLayer} from "../Models/ThemeConfig/LegacyJsonConvert"; /* * This script reads all theme and layer files and reformats them inplace @@ -10,8 +10,9 @@ import LegacyJsonConvert from "../Models/ThemeConfig/LegacyJsonConvert"; const layerFiles = ScriptUtils.getLayerFiles(); for (const layerFile of layerFiles) { try { - LegacyJsonConvert.fixLayerConfig(layerFile.parsed) - writeFileSync(layerFile.path, JSON.stringify(layerFile.parsed, null, " ")) + const state : any = undefined; // FIXME + const fixed = new UpdateLegacyLayer().convertStrict(state,layerFile.parsed, "While linting "+layerFile.path); + writeFileSync(layerFile.path, JSON.stringify(fixed, null, " ")) } catch (e) { console.error("COULD NOT LINT LAYER" + layerFile.path + ":\n\t" + e) } @@ -20,8 +21,9 @@ for (const layerFile of layerFiles) { const themeFiles = ScriptUtils.getThemeFiles() for (const themeFile of themeFiles) { try { - LegacyJsonConvert.fixThemeConfig(themeFile.parsed) - writeFileSync(themeFile.path, JSON.stringify(themeFile.parsed, null, " ")) + const state : any = undefined; // FIXME + const fixed = new FixLegacyTheme().convertStrict(state,themeFile.parsed, "While linting "+themeFile.path); + writeFileSync(themeFile.path, JSON.stringify(fixed, null, " ")) } catch (e) { console.error("COULD NOT LINT THEME" + themeFile.path + ":\n\t" + e) } diff --git a/scripts/perProperty.ts b/scripts/perProperty.ts new file mode 100644 index 0000000000..9531504413 --- /dev/null +++ b/scripts/perProperty.ts @@ -0,0 +1,45 @@ +import * as fs from "fs"; + +function main(args){ + if(args.length < 2){ + console.log("Given a single geojson file, generates the partitions for every found property") + console.log("USAGE: perProperty `file.geojson` `property-key`") + return + } + const path = args[0] + const key = args[1] + + const data= JSON.parse(fs.readFileSync(path, "UTF8")) + const perProperty = new Map() + + console.log("Partitioning",data.features.length, "features") + for (const feature of data.features) { + const v = feature.properties[key] + if(!perProperty.has(v)){ + console.log("Found a new category:", v) + perProperty.set(v, []) + } + perProperty.get(v).push(feature) + } + + const stripped = path.substr(0, path.length - ".geojson".length) + perProperty.forEach((features, v) => { + + fs.writeFileSync(stripped+"."+v.replace(/[^a-zA-Z0-9_]/g, "_")+".geojson", + JSON.stringify({ + type:"FeatureCollection", + features + })) + }) + + +} + +let args = [...process.argv] +args.splice(0, 2) +try { + main(args) +} catch (e) { + console.error("Error building cache:", e) +} +console.log("All done!") \ No newline at end of file diff --git a/scripts/postal_code_tools/prepPostalCodesHulls.ts b/scripts/postal_code_tools/prepPostalCodesHulls.ts index c1c81006ad..749123ad54 100644 --- a/scripts/postal_code_tools/prepPostalCodesHulls.ts +++ b/scripts/postal_code_tools/prepPostalCodesHulls.ts @@ -1,6 +1,6 @@ import * as fs from "fs"; -import ScriptUtils from "../ScriptUtils"; import {writeFileSync} from "fs"; +import ScriptUtils from "../ScriptUtils"; function handleFile(file: string, postalCode: number) { diff --git a/scripts/slice.ts b/scripts/slice.ts index c8c6331a00..8fab5c52e8 100644 --- a/scripts/slice.ts +++ b/scripts/slice.ts @@ -3,6 +3,7 @@ import TiledFeatureSource from "../Logic/FeatureSource/TiledFeatureSource/TiledF import StaticFeatureSource from "../Logic/FeatureSource/Sources/StaticFeatureSource"; import * as readline from "readline"; import ScriptUtils from "./ScriptUtils"; +import {Utils} from "../Utils"; /** * This script slices a big newline-delimeted geojson file into tiled geojson @@ -103,16 +104,23 @@ async function main(args: string[]) { let allFeatures: any []; if (inputFile.endsWith(".geojson")) { + console.log("Detected geojson") allFeatures = await readFeaturesFromGeoJson(inputFile) } else { + console.log("Loading as newline-delimited features") allFeatures = await readFeaturesFromLineDelimitedJsonFile(inputFile) } + allFeatures = Utils.NoNull(allFeatures) console.log("Loaded all", allFeatures.length, "points") const keysToRemove = ["STRAATNMID", "GEMEENTE", "POSTCODE"] for (const f of allFeatures) { + if(f.properties === null){ + console.log("Got a feature without properties!", f) + continue + } for (const keyToRm of keysToRemove) { delete f.properties[keyToRm] } diff --git a/static/staples-annotated.xcf b/static/staples-annotated.xcf deleted file mode 100644 index b5dd783fc5..0000000000 Binary files a/static/staples-annotated.xcf and /dev/null differ diff --git a/test.ts b/test.ts index 2b0b84df96..7b98702cdf 100644 --- a/test.ts +++ b/test.ts @@ -1,152 +1,6 @@ -import State from "./State"; -import AllKnownLayers from "./Customizations/AllKnownLayers"; -import AvailableBaseLayersImplementation from "./Logic/Actors/AvailableBaseLayersImplementation"; -import AvailableBaseLayers from "./Logic/Actors/AvailableBaseLayers"; -import MinimapImplementation from "./UI/Base/MinimapImplementation"; -import {Utils} from "./Utils"; -import * as grb from "./assets/themes/grb_import/grb.json"; -import ReplaceGeometryAction from "./Logic/Osm/Actions/ReplaceGeometryAction"; -import Minimap from "./UI/Base/Minimap"; -import ShowDataLayer from "./UI/ShowDataLayer/ShowDataLayer"; -import {AllKnownLayouts} from "./Customizations/AllKnownLayouts"; -import {BBox} from "./Logic/BBox"; +import ValidatedTextField from "./UI/Input/ValidatedTextField"; +import {VariableUiElement} from "./UI/Base/VariableUIElement"; -AvailableBaseLayers.implement(new AvailableBaseLayersImplementation()) -MinimapImplementation.initialize() - -async function test() { - - const wayId = "way/323230330"; - const targetFeature = { - "type": "Feature", - "properties": {}, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 4.483118100000016, - 51.028366499999706 - ], - [ - 4.483135099999986, - 51.028325800000005 - ], - [ - 4.483137700000021, - 51.02831960000019 - ], - [ - 4.4831429000000025, - 51.0283205 - ], - [ - 4.483262199999987, - 51.02834059999982 - ], - [ - 4.483276700000019, - 51.028299999999746 - ], - [ - 4.483342100000037, - 51.02830730000009 - ], - [ - 4.483340700000012, - 51.028331299999934 - ], - [ - 4.483346499999953, - 51.02833189999984 - ], - [ - 4.483290600000001, - 51.028500699999846 - ], - [ - 4.4833335999999635, - 51.02851150000015 - ], - [ - 4.4833433000000475, - 51.028513999999944 - ], - [ - 4.483312899999958, - 51.02857759999998 - ], - [ - 4.483141100000033, - 51.02851780000015 - ], - [ - 4.483193100000022, - 51.028409999999894 - ], - [ - 4.483206100000019, - 51.02838310000014 - ], - [ - 4.483118100000016, - 51.028366499999706 - ] - ] - ] - }, - "id": "https://betadata.grbosm.site/grb?bbox=498980.9206456306,6626173.107985358,499133.7947022009,6626325.98204193/30", - "bbox": { - "maxLat": 51.02857759999998, - "maxLon": 4.483346499999953, - "minLat": 51.028299999999746, - "minLon": 4.483118100000016 - }, - "_lon": 4.483232299999985, - "_lat": 51.02843879999986 - } - - - const layout = AllKnownLayouts.allKnownLayouts.get("grb") - const state = new State(layout) - State.state = state; - const bbox = new BBox( - [[ - 4.482952281832695, - 51.02828527958197 - ], - [ - 4.483400881290436, - 51.028578384406984 - ] - - ]) - const url = `https://www.openstreetmap.org/api/0.6/map.json?bbox=${bbox.minLon},${bbox.minLat},${bbox.maxLon},${bbox.maxLat}` - const data = await Utils.downloadJson(url) - - state.featurePipeline.fullNodeDatabase.handleOsmJson(data, 0) - - - const action = new ReplaceGeometryAction(state, targetFeature, wayId, { - theme: "test" - } - ) - - console.log(">>>>> ", action.GetClosestIds()) - - const map = Minimap.createMiniMap({ - attribution: false, - }) - const preview = await action.getPreview() - new ShowDataLayer({ - layerToShow: AllKnownLayers.sharedLayers.get("conflation"), - features: preview, - leafletMap: map.leafletMap, - zoomToFeatures: true - }) - map - .SetStyle("height: 75vh;") - .AttachTo("maindiv") -} - -test() \ No newline at end of file +const tf = ValidatedTextField.InputForType("url") +tf.AttachTo("maindiv") +new VariableUiElement(tf.GetValue()).AttachTo("extradiv") \ No newline at end of file diff --git a/test/Actors.spec.ts b/test/Actors.spec.ts index 38c2a7c17a..bf30297d49 100644 --- a/test/Actors.spec.ts +++ b/test/Actors.spec.ts @@ -1,5 +1,4 @@ import T from "./TestHelper"; -import {AllKnownLayouts} from "../Customizations/AllKnownLayouts"; import SelectedElementTagsUpdater from "../Logic/Actors/SelectedElementTagsUpdater"; import UserRelatedState from "../Logic/State/UserRelatedState"; import {Utils} from "../Utils"; @@ -7,6 +6,8 @@ import SelectedFeatureHandler from "../Logic/Actors/SelectedFeatureHandler"; import {UIEventSource} from "../Logic/UIEventSource"; import {ElementStorage} from "../Logic/ElementStorage"; import Loc from "../Models/Loc"; +import * as bookcaseJson from "../assets/generated/themes/bookcases.json" +import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; export default class ActorsSpec extends T { @@ -48,11 +49,11 @@ export default class ActorsSpec extends T { } ) - super("Actors", [ + super([ [ "download latest version", () => { - const state = new UserRelatedState(AllKnownLayouts.allKnownLayouts.get("bookcases")) + const state = new UserRelatedState(new LayoutConfig(bookcaseJson, true, "tests" )) const feature = { "type": "Feature", "id": "node/5568693115", diff --git a/test/CreateNoteImportLayer.spec.ts b/test/CreateNoteImportLayer.spec.ts new file mode 100644 index 0000000000..4a35df7f21 --- /dev/null +++ b/test/CreateNoteImportLayer.spec.ts @@ -0,0 +1,30 @@ +import T from "./TestHelper"; +import CreateNoteImportLayer from "../Models/ThemeConfig/Conversion/CreateNoteImportLayer"; +import * as bookcases from "../assets/layers/public_bookcase/public_bookcase.json" +import {DesugaringContext, PrepareLayer} from "../Models/ThemeConfig/Conversion/LegacyJsonConvert"; +import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; +import {TagRenderingConfigJson} from "../Models/ThemeConfig/Json/TagRenderingConfigJson"; +import LayerConfig from "../Models/ThemeConfig/LayerConfig"; + +export default class CreateNoteImportLayerSpec extends T { + + constructor() { + super([ + ["Bookcase", () => { + const desugaringState: DesugaringContext = { + sharedLayers: new Map(), + tagRenderings: new Map() + + } + const layerPrepare = new PrepareLayer() + const layer = new LayerConfig(layerPrepare.convertStrict(desugaringState, bookcases, "ImportLayerGeneratorTest:Parse bookcases"), "ImportLayerGeneratorTest: init bookcases-layer") + const generator = new CreateNoteImportLayer() + const generatedLayer = generator.convertStrict(desugaringState, layer, "ImportLayerGeneratorTest: convert") + // fs.writeFileSync("bookcases-import-layer.generated.json", JSON.stringify(generatedLayer, null, " "), "utf8") +console.log(JSON.stringify(generatedLayer, null, " ")) + }] + ]); + } + + +} \ No newline at end of file diff --git a/test/GeoOperations.spec.ts b/test/GeoOperations.spec.ts index a8df76883b..b7e3c2f6fe 100644 --- a/test/GeoOperations.spec.ts +++ b/test/GeoOperations.spec.ts @@ -89,8 +89,7 @@ export default class GeoOperationsSpec extends T { private static outsidePolygon = [4.02099609375, 47.81315451752768] constructor() { - super( - "GeoOperationsSpec", [ + super([ ["Point out of polygon", () => { GeoOperationsSpec.isFalse(GeoOperations.inside([ 3.779296875, diff --git a/test/ImageAttribution.spec.ts b/test/ImageAttribution.spec.ts index eb31fb28b4..e898120175 100644 --- a/test/ImageAttribution.spec.ts +++ b/test/ImageAttribution.spec.ts @@ -6,8 +6,7 @@ import LayerConfig from "../Models/ThemeConfig/LayerConfig"; export default class ImageAttributionSpec extends T { constructor() { - super( - "imageattribution", [ + super([ [ "Should find all the images", () => { diff --git a/test/ImageProvider.spec.ts b/test/ImageProvider.spec.ts index e003119860..1020a4732a 100644 --- a/test/ImageProvider.spec.ts +++ b/test/ImageProvider.spec.ts @@ -6,7 +6,7 @@ import {Utils} from "../Utils"; export default class ImageProviderSpec extends T { constructor() { - super("ImageProvider", [ + super([ ["Search images", () => { let i = 0 diff --git a/test/LegacyThemeLoader.spec.ts b/test/LegacyThemeLoader.spec.ts index 96eda96232..f29e9c6e1e 100644 --- a/test/LegacyThemeLoader.spec.ts +++ b/test/LegacyThemeLoader.spec.ts @@ -1,6 +1,8 @@ import T from "./TestHelper"; -import LegacyJsonConvert from "../Models/ThemeConfig/LegacyJsonConvert"; +import {FixLegacyTheme} from "../Models/ThemeConfig/Conversion/LegacyJsonConvert"; import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; +import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; +import {TagRenderingConfigJson} from "../Models/ThemeConfig/Json/TagRenderingConfigJson"; export default class LegacyThemeLoaderSpec extends T { @@ -17,6 +19,7 @@ export default class LegacyThemeLoaderSpec extends T { "language": [ "en" ], + socialImage: "img.jpg", "version": "2021-10-02", "startLat": 51.1599, "startLon": 3.34750, @@ -139,15 +142,16 @@ export default class LegacyThemeLoaderSpec extends T { } constructor() { - super("LegacyThemeLoader", - - [ + super([ ["Walking_node_theme", () => { const config = LegacyThemeLoaderSpec.walking_node_theme - LegacyJsonConvert.fixThemeConfig(config) - // @ts-ignore - const theme = new LayoutConfig(config) + const fixed = new FixLegacyTheme().convert({tagRenderings: new Map(), sharedLayers: new Map()}, + // @ts-ignore + config, + "While testing") + T.isTrue(fixed.errors.length === 0, "Could not fix the legacy theme") + const theme = new LayoutConfig(fixed.result) }] ] diff --git a/test/OsmConnection.spec.ts b/test/OsmConnection.spec.ts index 3bd69ac9b4..d21d44e643 100644 --- a/test/OsmConnection.spec.ts +++ b/test/OsmConnection.spec.ts @@ -14,7 +14,7 @@ export default class OsmConnectionSpec extends T { private static _osm_token = "LJFmv2nUicSNmBNsFeyCHx5KKx6Aiesx8pXPbX4n" constructor() { - super("osmconnection", [ + super([ ["login on dev", () => { const osmConn = new OsmConnection({ diff --git a/test/OsmObject.spec.ts b/test/OsmObject.spec.ts index 9cf60e354c..03d35e473a 100644 --- a/test/OsmObject.spec.ts +++ b/test/OsmObject.spec.ts @@ -3,7 +3,7 @@ import {OsmObject} from "../Logic/Osm/OsmObject"; export default class OsmObjectSpec extends T { constructor() { - super("osmobject", [ + super( [ [ "Download referencing ways", () => { diff --git a/test/RelationSplitHandler.spec.ts b/test/RelationSplitHandler.spec.ts index 76c605a782..0920a915bd 100644 --- a/test/RelationSplitHandler.spec.ts +++ b/test/RelationSplitHandler.spec.ts @@ -548,7 +548,7 @@ export default class RelationSplitHandlerSpec extends T { ) - super("relationsplithandler", [ + super( [ ["split 295132739", async () => { // Lets mimick a split action of https://www.openstreetmap.org/way/295132739 diff --git a/test/ReplaceGeometry.spec.ts b/test/ReplaceGeometry.spec.ts index acc87d2164..b33442cc77 100644 --- a/test/ReplaceGeometry.spec.ts +++ b/test/ReplaceGeometry.spec.ts @@ -1,12 +1,8 @@ import T from "./TestHelper"; import {Utils} from "../Utils"; import ReplaceGeometryAction from "../Logic/Osm/Actions/ReplaceGeometryAction"; -import FeaturePipeline from "../Logic/FeatureSource/FeaturePipeline"; -import {Tag} from "../Logic/Tags/Tag"; -import MapState from "../Logic/State/MapState"; import * as grb from "../assets/themes/grb_import/grb.json" import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; -import {AllKnownLayouts} from "../Customizations/AllKnownLayouts"; import State from "../State"; import {BBox} from "../Logic/BBox"; import Minimap from "../UI/Base/Minimap"; @@ -23,6 +19,7 @@ export default class ReplaceGeometrySpec extends T { "nl", "en" ], + socialImage: "img.jpg", "version": "0", "startLat": 51.0249, "startLon": 4.026489, @@ -33,7 +30,11 @@ export default class ReplaceGeometrySpec extends T { }, "layers": [ { - "builtin": "type_node", + "id": "type_node", + source:{ + osmTags:"type=node" + }, + mapRendering: null, "override": { "calculatedTags": [ "_is_part_of_building=feat.get('parent_ways')?.some(p => p.building !== undefined && p.building !== '') ?? false", @@ -266,7 +267,6 @@ export default class ReplaceGeometrySpec extends T { } ] }, - "address", { "id": "grb", "description": "Geometry which comes from GRB with tools to import them", @@ -325,7 +325,7 @@ export default class ReplaceGeometrySpec extends T { constructor() { - super("ReplaceGeometry", [ + super( [ ["House replacement with connected node", async () => { Minimap.createMiniMap = () => undefined; diff --git a/test/SplitAction.spec.ts b/test/SplitAction.spec.ts index c476207a43..4e9187f778 100644 --- a/test/SplitAction.spec.ts +++ b/test/SplitAction.spec.ts @@ -8,7 +8,7 @@ export default class SplitActionSpec extends T { constructor() { - super("splitaction", [ + super([ ["split 295132739", () => SplitActionSpec.split().then(_ => console.log("OK"))], ["split 295132739 on already existing node", diff --git a/test/Tag.spec.ts b/test/Tag.spec.ts index 86ba6abda5..47994bfca2 100644 --- a/test/Tag.spec.ts +++ b/test/Tag.spec.ts @@ -13,7 +13,7 @@ import TagRenderingConfig from "../Models/ThemeConfig/TagRenderingConfig"; export default class TagSpec extends T { constructor() { - super("tag", [ + super( [ ["Tag replacement works in translation", () => { const tr = new Translation({ "en": "Test {key} abc" @@ -516,7 +516,14 @@ export default class TagSpec extends T { const filter = TagUtils.Tag("_key~*") T.isTrue(filter.matchesProperties(properties), "Lazy value not matched") } - ]]); + ], + ["test date comparison",() => { + + const filter = TagUtils.Tag("date_created<2022-01-07") + T.isFalse(filter.matchesProperties({"date_created":"2022-01-08"}), "Date comparison: expected a match") + T.isTrue(filter.matchesProperties({"date_created":"2022-01-01"}), "Date comparison: didn't expect a match") + + }]]); } } diff --git a/test/TestAll.ts b/test/TestAll.ts index dabfc8e689..65050367eb 100644 --- a/test/TestAll.ts +++ b/test/TestAll.ts @@ -15,12 +15,14 @@ import ImageProviderSpec from "./ImageProvider.spec"; import ActorsSpec from "./Actors.spec"; import ReplaceGeometrySpec from "./ReplaceGeometry.spec"; import LegacyThemeLoaderSpec from "./LegacyThemeLoader.spec"; +import T from "./TestHelper"; +import CreateNoteImportLayerSpec from "./CreateNoteImportLayer.spec"; async function main() { ScriptUtils.fixUtils() - const allTests = [ + const allTests : T[] = [ new OsmObjectSpec(), new TagSpec(), new ImageAttributionSpec(), @@ -35,7 +37,8 @@ async function main() { new ImageProviderSpec(), new ActorsSpec(), new ReplaceGeometrySpec(), - new LegacyThemeLoaderSpec() + new LegacyThemeLoaderSpec(), + new CreateNoteImportLayerSpec() ] Utils.externalDownloadFunction = async (url) => { @@ -54,12 +57,20 @@ async function main() { const allFailures: { testsuite: string, name: string, msg: string } [] = [] let testsToRun = allTests if (args.length > 0) { - args = args.map(a => a.toLowerCase()) + args = args.map(a => a.toLowerCase()).map(a => { + if(!a.endsWith("spec")){ + return a + "spec" + }else{ + return a; + } + }) testsToRun = allTests.filter(t => args.indexOf(t.name.toLowerCase()) >= 0) } if (testsToRun.length == 0) { - throw "No tests found. Try one of " + allTests.map(t => t.name).join(", ") + const available = allTests.map(t => t.name) + available.sort() + throw "No tests found. Try one of " + available.join(", ") } for (let i = 0; i < testsToRun.length; i++) { diff --git a/test/TestHelper.ts b/test/TestHelper.ts index 924c00cd10..9da668f32b 100644 --- a/test/TestHelper.ts +++ b/test/TestHelper.ts @@ -3,8 +3,8 @@ export default class T { public readonly name: string; private readonly _tests: [string, (() => (void | Promise))][]; - constructor(testsuite: string, tests: [string, () => (Promise | void)][]) { - this.name = testsuite + constructor(tests: [string, () => (Promise | void)][]) { + this.name = this.constructor.name; this._tests = tests; } diff --git a/test/Theme.spec.ts b/test/Theme.spec.ts index 6a3f4b2a6b..39f0dfa47e 100644 --- a/test/Theme.spec.ts +++ b/test/Theme.spec.ts @@ -1,16 +1,19 @@ import T from "./TestHelper"; -import {Utils} from "../Utils"; import * as assert from "assert"; import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson"; import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; +import * as bookcaseLayer from "../assets/generated/layers/public_bookcase.json" +import {PrepareTheme} from "../Models/ThemeConfig/Conversion/LegacyJsonConvert"; +import {TagRenderingConfigJson} from "../Models/ThemeConfig/Json/TagRenderingConfigJson"; +import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; +import Constants from "../Models/Constants"; export default class ThemeSpec extends T { constructor() { - super("theme", - [ + super( [ ["Nested overrides work", () => { - const themeConfigJson: LayoutConfigJson = { + let themeConfigJson: LayoutConfigJson = { description: "Descr", icon: "", language: ["en"], @@ -34,7 +37,14 @@ export default class ThemeSpec extends T { version: "", id: "test" } - + // TOtal cheat: disable the default layers: + Constants.added_by_default.splice(0, Constants.added_by_default.length) + const sharedLayers = new Map() + sharedLayers.set("public_bookcase", bookcaseLayer["default"]) + themeConfigJson = new PrepareTheme().convertStrict({ + tagRenderings: new Map(), + sharedLayers: sharedLayers + }, themeConfigJson, "test") const themeConfig = new LayoutConfig(themeConfigJson); assert.equal("xyz", themeConfig.layers[0].source.geojsonSource) diff --git a/test/TileFreshnessCalculator.spec.ts b/test/TileFreshnessCalculator.spec.ts index 7f5540d15a..b431788bb3 100644 --- a/test/TileFreshnessCalculator.spec.ts +++ b/test/TileFreshnessCalculator.spec.ts @@ -6,7 +6,7 @@ import {equal} from "assert"; export default class TileFreshnessCalculatorSpec extends T { constructor() { - super("TileFreshnessCalculatorSpec", [ + super( [ [ "TileFresnessTests", () => { diff --git a/test/Units.spec.ts b/test/Units.spec.ts index e0ffdee101..c93d57f84e 100644 --- a/test/Units.spec.ts +++ b/test/Units.spec.ts @@ -6,7 +6,7 @@ import {Denomination} from "../Models/Denomination"; export default class UnitsSpec extends T { constructor() { - super("units", [ + super( [ ["Simple canonicalize", () => { const unit = new Denomination({ diff --git a/test/Utils.spec.ts b/test/Utils.spec.ts index 4a592bf3c2..99559a534f 100644 --- a/test/Utils.spec.ts +++ b/test/Utils.spec.ts @@ -39,7 +39,7 @@ export default class UtilsSpec extends T { } constructor() { - super("utils", [ + super( [ ["Sort object keys", () => { const o = { x: 'x', diff --git a/test/Wikidata.spec.test.ts b/test/Wikidata.spec.test.ts index cf636ffc2f..47acd1a754 100644 --- a/test/Wikidata.spec.test.ts +++ b/test/Wikidata.spec.test.ts @@ -7255,8 +7255,7 @@ export default class WikidataSpecTest extends T { } constructor() { - super("Wikidata", - [ + super( [ ["Download Lion", async () => { Utils.injectJsonDownloadForTests( diff --git a/theme.html b/theme.html new file mode 100644 index 0000000000..68e3f9fc4b --- /dev/null +++ b/theme.html @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + MapComplete + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ + +
+
+ +
+
+
+
+ +
+
+ +
+ Loading MapComplete, hang on... +
+ +Below +
+ + + + + +